/* ===================================
   BestWay Architect - Main Stylesheet
   Version: 1.0
   Phase: 1 (Frontend)
   =================================== */

/* ===================================
   1. CSS VARIABLES & DESIGN TOKENS
   =================================== */
:root {
  /* Color Palette - Architectural Light Theme */
  --primary-navy: #2c3e50;
  --primary-light: #f8fcff;
  --secondary-gray: #e8f4f8;
  --accent-blue: #00a8cc;
  --accent-blue-dark: #0088aa;
  --accent-gold: #d4af37;
  --background: #ffffff;
  --background-alt: #f8fcff;
  --text-dark: #1a1a1a;
  --text-medium: #5a6c7d;
  --text-light: #8895a7;
  --text-muted: #a0aec0;
  --border-light: #e8f4f8;
  --border-medium: #d0e8f0;
  
  /* Status Colors */
  --success: #28A745;
  --danger: #DC3545;
  --warning: #FFC107;
  --info: #00a8cc;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #f8fcff 0%, #e8f6fc 50%, #f0f9fd 100%);
  --gradient-accent: linear-gradient(135deg, #00a8cc 0%, #0088aa 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(248, 252, 255, 0) 0%, rgba(248, 252, 255, 0.95) 100%);
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --font-accent: 'Orbitron', sans-serif;
  
  /* Font Sizes */
  --fs-h1: clamp(2.5rem, 5vw, 3.5rem);
  --fs-h2: clamp(2rem, 4vw, 2.5rem);
  --fs-h3: clamp(1.5rem, 3vw, 2rem);
  --fs-h4: clamp(1.25rem, 2.5vw, 1.5rem);
  --fs-h5: 1.25rem;
  --fs-h6: 1rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-tiny: 0.75rem;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  --space-xxxl: 6rem;
  
  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --header-height: 70px;
  --border-radius: 8px;
  --border-radius-sm: 4px;
  --border-radius-lg: 12px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Z-index layers */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-tooltip: 1070;
}

/* ===================================
   2. RESET & BASE STYLES
   =================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   3. TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--primary-navy);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); }

p {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--accent-gold);
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

/* ===================================
   4. UTILITY CLASSES
   =================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--space-md);
}

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-navy); }
.text-accent { color: var(--accent-blue); }
.text-gold { color: var(--accent-gold); }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }

.font-primary { font-family: var(--font-primary); }
.font-accent { font-family: var(--font-accent); }

/* Background Utilities */
.bg-primary { background-color: var(--primary-navy); }
.bg-light { background-color: #f8fcff; }
.bg-white { background-color: white; }
.bg-dark { background-color: var(--text-dark); }
.bg-gradient { background: var(--gradient-primary); }

/* Spacing Utilities */
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0 !important; }
.py-section { padding: var(--space-xxxl) 0; }
.py-section-sm { padding: var(--space-xl) 0; }

/* Display Utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flex Utilities */
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.gap-1 { gap: var(--space-sm); }
.gap-2 { gap: var(--space-md); }
.gap-3 { gap: var(--space-lg); }

/* ===================================
   5. BUTTONS
   =================================== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: #00a8cc;
  color: white;
  border-color: #00a8cc;
}

.btn-primary:hover {
  background: #0088aa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 168, 204, 0.3);
}

.btn-outline {
  background: transparent;
  color: #00a8cc;
  border-color: #00a8cc;
}

.btn-outline:hover {
  background: #00a8cc;
  color: white;
  transform: translateY(-2px);
}

.btn-gold {
  background: transparent;
  color: #2c3e50;
  border-color: #2c3e50;
}

.btn-gold:hover {
  background: #2c3e50;
  color: white;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 44px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* ===================================
   5.5 TOP SOCIAL BAR
   =================================== */

.top-social-bar {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  height: 32px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: calc(var(--z-fixed) + 1);
  border-bottom: 1px solid rgba(0, 168, 204, 0.3);
}

.social-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 4px 15px;
  max-height: 32px;
}

.social-info {
  display: flex;
  gap: 30px;
  font-size: 0.75rem;
  color: #ecf0f1;
  align-items: center;
  line-height: 1;
}

.social-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.social-info i {
  color: #00a8cc;
  font-size: 0.7rem;
}

.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-links a {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ecf0f1;
  font-size: 0.65rem;
  border-radius: 3px;
  transition: all 0.3s ease;
  background: rgba(0, 168, 204, 0.1);
  flex-shrink: 0;
}

.social-links a:hover {
  background: #00a8cc;
  color: white;
  transform: scale(1.05);
}

/* ===================================
   6. NAVIGATION - Enhanced Architectural Design
   Blueprint-Inspired | Icons + Text | Creative Layout
   =================================== */

.navbar {
  position: fixed;
  top: 32px;
  left: 0;
  width: 100%;
  height: 85px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #e8f4f8;
  z-index: var(--z-fixed);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 2px solid #00a8cc;
  top: 0;
}

.navbar.transparent {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 168, 204, 0.2);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Navbar Brand - Architectural Logo with Building Icon */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.brand-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00a8cc 0%, #0088aa 100%);
  border-radius: 8px;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 168, 204, 0.2);
}

.brand-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.navbar-brand:hover .brand-icon {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 168, 204, 0.35);
}

.navbar-brand:hover .brand-icon::before {
  left: 100%;
}

.brand-icon svg {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-main {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  line-height: 1;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-sub {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  font-weight: 500;
  color: #00a8cc;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
}

/* Navigation Links - Enhanced with Icons */
.navbar-nav {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 45px;
  align-items: center;
  margin: 0;
  padding: 0;
  background: transparent;
}

.navbar-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Individual Links - Icon + Text Design */
.nav-link {
  color: #2c3e50;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 10px 16px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  text-transform: capitalize;
  border-radius: 6px;
}

.nav-link i {
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* Architectural Underline Effect */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, #00a8cc, #0088aa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: #00a8cc;
  background: rgba(0, 168, 204, 0.05);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover i {
  transform: translateY(-2px);
}

.nav-link.active {
  color: #00a8cc;
  font-weight: 600;
  background: rgba(0, 168, 204, 0.08);
}

/* CTA Button - Enhanced Design */
.navbar-cta {
  margin-left: 35px;
}

.navbar-cta .btn {
  background: linear-gradient(135deg, #00a8cc 0%, #0088aa 100%);
  color: white;
  border: none;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 168, 204, 0.25);
}

.navbar-cta .btn i {
  font-size: 0.9rem;
}

.navbar-cta .btn:hover {
  background: linear-gradient(135deg, #0088aa 0%, #006688 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 204, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: all var(--transition-base);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   7. HERO SECTION - Premium Architectural Experience
   Inspired by: Luxury Architecture Sites | Interactive 3D | Immersive Design
   =================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 117px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 168, 204, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(44, 62, 80, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  overflow: hidden;
  padding: 117px 0 40px 0;
}

/* Sophisticated Background Pattern */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.4;
}

/* Diagonal Accent Line */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  right: 45%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 168, 204, 0.2) 50%, transparent 100%);
}

/* Subtle Corner Decoration */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(0, 168, 204, 0.1);
  border-radius: 50%;
  animation: rotate360 20s linear infinite;
}

/* Hero Content - Left Column */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 30px 30px 30px 6%;
  text-align: left;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* Premium Badge with Icon */
.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 0.7rem;
  color: #00a8cc;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1.5px solid rgba(0, 168, 204, 0.3);
  box-shadow: 0 2px 12px rgba(0, 168, 204, 0.08);
  animation: slideInLeft 0.6s ease-out;
}

.hero-subtitle::before {
  content: '✦';
  color: #00a8cc;
  font-size: 0.6rem;
}

/* Hero Title - Refined & Readable */
.hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: var(--font-primary);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.15;
  position: relative;
  animation: slideInLeft 0.6s ease-out 0.15s backwards;
}

.hero-title br {
  display: block;
}

/* Gradient Highlight for Impact Word */
.hero-title span {
  background: linear-gradient(135deg, #00a8cc 0%, #0088aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  position: relative;
  font-weight: 800;
}

/* Hero Description - Concise & Clear */
.hero-description {
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  color: #5a6c7d;
  margin-bottom: 18px;
  line-height: 1.65;
  font-weight: 400;
  max-width: 520px;
  animation: slideInLeft 0.6s ease-out 0.3s backwards;
}

/* Trust Indicators - Compact Stats Row */
.hero-stats {
  display: flex;
  gap: 22px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  animation: slideInLeft 0.6s ease-out 0.45s backwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: #00a8cc;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: #5a6c7d;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero CTA Buttons - Clean & Effective */
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: slideInLeft 0.6s ease-out 0.6s backwards;
}

.hero-cta .btn {
  padding: 11px 26px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.hero-cta .btn-primary {
  background: linear-gradient(135deg, #00a8cc 0%, #0088aa 100%);
  color: white;
  border: none;
}

.hero-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 204, 0.35);
}

.hero-cta .btn-outline {
  background: white;
  color: #2c3e50;
  border: 2px solid #e0e7ed;
}

.hero-cta .btn-outline:hover {
  border-color: #00a8cc;
  color: #00a8cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 204, 0.15);
}

/* Hero Visual - Right Side */
.hero-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 30px 5% 30px 20px;
}

/* Architectural Isometric Canvas */
.hero-visual-inner {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 0.95;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 252, 255, 0.9) 100%);
  border-radius: 20px;
  border: 2px solid rgba(0, 168, 204, 0.2);
  box-shadow: 
    0 20px 60px rgba(0, 168, 204, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  overflow: visible;
  animation: fadeInRight 0.8s ease-out 0.4s backwards;
}

/* Isometric Grid Pattern */
.hero-visual-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(60deg, transparent 0px, transparent 30px, rgba(0, 168, 204, 0.04) 30px, rgba(0, 168, 204, 0.04) 31px),
    repeating-linear-gradient(-60deg, transparent 0px, transparent 30px, rgba(0, 168, 204, 0.04) 30px, rgba(0, 168, 204, 0.04) 31px),
    repeating-linear-gradient(0deg, transparent 0px, transparent 30px, rgba(0, 168, 204, 0.04) 30px, rgba(0, 168, 204, 0.04) 31px);
  border-radius: 20px;
  opacity: 0.7;
}

/* 3D Building Complex */
.hero-building {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 30px 90px;
  gap: 10px;
}

/* Isometric 3D Building Structure */
.building-illustration {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  flex: 1;
}

/* 3D Isometric Buildings */
.building-shape {
  position: relative;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 248, 255, 0.8) 50%, rgba(230, 245, 252, 0.9) 100%);
  border-left: 2px solid rgba(0, 168, 204, 0.4);
  border-right: 2px solid rgba(0, 168, 204, 0.25);
  border-top: 2px solid rgba(0, 168, 204, 0.35);
  border-radius: 4px 4px 0 0;
  box-shadow: 
    -4px 0 8px rgba(0, 168, 204, 0.08),
    4px 0 8px rgba(0, 168, 204, 0.05),
    0 -4px 12px rgba(0, 168, 204, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

/* Top Cap */
.building-shape::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: linear-gradient(90deg, #00a8cc 0%, #0095b8 100%);
  border-radius: 2px 2px 0 0;
  box-shadow: 0 2px 6px rgba(0, 168, 204, 0.3);
}

/* Window Grid Pattern */
.building-shape::after {
  content: '';
  position: absolute;
  inset: 12px 8px;
  background-image: 
    repeating-linear-gradient(0deg, transparent 0px, transparent 14px, rgba(0, 168, 204, 0.25) 14px, rgba(0, 168, 204, 0.25) 15px),
    repeating-linear-gradient(90deg, transparent 0px, transparent 14px, rgba(0, 168, 204, 0.25) 14px, rgba(0, 168, 204, 0.25) 15px);
  border-radius: 2px;
}

.building-shape:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    -6px 0 12px rgba(0, 168, 204, 0.12),
    6px 0 12px rgba(0, 168, 204, 0.08),
    0 -6px 20px rgba(0, 168, 204, 0.1);
}

/* Building Size Variations */
.building-shape:nth-child(1) {
  width: 50px;
  height: 130px;
  animation: buildingRise 0.7s ease-out 0.6s backwards;
}

.building-shape:nth-child(2) {
  width: 65px;
  height: 185px;
  animation: buildingRise 0.7s ease-out 0.7s backwards;
}

.building-shape:nth-child(3) {
  width: 55px;
  height: 155px;
  animation: buildingRise 0.7s ease-out 0.8s backwards;
}

.building-shape:nth-child(4) {
  width: 45px;
  height: 110px;
  animation: buildingRise 0.7s ease-out 0.9s backwards;
}

/* Floating Info Cards - Compact Design */
.hero-metrics {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  animation: fadeInUp 0.7s ease-out 1s backwards;
  z-index: 10;
}

.metric-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 9px 7px;
  border-radius: 10px;
  border: 1.5px solid rgba(0, 168, 204, 0.25);
  box-shadow: 0 5px 15px rgba(0, 168, 204, 0.12);
  text-align: center;
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-3px);
  border-color: #00a8cc;
  box-shadow: 0 7px 20px rgba(0, 168, 204, 0.2);
  background: rgba(255, 255, 255, 1);
}

.metric-icon {
  font-size: 1.1rem;
  color: #00a8cc;
  margin-bottom: 4px;
  display: block;
}

.metric-label {
  font-size: 0.62rem;
  color: #5a6c7d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.3;
}

/* Corner Accent Lines */
.hero-visual-inner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: 
    linear-gradient(to bottom, rgba(0, 168, 204, 0.15) 2px, transparent 2px),
    linear-gradient(to left, rgba(0, 168, 204, 0.15) 2px, transparent 2px);
  background-size: 100% 20px, 20px 100%;
  background-repeat: no-repeat;
  background-position: top right, top right;
  border-radius: 0 24px 0 0;
}

/* Scroll Indicator - Minimal Line Style */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #00a8cc;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.scroll-indicator i {
  font-size: 1.2rem;
  color: #00a8cc;
  animation: bounce 2s infinite;
}

/* Float Animation for Decorative Elements */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

/* ===================================
   8. SECTIONS
   =================================== */
.section {
  padding: var(--space-xxxl) 0;
  position: relative;
}

/* ===================================
   9. ABOUT SECTION - MODERN DESIGN
   =================================== */
.about-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 168, 204, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Visual Side */
.about-visual {
  position: relative;
}

.about-image-container {
  position: relative;
  height: 600px;
}

.about-main-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 30px 80px rgba(0, 168, 204, 0.15),
    0 0 0 1px rgba(0, 168, 204, 0.1);
  transition: all 0.5s ease;
}

.about-main-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.1) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.about-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-main-image:hover img {
  transform: scale(1.05);
}

/* Floating Badge */
.about-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(0, 168, 204, 0.2);
  border: 2px solid rgba(0, 168, 204, 0.2);
  z-index: 10;
  animation: floatElement 3s ease-in-out infinite;
}

.badge-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
}

.badge-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-label {
  font-size: 0.7rem;
  color: #7a8a9a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-value {
  font-size: 1.1rem;
  color: #1a1a1a;
  font-weight: 700;
}

/* Experience Card */
.about-experience-card {
  position: absolute;
  top: 30px;
  right: -30px;
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  padding: 28px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 168, 204, 0.3);
  z-index: 10;
  animation: pulse 2s ease-in-out infinite;
}

.experience-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 8px;
}

.experience-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* Decorative Element */
.about-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  border: 3px solid rgba(0, 168, 204, 0.2);
  border-radius: 50%;
  z-index: 0;
}

/* Right Content Side */
.about-content {
  padding: 40px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(0, 168, 204, 0.08);
  border: 1.5px solid rgba(0, 168, 204, 0.2);
  border-radius: 50px;
  color: #00a8cc;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.section-tag i {
  font-size: 1rem;
}

.about-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 24px;
}

.highlight-text {
  display: block;
  background: linear-gradient(135deg, #00a8cc 0%, #0088aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5a6c7d;
  margin-bottom: 32px;
}

/* Features Grid */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: white;
  border-radius: 14px;
  border: 1.5px solid rgba(0, 168, 204, 0.12);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(8px);
  border-color: rgba(0, 168, 204, 0.3);
  box-shadow: 0 8px 24px rgba(0, 168, 204, 0.1);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.1), rgba(0, 168, 204, 0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a8cc;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.85rem;
  color: #7a8a9a;
  margin: 0;
}

/* Timeline */
.about-timeline {
  position: relative;
  padding: 24px 0;
  margin-bottom: 36px;
  display: flex;
  gap: 60px;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00a8cc 0%, rgba(0, 168, 204, 0.2) 100%);
}

.timeline-item {
  position: relative;
  z-index: 1;
}

.timeline-year {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 8px;
  font-family: 'Orbitron', sans-serif;
}

.timeline-text {
  font-size: 0.9rem;
  color: #5a6c7d;
  font-weight: 600;
}

/* CTA Buttons */
.about-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.about-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
}

.about-cta .btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.about-cta .btn-primary:hover i {
  transform: translateX(4px);
}

.about-cta .btn-outline:hover i {
  transform: scale(1.1);
}

/* Responsive About Section */
@media (max-width: 991px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .about-image-container {
    height: 500px;
  }
  
  .about-experience-card {
    right: 20px;
  }
  
  .about-heading {
    font-size: 2.2rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .about-timeline {
    flex-direction: column;
    gap: 30px;
  }
  
  .timeline-line {
    width: 2px;
    height: 100%;
    left: 30px;
    top: 0;
    background: linear-gradient(180deg, #00a8cc 0%, rgba(0, 168, 204, 0.2) 100%);
  }
}

/* ===================================
   10. STATISTICS SECTION - REDESIGNED
   =================================== */
.stats-section-redesigned {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0f8ff 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Background */
.stats-bg-animated {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.stats-gradient-orbs {
  position: absolute;
  inset: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #00a8cc 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #0088aa 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  animation-delay: 5s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #00c8e8 0%, transparent 70%);
  top: 50%;
  right: 20%;
  animation-delay: 10s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

.stats-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 168, 204, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 204, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.4;
}

.stats-floating-elements {
  position: absolute;
  inset: 0;
}

.floating-shape {
  position: absolute;
  border: 2px solid rgba(0, 168, 204, 0.2);
  animation: floatRotate 15s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  top: 70%;
  left: 85%;
  animation-delay: 3s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
}

.shape-4 {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  top: 40%;
  right: 15%;
  animation-delay: 9s;
  transform: rotate(45deg);
}

@keyframes floatRotate {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

/* Section Header */
.stats-header-redesigned {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  background: rgba(0, 168, 204, 0.08);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 168, 204, 0.25);
  border-radius: 50px;
  color: #00a8cc;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 168, 204, 0.15);
}

.stats-badge i {
  font-size: 1rem;
}

.stats-title-redesigned {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, #00a8cc 0%, #00c8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-subtitle-redesigned {
  font-size: 1.15rem;
  color: rgba(26, 26, 26, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid-redesigned {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

/* Stat Card Redesigned */
.stat-card-redesigned {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 168, 204, 0.15);
  border-radius: 24px;
  padding: 36px 28px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 168, 204, 0.08);
}

.stat-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 168, 204, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.stat-card-redesigned:hover .stat-card-glow {
  opacity: 1;
}

.stat-card-redesigned:hover {
  transform: translateY(-16px) scale(1.02);
  border-color: rgba(0, 168, 204, 0.4);
  box-shadow: 
    0 30px 60px rgba(0, 168, 204, 0.2),
    inset 0 0 60px rgba(0, 168, 204, 0.05);
}

.stat-card-content-wrap {
  position: relative;
  z-index: 2;
}

/* Decorative Number */
.stat-decoration-number {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(0, 168, 204, 0.05);
  font-family: 'Orbitron', sans-serif;
  line-height: 1;
  user-select: none;
}

/* Icon with Pulse */
.stat-icon-pulse {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
}

.pulse-ring,
.pulse-ring-2 {
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(0, 168, 204, 0.4);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}

.pulse-ring-2 {
  animation-delay: 1s;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.stat-icon-circle {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.2), rgba(0, 168, 204, 0.1));
  border: 3px solid rgba(0, 168, 204, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a8cc;
  font-size: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 0 30px rgba(0, 168, 204, 0.3);
}

.stat-card-redesigned:hover .stat-icon-circle {
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  color: white;
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 0 50px rgba(0, 168, 204, 0.6);
}

/* Main Content */
.stat-main-content {
  text-align: center;
  margin-bottom: 24px;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}

.stat-number-wrap .counter {
  font-size: 3.8rem;
  font-weight: 900;
  color: #1a1a1a;
  font-family: 'Orbitron', sans-serif;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0, 168, 204, 0.2);
}

.stat-plus {
  font-size: 2.4rem;
  font-weight: 800;
  color: #00a8cc;
  font-family: 'Orbitron', sans-serif;
}

.stat-label-wrap h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.stat-label-wrap p {
  font-size: 0.85rem;
  color: rgba(26, 26, 26, 0.6);
  margin: 0;
}

/* Circular Progress */
.stat-circular-progress {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring-circle-bg {
  fill: none;
  stroke: rgba(0, 168, 204, 0.1);
  stroke-width: 6;
}

.progress-ring-circle {
  fill: none;
  stroke: url(#progressGradient);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  transition: stroke-dashoffset 2s ease-out 0.5s;
}

.stat-card-redesigned.scroll-reveal.active .progress-ring-circle {
  stroke-dashoffset: calc(264 - (264 * var(--progress, 0) / 100));
}

.progress-percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: 800;
  color: #00a8cc;
  font-family: 'Orbitron', sans-serif;
}

/* Bottom Tagline */
.stats-bottom-tag {
  text-align: center;
  padding: 28px 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 168, 204, 0.2);
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 30px rgba(0, 168, 204, 0.12);
}

.tag-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stats-bottom-tag p {
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.85);
  font-weight: 600;
  margin: 0;
}

/* Add SVG Gradient Definition (needs to be added via JS or inline SVG) */
svg defs {
  display: none;
}

/* Responsive Stats */
@media (max-width: 991px) {
  .stats-grid-redesigned {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stats-title-redesigned {
    font-size: 2.8rem;
  }
  
  .stat-card-redesigned {
    padding: 28px 20px;
  }
  
  .stat-number-wrap .counter {
    font-size: 3.2rem;
  }
}

@media (max-width: 576px) {
  .stats-section-redesigned {
    padding: 80px 0;
  }
  
  .stats-grid-redesigned {
    grid-template-columns: 1fr;
  }
  
  .stats-title-redesigned {
    font-size: 2.2rem;
  }
  
  .stats-bottom-tag {
    flex-direction: column;
    text-align: center;
  }
}

/* ===================================
   11. PROJECTS SECTION - MODERN
   =================================== */
.projects-section-modern {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 50%, #ffffff 100%);
  position: relative;
}

/* Section Header Styles */
.section-header-modern {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.1), rgba(0, 168, 204, 0.05));
  border: 1.5px solid rgba(0, 168, 204, 0.25);
  border-radius: 50px;
  color: #00a8cc;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.section-title-modern {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.highlight-gradient {
  background: linear-gradient(135deg, #00a8cc 0%, #0088aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description-modern {
  font-size: 1.1rem;
  color: #5a6c7d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Filter Tabs */
.project-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: white;
  border: 2px solid rgba(0, 168, 204, 0.2);
  border-radius: 50px;
  color: #5a6c7d;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.filter-btn:hover {
  border-color: #00a8cc;
  color: #00a8cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 168, 204, 0.15);
}

.filter-btn.active {
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  border-color: #00a8cc;
  color: white;
  box-shadow: 0 4px 16px rgba(0, 168, 204, 0.3);
}

.filter-btn.active i {
  transform: scale(1.1);
}

/* Projects Grid */
.projects-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

/* Loader */
.projects-loader {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(0, 168, 204, 0.1);
  border-top-color: #00a8cc;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-text {
  font-size: 1.1rem;
  color: #5a6c7d;
  font-weight: 500;
}

/* Projects CTA */
.projects-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.05), rgba(0, 168, 204, 0.02));
  border: 2px solid rgba(0, 168, 204, 0.15);
  border-radius: 20px;
}

.cta-stats {
  display: flex;
  gap: 32px;
}

.cta-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cta-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #00a8cc;
  font-family: 'Orbitron', sans-serif;
}

.cta-stat-label {
  font-size: 0.85rem;
  color: #7a8a9a;
  font-weight: 600;
  text-transform: uppercase;
}

/* Modern Button Styles */
.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-modern-primary {
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  color: white;
  box-shadow: 0 4px 16px rgba(0, 168, 204, 0.3);
}

.btn-modern-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 168, 204, 0.4);
}

.btn-modern-primary i {
  transition: transform 0.3s ease;
}

.btn-modern-primary:hover i {
  transform: translateX(4px);
}

.btn-modern-outline {
  background: transparent;
  color: #00a8cc;
  border-color: #00a8cc;
}

.btn-modern-outline:hover {
  background: #00a8cc;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 168, 204, 0.3);
}

/* Responsive Projects */
@media (max-width: 991px) {
  .section-title-modern {
    font-size: 2.4rem;
  }
  
  .projects-grid-modern {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }
  
  .projects-cta {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .project-filters {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .projects-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .cta-stats {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===================================
   12. SERVICES SECTION - MODERN FLIP CARDS
   =================================== */
.services-section-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fcff 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.services-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.services-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
}

.services-shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 168, 204, 0.08) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.services-shape-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 168, 204, 0.06) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
}

/* Services Grid */
.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

/* Flip Card */
.service-card-modern {
  position: relative;
  height: 320px;
  perspective: 1000px;
}

.service-card-front,
.service-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}

.service-card-front {
  background: linear-gradient(135deg, #ffffff 0%, #f8fcff 100%);
  border: 2px solid rgba(0, 168, 204, 0.2);
  box-shadow: 0 10px 40px rgba(0, 168, 204, 0.12);
  justify-content: space-between;
  z-index: 2;
}

.service-card-back {
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.95), rgba(0, 136, 170, 0.95));
  backdrop-filter: blur(10px);
  transform: rotateY(180deg);
  color: white;
  justify-content: space-between;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-card-modern:hover .service-card-front {
  transform: rotateY(-180deg);
}

.service-card-modern:hover .service-card-back {
  transform: rotateY(0deg);
}

/* Front Card Elements */
.service-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(0, 168, 204, 0.08);
  font-family: 'Orbitron', sans-serif;
  line-height: 1;
}

.service-icon-modern {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.1), rgba(0, 168, 204, 0.05));
  border: 2px solid rgba(0, 168, 204, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a8cc;
  font-size: 2rem;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.15), rgba(0, 168, 204, 0.08));
}

.service-title-modern {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-excerpt {
  font-size: 0.95rem;
  color: #7a8a9a;
  margin-bottom: 20px;
}

.service-arrow {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.service-card-modern:hover .service-arrow {
  transform: translateX(8px);
}

/* Back Card Elements */
.service-card-back h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 auto 0;
  flex: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  color: #00a8cc;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-link:hover {
  background: rgba(255, 255, 255, 0.95);
  gap: 12px;
  padding-right: 28px;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* Bottom CTA */
.services-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 48px;
  background: white;
  border: 2px solid rgba(0, 168, 204, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 168, 204, 0.1);
}

.cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.cta-content p {
  font-size: 1rem;
  color: #5a6c7d;
  margin: 0;
}

/* Responsive Services */
@media (max-width: 991px) {
  .services-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .services-bottom-cta {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .services-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .service-card-modern {
    height: 300px;
  }
  
  .services-bottom-cta {
    padding: 32px 24px;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
}

/* ===================================
   13. PROJECT CARDS - MODERN
   =================================== */
.project-card {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 168, 204, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
}

.project-card.active {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 168, 204, 0.2);
}

.project-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f8ff, #e0f2f7);
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-card-image img {
  transform: scale(1.1);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-card-overlay {
  opacity: 1;
}

.project-card-overlay .btn {
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.project-card:hover .project-card-overlay .btn {
  transform: translateY(0);
}

.project-card-category {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 168, 204, 0.3);
}

.project-card-content {
  padding: 28px 24px;
}

.project-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card-description {
  font-size: 0.95rem;
  color: #5a6c7d;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 168, 204, 0.1);
}

.project-card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #7a8a9a;
  font-weight: 500;
}

.project-card-meta i {
  color: #00a8cc;
  font-size: 0.9rem;
}

/* ===================================
   14. CALL TO ACTION - MODERN SPLIT LAYOUT
   =================================== */
.cta-section-modern {
  padding: 120px 0;
  background: linear-gradient(135deg, #00a8cc 0%, #0088aa 100%);
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  inset: 0;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent 0px, transparent 40px, rgba(255, 255, 255, 0.03) 40px, rgba(255, 255, 255, 0.03) 41px),
    repeating-linear-gradient(-45deg, transparent 0px, transparent 40px, rgba(255, 255, 255, 0.03) 40px, rgba(255, 255, 255, 0.03) 41px);
}

.cta-shapes {
  position: absolute;
  inset: 0;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation: floatElement 8s ease-in-out infinite;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: 10%;
  animation: floatElement 10s ease-in-out infinite 2s;
}

.cta-shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 30%;
  animation: floatElement 12s ease-in-out infinite 4s;
}

.cta-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Content */
.cta-content {
  color: white;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.cta-badge i {
  font-size: 1rem;
}

.cta-heading {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.highlight-white {
  display: inline-block;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.cta-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 36px;
  max-width: 600px;
}

/* CTA Features */
.cta-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-feature-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.cta-feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-cta-primary {
  background: white;
  color: #00a8cc;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  background: #f8fcff;
}

.btn-cta-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-3px);
}

.btn-cta i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn-cta-primary:hover i {
  transform: translateX(4px);
}

.btn-cta-outline:hover i {
  animation: pulse 0.6s ease-in-out;
}

/* Right Visual Card */
.cta-visual {
  position: relative;
}

.cta-card {
  background: white;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  position: relative;
}

.cta-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(0, 168, 204, 0.1);
}

.cta-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.cta-card-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* Stats Grid */
.cta-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.cta-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.05), rgba(0, 168, 204, 0.02));
  border-radius: 12px;
  border: 1px solid rgba(0, 168, 204, 0.1);
  transition: all 0.3s ease;
}

.cta-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 168, 204, 0.15);
  border-color: rgba(0, 168, 204, 0.3);
}

.cta-stat-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.1), rgba(0, 168, 204, 0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a8cc;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cta-stat-content {
  flex: 1;
  min-width: 0;
}

.cta-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a1a;
  font-family: 'Orbitron', sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}

.cta-stat-label {
  font-size: 0.75rem;
  color: #7a8a9a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Info */
.cta-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  padding: 24px;
  background: rgba(0, 168, 204, 0.03);
  border-radius: 12px;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #5a6c7d;
}

.cta-contact-item i {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Trust Badge */
.cta-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.1), rgba(0, 168, 204, 0.05));
  border: 2px solid rgba(0, 168, 204, 0.2);
  border-radius: 50px;
  color: #00a8cc;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.cta-trust-badge i {
  font-size: 1.2rem;
}

/* Responsive CTA */
@media (max-width: 991px) {
  .cta-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .cta-heading {
    font-size: 2.5rem;
  }
  
  .cta-features {
    grid-template-columns: 1fr;
  }
  
  .cta-stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .cta-section-modern {
    padding: 80px 0;
  }
  
  .cta-heading {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-cta {
    width: 100%;
    justify-content: center;
  }
  
  .cta-card {
    padding: 28px 24px;
  }
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-title h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-blue);
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: var(--space-md) auto 0;
}

/* ===================================
   9. CARDS
   =================================== */
.card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-img {
  transform: scale(1.1);
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card:hover .card-overlay {
  opacity: 1;
}

.card-body {
  padding: var(--space-md);
}

.card-title {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-sm);
  color: var(--primary-navy);
}

.card-text {
  color: var(--text-muted);
  font-size: var(--fs-body);
  line-height: 1.6;
}

.card-footer {
  padding: var(--space-sm) var(--space-md);
  background: var(--background);
  border-top: 1px solid var(--secondary-gray);
}

/* ===================================
   10. BADGES
   =================================== */
.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: var(--accent-blue);
  color: white;
}

.badge-gold {
  background: var(--accent-gold);
  color: white;
}

.badge-success {
  background: var(--success);
  color: white;
}

.badge-info {
  background: var(--info);
  color: white;
}

/* ===================================
   11. FOOTER
   =================================== */
/* ===================================
   FOOTER REDESIGNED - MODERN LIGHT
   =================================== */
.footer-redesigned {
  position: relative;
  background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0f9ff 100%);
  color: #1a1a1a;
  overflow: hidden;
}

/* Animated Background */
.footer-bg-animated {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.6;
}

.footer-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: orbFloat 25s ease-in-out infinite;
}

.footer-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 168, 204, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  animation-delay: 0s;
}

.footer-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 200, 232, 0.12) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation-delay: 8s;
}

.footer-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(0, 168, 204, 0.05) 0%, transparent 100%);
  opacity: 0.5;
}

.footer-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 168, 204, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 204, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.footer-floating-icons {
  position: absolute;
  inset: 0;
}

.floating-icon {
  position: absolute;
  font-size: 2.5rem;
  color: rgba(0, 168, 204, 0.15);
  animation: iconFloat 20s ease-in-out infinite;
}

.icon-1 {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.icon-2 {
  top: 60%;
  right: 20%;
  animation-delay: 5s;
}

.icon-3 {
  bottom: 20%;
  left: 25%;
  animation-delay: 10s;
}

.icon-4 {
  top: 30%;
  right: 10%;
  animation-delay: 15s;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
    opacity: 0.3;
  }
}

/* Newsletter Section */
.footer-newsletter {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
  border-bottom: 2px solid rgba(0, 168, 204, 0.15);
}

.newsletter-content {
  padding-right: 40px;
}

.newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 168, 204, 0.15);
  border: 2px solid rgba(0, 168, 204, 0.3);
  border-radius: 50px;
  color: #00a8cc;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.newsletter-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}

.newsletter-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.newsletter-form {
  position: relative;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 168, 204, 0.2);
  border-radius: 60px;
  padding: 8px 8px 8px 24px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 168, 204, 0.1);
}

.input-wrapper:focus-within {
  border-color: rgba(0, 168, 204, 0.5);
  box-shadow: 0 0 40px rgba(0, 168, 204, 0.25);
}

.input-icon {
  color: rgba(0, 168, 204, 0.7);
  margin-right: 12px;
  font-size: 1.1rem;
}

.input-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  color: #1a1a1a;
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
}

.input-wrapper input::placeholder {
  color: rgba(26, 26, 26, 0.4);
}

.btn-subscribe {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-subscribe:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 168, 204, 0.4);
}

.form-features {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(26, 26, 26, 0.6);
}

.form-features span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-features i {
  color: #00a8cc;
  font-size: 0.85rem;
}

/* Main Footer Content */
.footer-main-content {
  position: relative;
  z-index: 2;
  padding: 70px 0 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

/* Footer Columns */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-brand-col {
  padding-right: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  margin-bottom: 24px;
}

.footer-brand-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00a8cc, #008fb0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 168, 204, 0.3);
}

.footer-brand-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-brand-text .brand-main {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 2px;
  font-family: 'Montserrat', sans-serif;
}

.footer-brand-text .brand-sub {
  font-size: 0.85rem;
  color: #00a8cc;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-description {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.footer-mini-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0, 168, 204, 0.15);
  box-shadow: 0 4px 15px rgba(0, 168, 204, 0.08);
}

.mini-stat {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  border-right: 1px solid rgba(0, 168, 204, 0.15);
}

.mini-stat:last-child {
  border-right: none;
}

.mini-stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #00a8cc;
  font-family: 'Orbitron', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}

.mini-stat-label {
  display: block;
  font-size: 0.7rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.footer-col-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #00a8cc, transparent);
  border-radius: 2px;
}

.footer-links-modern {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-modern li {
  margin-bottom: 12px;
}

.footer-links-modern a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #6b7280;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links-modern a i {
  font-size: 0.7rem;
  color: #00a8cc;
  transition: all 0.3s ease;
}

.footer-links-modern a:hover {
  color: #00a8cc;
  padding-left: 10px;
}

.footer-links-modern a:hover i {
  transform: translateX(5px);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list .contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-contact-list .contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 168, 204, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a8cc;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact-list .contact-item:hover .contact-icon {
  background: #00a8cc;
  color: white;
  transform: scale(1.1);
}

.footer-contact-list .contact-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact-list .contact-text span {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Footer Widget */
.footer-widget {
  margin-bottom: 40px;
}

.footer-brand .brand-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.brand-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(0, 168, 204, 0.3);
}

.footer-brand h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.brand-tagline {
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

/* Mini Stats in Footer */
.footer-stats-mini {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: white;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 168, 204, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 168, 204, 0.1);
}

.stat-mini-item {
  flex: 1;
  text-align: center;
}

.stat-mini-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #00a8cc;
  font-family: 'Orbitron', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-mini-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(26, 26, 26, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.stat-mini-divider {
  width: 2px;
  height: 40px;
  background: rgba(0, 168, 204, 0.2);
}

/* Widget Title */
.widget-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 16px;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #00a8cc, transparent);
  border-radius: 2px;
}

.title-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 168, 204, 0.15);
  border: 2px solid rgba(0, 168, 204, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a8cc;
  font-size: 1rem;
}

/* Footer Menu */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 14px;
}

.footer-menu a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(26, 26, 26, 0.7);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-menu a i {
  font-size: 0.75rem;
  color: rgba(0, 168, 204, 0.6);
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  color: #00a8cc;
  padding-left: 12px;
}

.footer-menu a:hover i {
  color: #00a8cc;
  transform: translateX(5px);
}

/* Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: rgba(0, 168, 204, 0.15);
  border: 2px solid rgba(0, 168, 204, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a8cc;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.contact-info {
  flex: 1;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(26, 26, 26, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-info a,
.contact-info span {
  color: rgba(26, 26, 26, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: #00a8cc;
}

/* Footer Bottom Section */
.footer-bottom-redesigned {
  position: relative;
  z-index: 2;
  border-top: 2px solid rgba(0, 168, 204, 0.15);
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-social-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(0, 168, 204, 0.1);
}

.social-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 2px solid rgba(0, 168, 204, 0.2);
  border-radius: 50%;
  color: #00a8cc;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 4px 15px rgba(0, 168, 204, 0.1);
  position: relative;
}

.social-btn:hover {
  background: linear-gradient(135deg, #00a8cc, #008fb0);
  color: white;
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 8px 25px rgba(0, 168, 204, 0.3);
  border-color: transparent;
}

.social-btn::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.social-btn:hover::after {
  opacity: 1;
  bottom: calc(100% + 15px);
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-links-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-links-inline a {
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links-inline a:hover {
  color: #00a8cc;
}

.footer-links-inline .separator {
  color: rgba(0, 168, 204, 0.3);
}

.social-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-links-redesigned {
  display: flex;
  gap: 12px;
}

.social-link-modern {
  position: relative;
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid rgba(0, 168, 204, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a8cc;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 4px 15px rgba(0, 168, 204, 0.1);
}

.social-link-modern:hover {
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  color: white;
  transform: translateY(-8px) rotate(360deg);
  box-shadow: 0 12px 35px rgba(0, 168, 204, 0.3);
  border-color: transparent;
}

.social-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(0, 168, 204, 0.95);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.social-link-modern:hover .social-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* Copyright Bar */
.footer-copyright-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.copyright-content p {
  color: rgba(26, 26, 26, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

.copyright-content strong {
  color: #00a8cc;
  font-weight: 700;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-legal-links a {
  color: rgba(26, 26, 26, 0.6);
  transition: all 0.3s ease;
}

.footer-legal-links a:hover {
  color: #00a8cc;
}

.footer-legal-links .divider {
  color: rgba(26, 26, 26, 0.3);
}

.footer-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.made-with {
  color: rgba(26, 26, 26, 0.6);
  font-size: 0.85rem;
}

.made-with i {
  color: #ff4757;
  animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% {
    transform: scale(1);
  }
  10%, 30% {
    transform: scale(1.2);
  }
  20%, 40% {
    transform: scale(1.1);
  }
}

/* Back to Top Button */
.back-to-top-btn,
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 168, 204, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top-btn.show,
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover,
.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 168, 204, 0.5);
}

.btn-tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  background: rgba(0, 168, 204, 0.95);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.back-to-top-btn:hover .btn-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-5px);
}

/* ===================================
   ABOUT PAGE REDESIGNED STYLES
   =================================== */

/* About Hero Section */
.about-hero-redesigned {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0f9ff 100%);
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.5;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 168, 204, 0.2) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 200, 232, 0.15) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  animation-delay: 5s;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 168, 204, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 204, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-floating-shapes .floating-shape {
  position: absolute;
  border: 2px solid rgba(0, 168, 204, 0.2);
  animation: floatRotate 15s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: 20%;
  left: 10%;
}

.shape-2 {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  bottom: 20%;
  right: 15%;
  animation-delay: 5s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 60%;
  left: 80%;
  animation-delay: 10s;
}

/* Breadcrumbs Modern */
.breadcrumbs-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(26, 26, 26, 0.6);
  transition: all 0.3s ease;
}

.breadcrumb-link:hover {
  color: #00a8cc;
}

.breadcrumb-divider {
  color: rgba(0, 168, 204, 0.4);
  font-size: 0.7rem;
}

.breadcrumb-current {
  color: #00a8cc;
  font-weight: 600;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(0, 168, 204, 0.1);
  border: 2px solid rgba(0, 168, 204, 0.25);
  border-radius: 50px;
  color: #00a8cc;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-hero-description {
  font-size: 1.15rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
}

/* Hero Stats Inline */
.hero-stats-inline {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: white;
  border: 2px solid rgba(0, 168, 204, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 168, 204, 0.1);
}

.stat-inline-item {
  flex: 1;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #00a8cc;
  font-family: 'Orbitron', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(26, 26, 26, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.stat-divider {
  width: 2px;
  height: 50px;
  background: rgba(0, 168, 204, 0.2);
}

/* Profile Image Wrapper */
.about-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-image-wrapper {
  position: relative;
  width: 450px;
  height: 450px;
}

.profile-glow-effect {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(0, 168, 204, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.profile-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(0, 168, 204, 0.2);
  border-radius: 50%;
  animation: ringRotate 20s linear infinite;
}

.ring-2 {
  inset: -20px;
  animation-delay: 5s;
}

.ring-3 {
  inset: -40px;
  animation-delay: 10s;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.profile-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid white;
  box-shadow: 0 20px 60px rgba(0, 168, 204, 0.2);
  z-index: 2;
}

.profile-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: white;
  border: 2px solid rgba(0, 168, 204, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #00a8cc;
  box-shadow: 0 8px 25px rgba(0, 168, 204, 0.2);
  z-index: 3;
}

.badge-1 {
  top: 10%;
  right: -10%;
  animation: floatBadge 3s ease-in-out infinite;
}

.badge-2 {
  bottom: 15%;
  left: -15%;
  animation: floatBadge 3s ease-in-out infinite 1.5s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* About Story Section */
.about-story-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fcff 100%);
}

.about-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(0, 168, 204, 0.1);
  border: 2px solid rgba(0, 168, 204, 0.25);
  border-radius: 50px;
  color: #00a8cc;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-title-large {
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(26, 26, 26, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Story Cards */
.story-card {
  position: relative;
  padding: 40px;
  background: white;
  border: 2px solid rgba(0, 168, 204, 0.15);
  border-radius: 24px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 168, 204, 0.08);
  height: 100%;
}

.story-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 168, 204, 0.4);
  box-shadow: 0 20px 50px rgba(0, 168, 204, 0.2);
}

.story-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(0, 168, 204, 0.3);
}

.story-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.story-card-text {
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(0, 168, 204, 0.08);
  border-radius: 12px;
  color: #00a8cc;
  font-size: 0.9rem;
  font-weight: 600;
}

.story-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
  flex-wrap: wrap;
}

/* Modern Buttons */
.btn-modern {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
}

.btn-modern.btn-primary {
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  color: white;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 168, 204, 0.3);
}

.btn-modern.btn-outline {
  background: white;
  color: #00a8cc;
  border: 2px solid rgba(0, 168, 204, 0.3);
  box-shadow: 0 4px 15px rgba(0, 168, 204, 0.1);
}

.btn-modern:hover {
  transform: translateY(-3px);
}

.btn-modern.btn-primary:hover {
  box-shadow: 0 12px 35px rgba(0, 168, 204, 0.5);
}

.btn-modern.btn-outline:hover {
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  color: white;
  border-color: transparent;
}

.btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
}

.btn-modern:hover .btn-shine {
  animation: shine 0.6s ease;
}

@keyframes shine {
  to { transform: translateX(100%); }
}

.btn-icon {
  font-size: 1.1rem;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* Timeline Redesigned */
.timeline-section-redesigned {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0f9ff 100%);
}

.timeline-modern {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, #00a8cc, transparent);
  transform: translateX(-50%);
}

.timeline-item-modern {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-start;
  padding-left: calc(50% + 60px);
}

.timeline-item-modern:nth-child(even) {
  justify-content: flex-end;
  padding-left: 0;
  padding-right: calc(50% + 60px);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  z-index: 2;
}

.dot-inner {
  width: 100%;
  height: 100%;
  background: #00a8cc;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 168, 204, 0.5);
}

.dot-pulse {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(0, 168, 204, 0.4);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}

.timeline-card {
  position: relative;
  padding: 32px;
  background: white;
  border: 2px solid rgba(0, 168, 204, 0.15);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 168, 204, 0.1);
  transition: all 0.4s ease;
  max-width: 450px;
}

.timeline-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 168, 204, 0.4);
  box-shadow: 0 15px 40px rgba(0, 168, 204, 0.2);
}

.timeline-year-badge {
  position: absolute;
  top: -16px;
  right: 32px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
  font-family: 'Orbitron', sans-serif;
}

.timeline-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(0, 168, 204, 0.1);
  border: 2px solid rgba(0, 168, 204, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a8cc;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.timeline-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.timeline-card-text {
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

.timeline-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.timeline-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(0, 168, 204, 0.08);
  border-radius: 20px;
  color: #00a8cc;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Skills Section Redesigned */
.skills-section-redesigned {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fcff 100%);
}

.skills-category-card {
  padding: 40px;
  background: white;
  border: 2px solid rgba(0, 168, 204, 0.15);
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 168, 204, 0.08);
  height: 100%;
}

.skills-category-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 168, 204, 0.1);
}

.skills-category-title i {
  color: #00a8cc;
  font-size: 1.8rem;
}

.circular-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 40px;
  justify-items: center;
}

.circular-skill-item {
  text-align: center;
}

.circular-progress {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring-circle-bg {
  fill: none;
  stroke: rgba(0, 168, 204, 0.1);
  stroke-width: 8;
}

.progress-ring-circle {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 2s ease-out;
}

.circular-skill-item.active .progress-ring-circle {
  stroke-dashoffset: calc(314 - (314 * var(--percentage, 0) / 100));
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.progress-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: #00a8cc;
  font-family: 'Orbitron', sans-serif;
}

.progress-symbol {
  font-size: 1rem;
  color: #00a8cc;
  font-weight: 700;
}

.skill-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.8);
  margin: 0;
}

/* Philosophy Section */
.philosophy-section-redesigned {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0f9ff 100%);
}

.philosophy-quote-card {
  position: relative;
  padding: 50px;
  background: white;
  border: 2px solid rgba(0, 168, 204, 0.15);
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0, 168, 204, 0.1);
}

.quote-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0, 168, 204, 0.3);
}

.philosophy-quote {
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(26, 26, 26, 0.85);
  line-height: 1.8;
  margin-bottom: 30px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #00a8cc, transparent);
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: #00a8cc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.philosophy-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-item {
  padding: 28px;
  background: white;
  border: 2px solid rgba(0, 168, 204, 0.15);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 168, 204, 0.4);
  box-shadow: 0 12px 35px rgba(0, 168, 204, 0.15);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 168, 204, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a8cc;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}

.value-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.value-text {
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
}

/* Awards Section */
.awards-section-redesigned {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fcff 100%);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.award-card {
  position: relative;
  padding: 36px;
  background: white;
  border: 2px solid rgba(0, 168, 204, 0.15);
  border-radius: 24px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 168, 204, 0.08);
}

.award-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 168, 204, 0.4);
  box-shadow: 0 20px 50px rgba(0, 168, 204, 0.2);
}

.award-badge-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
}

.award-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(0, 168, 204, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.award-card:hover .award-glow {
  opacity: 1;
  animation: pulse 2s ease-in-out infinite;
}

.award-glow.gold {
  background: radial-gradient(circle, rgba(255, 193, 7, 0.4) 0%, transparent 70%);
}

.award-icon-circle {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #00a8cc, #0088aa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  box-shadow: 0 8px 25px rgba(0, 168, 204, 0.3);
  transition: all 0.4s ease;
}

.award-icon-circle.gold {
  background: linear-gradient(135deg, #ffc107, #ff9800);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.award-card:hover .award-icon-circle {
  transform: scale(1.1) rotate(10deg);
}

.award-year {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 168, 204, 0.1);
  border-radius: 20px;
  color: #00a8cc;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: 'Orbitron', sans-serif;
}

.award-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.award-description {
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.award-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(0, 168, 204, 0.1);
}

.award-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(0, 168, 204, 0.1);
  border-radius: 20px;
  color: #00a8cc;
  font-size: 0.8rem;
  font-weight: 600;
}

.award-badge-pill.gold {
  background: rgba(255, 193, 7, 0.15);
  color: #ff9800;
}

/* CTA Section */
.about-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0f9ff 100%);
}

.cta-card-modern {
  position: relative;
  padding: 60px;
  background: white;
  border: 2px solid rgba(0, 168, 204, 0.15);
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0, 168, 204, 0.12);
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 168, 204, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 204, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(0, 168, 204, 0.1);
  border: 2px solid rgba(0, 168, 204, 0.25);
  border-radius: 50px;
  color: #00a8cc;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-description {
  font-size: 1.05rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.8;
  margin-bottom: 30px;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(26, 26, 26, 0.8);
  font-size: 0.95rem;
  font-weight: 600;
}

.cta-feature-item i {
  color: #00a8cc;
  font-size: 1.1rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-contact-info {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid rgba(0, 168, 204, 0.1);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(26, 26, 26, 0.7);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.contact-info-item i {
  color: #00a8cc;
  font-size: 1rem;
}

/* Responsive Footer */
@media (max-width: 991px) {
  .footer-newsletter {
    padding: 60px 0 50px;
  }
  
  .newsletter-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  
  .newsletter-content h3 {
    font-size: 1.8rem;
  }
  
  .footer-main-content {
    padding: 50px 0 40px;
  }
  
  .footer-stats-mini {
    flex-direction: column;
    gap: 12px;
  }
  
  .stat-mini-divider {
    width: 100%;
    height: 2px;
  }
}

@media (max-width: 768px) {
  .footer-main-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand-col {
    grid-column: 1 / -1;
  }
  
  .footer-social-bar {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .footer-copyright {
    text-align: center;
  }
  
  .footer-copyright-bar {
    flex-direction: column;
    text-align: center;
  }
  
  .copyright-content {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-legal-links {
    justify-content: center;
  }
  
  .back-to-top-btn,
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  
  .footer-mini-stats {
    flex-direction: row;
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .newsletter-content h3 {
    font-size: 1.5rem;
  }
  
  .btn-subscribe {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
  
  .form-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .footer-main-content {
    grid-template-columns: 1fr !important;
    gap: 30px;
    padding: 40px 0 30px;
  }
  
  .footer-brand-col {
    grid-column: 1;
  }
  
  .footer-mini-stats {
    flex-direction: column;
    gap: 12px;
  }
  
  .mini-stat {
    border-right: none;
    border-bottom: 1px solid rgba(0, 168, 204, 0.15);
    padding-bottom: 12px;
  }
  
  .mini-stat:last-child {
    border-bottom: none;
    padding-bottom: 8px;
  }
  
  .footer-links-inline {
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-links-inline .separator {
    display: none;
  }
  
  /* About Page Responsive */
  .about-hero-title {
    font-size: 2.2rem;
  }
  
  .hero-stats-inline {
    flex-direction: column;
    gap: 12px;
  }
  
  .stat-divider {
    width: 100%;
    height: 2px;
  }
  
  .profile-image-wrapper {
    width: 300px;
    height: 300px;
  }
  
  .timeline-item-modern,
  .timeline-item-modern:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .timeline-dot {
    left: 20px;
  }
  
  .section-title-large {
    font-size: 2rem;
  }
  
  .philosophy-values-grid {
    grid-template-columns: 1fr;
  }
  
  .circular-skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .cta-card-modern {
    padding: 40px 30px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
}

/* ===================================
   12. FORMS
   =================================== */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--text-dark);
  font-size: var(--fs-body);
}

.form-label.required::after {
  content: ' *';
  color: var(--danger);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  color: var(--text-dark);
  background: white;
  border: 2px solid var(--secondary-gray);
  border-radius: var(--border-radius);
  transition: all var(--transition-base);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.form-control.error {
  border-color: var(--danger);
}

.form-control.success {
  border-color: var(--success);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
}

.form-error {
  display: none;
  color: var(--danger);
  font-size: var(--fs-small);
  margin-top: var(--space-xs);
}

.form-control.error + .form-error {
  display: block;
}

.form-success {
  display: none;
  padding: var(--space-md);
  background: var(--success);
  color: white;
  border-radius: var(--border-radius);
  margin-bottom: var(--space-md);
}

.form-success.show {
  display: block;
}

/* ===================================
   13. RESPONSIVE DESIGN
   =================================== */

/* Tablet and below */
@media (max-width: 991px) {
  :root {
    --space-xxxl: 4rem;
  }
  
  /* Top Social Bar - Mobile */
  .social-info span:first-child {
    display: none;
  }
  
  .social-info {
    font-size: 0.75rem;
  }
  
  /* Navigation */
  .navbar {
    height: 70px;
  }
  
  .navbar.scrolled {
    top: 0;
  }
  
  .brand-icon {
    width: 42px;
    height: 42px;
  }
  
  .brand-icon svg {
    width: 26px;
    height: 26px;
  }
  
  .brand-main {
    font-size: 1.2rem;
  }
  
  .brand-sub {
    font-size: 0.65rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  /* Mobile Navigation */
  .navbar-nav {
    position: fixed;
    top: 110px;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: calc(100vh - 110px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 255, 0.95) 100%);
    backdrop-filter: blur(25px);
    flex-direction: column;
    padding: var(--space-lg);
    gap: 12px;
    align-items: stretch;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    border-left: 2px solid rgba(0, 168, 204, 0.3);
    border-radius: 0;
  }
  
  .navbar-nav.active {
    right: 0;
  }
  
  .navbar-nav li {
    width: 100%;
  }
  
  .nav-link {
    width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    text-align: left;
    background: rgba(0, 168, 204, 0.05);
    border: 1px solid rgba(0, 168, 204, 0.15);
    justify-content: flex-start;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-link.active {
    background: rgba(0, 168, 204, 0.12);
    border-color: #00a8cc;
  }
  
  .navbar-cta {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
  }
  
  .navbar-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  /* Hero Section - Tablet */
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding: 140px 0 60px 0;
  }

  .hero-content {
    padding: 0 40px;
    text-align: center;
  }

  .hero-subtitle {
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
  }

  .hero-description {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    padding: 0 40px 40px 40px;
    height: 450px;
  }

  .hero-visual-inner {
    max-width: 450px;
    margin: 0 auto;
  }

  .building-tower:nth-child(1) { height: 220px; }
  .building-tower:nth-child(2) { height: 300px; }
  .building-tower:nth-child(3) { height: 260px; }
  .building-tower:nth-child(4) { height: 200px; }

  .hero-floating-element {
    padding: 12px 16px;
  }

  .floating-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  :root {
    --header-height: 60px;
    --space-xxxl: 3rem;
  }
  
  /* Top Social Bar - Small Mobile */
  .top-social-bar {
    height: 35px;
  }
  
  .social-info {
    gap: 15px;
  }
  
  .social-links {
    gap: 10px;
  }
  
  .social-links a {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
  }
  
  /* Navigation - Small Mobile */
  .navbar {
    top: 35px;
    height: 65px;
  }
  
  .navbar-nav {
    top: 100px;
    height: calc(100vh - 100px);
  }
  
  .brand-icon {
    width: 38px;
    height: 38px;
  }
  
  .brand-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .brand-main {
    font-size: 1.1rem;
  }
  
  .brand-sub {
    font-size: 0.6rem;
  }
  
  .hero {
    padding: 100px 20px 40px 20px;
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
  }

  .hero-content {
    padding: 0 20px;
    text-align: center;
  }

  .hero-subtitle {
    justify-content: center;
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    letter-spacing: -0.5px;
  }

  .hero-description {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 24px;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .hero-stat-label {
    font-size: 0.75rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .hero-visual {
    height: 350px;
    padding: 0 20px 20px 20px;
  }

  .hero-visual-inner {
    max-width: 100%;
  }

  .building-tower {
    width: 50px !important;
  }

  .building-tower:nth-child(1) { height: 180px !important; }
  .building-tower:nth-child(2) { height: 240px !important; }
  .building-tower:nth-child(3) { height: 200px !important; }
  .building-tower:nth-child(4) { height: 160px !important; }

  .hero-floating-element {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .floating-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .floating-label {
    font-size: 0.65rem;
  }

  .floating-value {
    font-size: 0.95rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   PROJECTS PAGE - REDESIGNED
   =================================== */

/* Projects Hero Section */
.projects-hero-redesigned {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 180px 0 100px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0f9ff 100%);
}

.projects-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(0, 168, 204, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
  0% { background-position: 0 0; }
  100% { background-position: 30px 30px; }
}

.hero-gradient-mesh {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(0, 168, 204, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(0, 168, 204, 0.06) 0%, transparent 50%);
  animation: meshPulse 8s ease-in-out infinite;
}

@keyframes meshPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.1), rgba(0, 168, 204, 0.05));
  backdrop-filter: blur(40px);
}

.hero-floating-shapes .shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation: floatShape 20s ease-in-out infinite;
}

.hero-floating-shapes .shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  right: -50px;
  animation: floatShape 25s ease-in-out infinite reverse;
}

.hero-floating-shapes .shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 10%;
  animation: floatShape 15s ease-in-out infinite;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.projects-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.projects-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #1a1a1a;
  margin: 24px 0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.projects-hero-description {
  font-size: 1.15rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(0, 168, 204, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.hero-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 168, 204, 0.15);
  border-color: rgba(0, 168, 204, 0.3);
}

.hero-stat-item .stat-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00a8cc, #00d4ff);
  border-radius: 12px;
  color: white;
  font-size: 1.3rem;
}

.hero-stat-item .stat-content {
  text-align: left;
}

.hero-stat-item .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  color: #1a1a1a;
  line-height: 1;
}

.hero-stat-item .stat-label {
  display: block;
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Featured Projects Section */
.featured-projects-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.section-header-modern {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 168, 204, 0.1);
  color: #00a8cc;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title-modern {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.featured-carousel {
  position: relative;
  margin-top: 40px;
}

.carousel-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0 40px;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.featured-project-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 350px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.featured-project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 168, 204, 0.2);
}

.featured-card-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-project-card:hover .featured-card-image img {
  transform: scale(1.1) rotate(2deg);
}

.featured-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-project-card:hover .featured-card-overlay {
  opacity: 1;
}

.featured-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #00a8cc, #00d4ff);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
}

.featured-card-status {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.featured-card-content {
  padding: 28px;
}

.featured-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.featured-card-description {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.featured-card-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #6b7280;
}

.meta-item i {
  color: #00a8cc;
}

.featured-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.card-tag {
  padding: 6px 12px;
  background: rgba(0, 168, 204, 0.08);
  color: #00a8cc;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.featured-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #00a8cc, #00d4ff);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.featured-card-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.featured-card-btn:hover::before {
  left: 100%;
}

.featured-card-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 168, 204, 0.4);
}

.carousel-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
  padding: 0 20px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid rgba(0, 168, 204, 0.2);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #00a8cc;
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: #00a8cc;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 168, 204, 0.3);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 168, 204, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.carousel-indicator.active {
  width: 32px;
  border-radius: 6px;
  background: #00a8cc;
}

/* All Projects Section */
.all-projects-section {
  padding: 80px 0 120px;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fcff 100%);
}

.projects-control-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}

.filter-section {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  flex: 1;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.filter-label i {
  color: #00a8cc;
}

.filter-buttons-modern {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn-modern {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #f8fcff;
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
  color: #6b7280;
}

.filter-btn-modern:hover {
  background: rgba(0, 168, 204, 0.08);
  color: #00a8cc;
  border-color: rgba(0, 168, 204, 0.2);
}

.filter-btn-modern.active {
  background: linear-gradient(135deg, #00a8cc, #00d4ff);
  color: white;
  border-color: #00a8cc;
  box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
}

.filter-icon {
  font-size: 1.1rem;
}

.filter-count {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  min-width: 28px;
  text-align: center;
}

.filter-btn-modern.active .filter-count {
  background: rgba(255, 255, 255, 0.25);
}

.control-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-box-modern {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-modern {
  width: 280px;
  padding: 12px 45px 12px 45px;
  border: 2px solid rgba(0, 168, 204, 0.15);
  border-radius: 12px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: white;
}

.search-input-modern:focus {
  outline: none;
  border-color: #00a8cc;
  box-shadow: 0 0 0 4px rgba(0, 168, 204, 0.1);
}

.search-icon {
  position: absolute;
  left: 16px;
  color: #00a8cc;
  font-size: 1rem;
  pointer-events: none;
}

.search-clear {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-clear:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #1a1a1a;
}

.sort-dropdown {
  position: relative;
}

.sort-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: white;
  border: 2px solid rgba(0, 168, 204, 0.15);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.sort-btn:hover {
  border-color: #00a8cc;
  background: rgba(0, 168, 204, 0.05);
}

.sort-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 8px;
  z-index: 100;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.sort-menu.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.sort-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #1a1a1a;
  text-align: left;
  transition: all 0.2s ease;
}

.sort-option:hover {
  background: rgba(0, 168, 204, 0.08);
  color: #00a8cc;
}

.sort-option.active {
  background: rgba(0, 168, 204, 0.12);
  color: #00a8cc;
  font-weight: 600;
}

.sort-option i {
  width: 20px;
  color: #00a8cc;
}

.view-switcher {
  display: flex;
  background: white;
  border: 2px solid rgba(0, 168, 204, 0.15);
  border-radius: 12px;
  padding: 4px;
}

.view-btn {
  padding: 10px 16px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #6b7280;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.view-btn:hover {
  color: #00a8cc;
  background: rgba(0, 168, 204, 0.08);
}

.view-btn.active {
  background: linear-gradient(135deg, #00a8cc, #00d4ff);
  color: white;
}

.projects-results-info {
  margin-bottom: 30px;
}

.results-text {
  font-size: 0.95rem;
  color: #6b7280;
}

.results-count {
  font-weight: 700;
  color: #00a8cc;
}

.results-filter {
  font-weight: 600;
  color: #1a1a1a;
}

/* Projects Grid */
.projects-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.projects-grid-modern.list-view {
  grid-template-columns: 1fr;
}

.projects-grid-modern.masonry-view {
  column-count: 3;
  column-gap: 30px;
  grid-template-columns: none;
}

.projects-grid-modern.masonry-view .project-card-modern {
  break-inside: avoid;
  margin-bottom: 30px;
}

.project-card-modern {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  animation: projectFadeIn 0.6s ease forwards;
}

@keyframes projectFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 168, 204, 0.2);
}

.project-card-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card-modern:hover .project-card-image-wrapper img {
  transform: scale(1.15) rotate(2deg);
}

.project-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card-modern:hover .project-image-overlay {
  opacity: 1;
}

.overlay-btn {
  padding: 12px 28px;
  background: white;
  color: #00a8cc;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.project-card-modern:hover .overlay-btn {
  transform: translateY(0);
}

.overlay-btn:hover {
  background: #00a8cc;
  color: white;
  transform: translateY(0) scale(1.05);
}

.project-category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #00a8cc, #00d4ff);
  color: white;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 168, 204, 0.4);
}

.project-status-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
}

.project-card-body {
  padding: 28px;
}

.project-card-title-link {
  text-decoration: none;
  color: inherit;
}

.project-card-title-modern {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.project-card-modern:hover .project-card-title-modern {
  color: #00a8cc;
}

.project-card-description-modern {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card-meta-modern {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.project-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #6b7280;
}

.project-meta-item i {
  color: #00a8cc;
}

.project-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-view-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(0, 168, 204, 0.1);
  color: #00a8cc;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.project-view-link:hover {
  background: #00a8cc;
  color: white;
  transform: translateX(5px);
}

/* List View Specific Styles */
.projects-grid-modern.list-view .project-card-modern {
  display: grid;
  grid-template-columns: 400px 1fr;
  height: auto;
}

.projects-grid-modern.list-view .project-card-image-wrapper {
  height: 100%;
  min-height: 300px;
}

.projects-grid-modern.list-view .project-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Load More Section */
.load-more-section {
  text-align: center;
  margin-top: 60px;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #00a8cc, #00d4ff);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 168, 204, 0.3);
}

.btn-load-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 168, 204, 0.4);
}

.btn-load-more i {
  transition: transform 0.3s ease;
}

.btn-load-more:hover i {
  transform: translateY(4px);
}

/* Empty State */
.empty-state-modern {
  text-align: center;
  padding: 80px 20px;
}

.empty-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 168, 204, 0.08);
  border-radius: 50%;
  font-size: 3rem;
  color: #00a8cc;
}

.empty-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.empty-description {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.btn-reset-filters {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #00a8cc;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-reset-filters:hover {
  background: #008fb0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 204, 0.3);
}

/* Loaders */
.projects-loader,
.carousel-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
}

.spinner-modern {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(0, 168, 204, 0.1);
  border-top-color: #00a8cc;
  border-radius: 50%;
  animation: spinnerRotate 1s linear infinite;
}

@keyframes spinnerRotate {
  to { transform: rotate(360deg); }
}

.loader-text {
  margin-top: 20px;
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

/* Responsive - Projects Page */
@media (max-width: 1024px) {
  .projects-hero-redesigned {
    padding: 150px 0 80px;
  }
  
  .projects-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  
  .hero-stats-bar {
    gap: 24px;
  }
  
  .hero-stat-item {
    padding: 16px 24px;
  }
  
  .featured-project-card {
    flex: 0 0 calc(50% - 15px);
    min-width: 300px;
  }
  
  .projects-control-bar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-section,
  .control-section {
    width: 100%;
  }
  
  .control-section {
    justify-content: space-between;
  }
  
  .search-input-modern {
    width: 100%;
    max-width: 300px;
  }
  
  .projects-grid-modern {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }
  
  .projects-grid-modern.masonry-view {
    column-count: 2;
  }
  
  .projects-grid-modern.list-view .project-card-modern {
    grid-template-columns: 1fr;
  }
  
  .projects-grid-modern.list-view .project-card-image-wrapper {
    height: 250px;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .projects-hero-redesigned {
    min-height: auto;
    padding: 130px 0 60px;
  }
  
  .projects-hero-title {
    font-size: 2rem;
  }
  
  .projects-hero-description {
    font-size: 1rem;
  }
  
  .hero-stats-bar {
    gap: 16px;
  }
  
  .hero-stat-item {
    padding: 12px 20px;
    gap: 12px;
  }
  
  .hero-stat-item .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .hero-stat-item .stat-number {
    font-size: 1.4rem;
  }
  
  .featured-project-card {
    flex: 0 0 100%;
    min-width: 280px;
  }
  
  .section-title-modern {
    font-size: 1.8rem;
  }
  
  .filter-buttons-modern {
    width: 100%;
  }
  
  .filter-btn-modern {
    flex: 1;
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.85rem;
  }
  
  .filter-text {
    display: none;
  }
  
  .control-section {
    flex-wrap: wrap;
  }
  
  .search-box-modern {
    width: 100%;
    order: 3;
  }
  
  .search-input-modern {
    width: 100%;
    max-width: 100%;
  }
  
  .projects-grid-modern {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .projects-grid-modern.masonry-view {
    column-count: 1;
  }
  
  .project-card-image-wrapper {
    height: 220px;
  }
  
  .project-card-body {
    padding: 20px;
  }
  
  .carousel-navigation {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-stats-bar {
    gap: 12px;
  }
  
  .hero-stat-item {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 8px;
    flex: 1;
    min-width: 0;
  }
  
  .hero-stat-item .stat-content {
    text-align: center;
  }
  
  .hero-stat-item .stat-number {
    font-size: 1.2rem;
  }
  
  .filter-label {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .filter-btn-modern {
    font-size: 0.8rem;
    padding: 8px 10px;
  }
  
  .filter-icon {
    font-size: 1rem;
  }
  
  .view-switcher {
    width: 100%;
    justify-content: space-around;
  }
  
  .sort-dropdown {
    width: 100%;
  }
  
  .sort-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================================
   CONTACT PAGE STYLES - ULTRA MODERN REDESIGN
   ========================================================================== */

/* Contact Hero Ultra */
.contact-hero-ultra {
  position: relative;
  padding: calc(var(--header-height) + 100px) 0 120px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fcff 0%, #ffffff 40%, #f0f9ff 100%);
}

/* Hero Background Complex */
.hero-bg-complex {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/* Floating Shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: floatComplex 25s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 168, 204, 0.4) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 134, 168, 0.3) 0%, transparent 70%);
  top: 50%;
  right: -150px;
  animation-delay: -8s;
}

.floating-shape:nth-child(3) {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 168, 204, 0.35) 0%, transparent 70%);
  bottom: -150px;
  left: 30%;
  animation-delay: -15s;
}

.floating-shape:nth-child(4) {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 150, 186, 0.3) 0%, transparent 70%);
  top: 30%;
  left: 50%;
  animation-delay: -20s;
}

@keyframes floatComplex {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(25px, 15px) scale(1.05);
  }
}

/* Gradient Mesh */
.gradient-mesh {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 168, 204, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 134, 168, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 168, 204, 0.04) 0%, transparent 50%);
  opacity: 0.8;
}

/* Animated Lines */
.animated-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.animated-lines .line {
  position: absolute;
  width: 2px;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 168, 204, 0.3) 50%, transparent 100%);
  animation: lineMove 15s linear infinite;
}

.animated-lines .line:nth-child(1) {
  left: 15%;
  animation-delay: 0s;
}

.animated-lines .line:nth-child(2) {
  left: 50%;
  animation-delay: -5s;
}

.animated-lines .line:nth-child(3) {
  left: 85%;
  animation-delay: -10s;
}

@keyframes lineMove {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(calc(100vh + 100%));
    opacity: 0;
  }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-main-column {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Breadcrumbs Ultra */
.breadcrumbs-ultra {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.icon-wrapper {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 168, 204, 0.1);
  border-radius: 8px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.breadcrumbs-ultra a:hover .icon-wrapper {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.breadcrumbs-ultra span {
  color: var(--text-dark);
  font-weight: 500;
}

/* Hero Badge Ultra */
.hero-badge-ultra {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: white;
  border: 2px solid rgba(0, 168, 204, 0.2);
  border-radius: 50px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 168, 204, 0.1);
}

.badge-icon-wrapper {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #0086a8);
  border-radius: 50%;
  color: white;
  position: relative;
  z-index: 1;
}

.badge-pulse {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  animation: pulseExpand 2s ease-out infinite;
}

@keyframes pulseExpand {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hero-badge-ultra span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* Hero Title Ultra */
.hero-title-ultra {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.title-line {
  display: block;
  animation: slideInLeft 0.6s ease-out both;
}

.title-line.delay-1 {
  animation-delay: 0.1s;
}

.title-line.delay-2 {
  animation-delay: 0.2s;
}

.title-line.delay-3 {
  animation-delay: 0.3s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gradient-text-animated {
  background: linear-gradient(135deg, var(--primary) 0%, #0086a8 50%, var(--primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

/* Hero Description */
.hero-description-ultra {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 600px;
}

/* Hero Stats Ultra */
.hero-stats-ultra {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  padding: 25px 0;
  border-top: 1px solid rgba(0, 168, 204, 0.1);
}

.stat-item-ultra {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon-ultra {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.1), rgba(0, 168, 204, 0.05));
  border-radius: 10px;
  color: var(--primary);
  font-size: 1.2rem;
}

.stat-info-ultra {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value-ultra {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Orbitron', sans-serif;
}

.stat-label-ultra {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 168, 204, 0.2);
}

/* Hero Contact Column */
.hero-contact-column {
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Contact Methods Card */
.contact-methods-card {
  position: relative;
  background: white;
  border-radius: 25px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 168, 204, 0.15) 0%, transparent 70%);
  animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.contact-methods-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.contact-method-item {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.contact-method-item:last-child {
  margin-bottom: 0;
}

.method-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  background: rgba(0, 168, 204, 0.03);
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.method-link:hover {
  background: rgba(0, 168, 204, 0.08);
  transform: translateX(5px);
}

.method-icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), #0086a8);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.method-link:hover .icon-bg {
  transform: scale(1.1) rotate(5deg);
}

.method-icon-wrapper i {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 1.2rem;
}

.icon-ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: 12px;
  animation: rippleEffect 2s ease-out infinite;
}

@keyframes rippleEffect {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.method-details {
  flex: 1;
}

.method-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.method-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.method-availability,
.method-info {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #10b981;
  font-weight: 500;
}

.method-availability i,
.method-info i {
  font-size: 0.7rem;
}

.method-arrow {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.method-link:hover .method-arrow {
  transform: translateX(5px);
}

/* Working Hours Badge */
.working-hours-badge {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.1), rgba(0, 168, 204, 0.05));
  border-radius: 12px;
  margin-top: 20px;
}

.hours-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  color: var(--primary);
  font-size: 1.1rem;
}

.hours-content {
  flex: 1;
}

.hours-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.hours-time {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  z-index: 1;
  animation: fadeIn 1s ease-out 1s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.scroll-icon {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(0, 168, 204, 0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-icon::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, 12px);
    opacity: 0.3;
  }
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 0;
  background: white;
}

.section-intro {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(0, 168, 204, 0.1);
  border: 1px solid rgba(0, 168, 204, 0.2);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.benefit-card {
  padding: 35px;
  background: white;
  border: 1px solid rgba(0, 168, 204, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #0086a8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 168, 204, 0.3);
}

.benefit-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.1), rgba(0, 168, 204, 0.05));
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  color: var(--primary);
  margin-bottom: 20px;
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.benefit-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Contact Content Section */
.contact-content-section {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
}

.quick-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 168, 204, 0.2);
}

.qc-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #0086a8 100%);
  border-radius: 15px;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.qc-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.qc-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.qc-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Contact Content Section */
.contact-content-section {
  padding: 100px 0;
  background: linear-gradient(180deg, white 0%, #f8fcff 100%);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-column-ultra {
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Form Ultra Card */
.form-ultra-card {
  background: white;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.form-ultra-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #0086a8, var(--primary));
  background-size: 200% auto;
  animation: gradientShift 3s linear infinite;
}

/* Form Ultra Header */
.form-ultra-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 30px;
}

.header-decoration {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.deco-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.deco-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.header-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.header-icon-mega {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-bg-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), #0086a8);
  border-radius: 20px;
  animation: rotatePulse 3s ease-in-out infinite;
}

@keyframes rotatePulse {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(5deg) scale(1.05);
  }
}

.header-icon-mega i {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  color: white;
}

.header-text-group {
  text-align: center;
}

.header-subtitle {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.header-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.header-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 500px;
}

/* Form Steps Indicator */
.form-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 168, 204, 0.1);
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.step-item.active {
  opacity: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 168, 204, 0.3);
  border-radius: 50%;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.step-item.active .step-number {
  background: linear-gradient(135deg, var(--primary), #0086a8);
  border-color: var(--primary);
  color: white;
  transform: scale(1.1);
}

.step-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.step-item.active .step-label {
  color: var(--primary);
  font-weight: 600;
}

.step-connector {
  width: 80px;
  height: 2px;
  background: rgba(0, 168, 204, 0.2);
  position: relative;
}

/* Form Step Containers */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInStep 0.5s ease-out;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Ultra Inputs */
.form-row-ultra {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.form-group-ultra {
  position: relative;
}

.form-label-ultra {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.label-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.1), rgba(0, 168, 204, 0.05));
  border-radius: 8px;
  color: var(--primary);
  font-size: 0.9rem;
}

.required-mark {
  color: #ef4444;
  font-size: 1.1rem;
}

.input-wrapper-ultra {
  position: relative;
}

.form-input-ultra {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid rgba(0, 168, 204, 0.15);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--text-dark);
  background: rgba(0, 168, 204, 0.02);
  transition: all 0.3s ease;
  outline: none;
}

.form-input-ultra:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 168, 204, 0.1);
}

.form-input-ultra.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.form-input-ultra.success {
  border-color: #10b981;
}

.input-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #0086a8);
  transition: width 0.3s ease;
}

.form-input-ultra:focus + .input-underline {
  width: 100%;
}

/* Select Ultra */
.select-wrapper-ultra {
  position: relative;
}

.form-select-ultra {
  width: 100%;
  padding: 15px 18px;
  padding-right: 45px;
  border: 2px solid rgba(0, 168, 204, 0.15);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--text-dark);
  background: rgba(0, 168, 204, 0.02);
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.form-select-ultra:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 168, 204, 0.1);
}

.select-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  pointer-events: none;
  transition: transform 0.3s ease;
}

.form-select-ultra:focus + .select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* Textarea Ultra */
.textarea-wrapper-ultra {
  position: relative;
}

.form-textarea-ultra {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid rgba(0, 168, 204, 0.15);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--text-dark);
  background: rgba(0, 168, 204, 0.02);
  transition: all 0.3s ease;
  outline: none;
  resize: vertical;
  font-family: inherit;
  min-height: 150px;
}

.form-textarea-ultra:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 168, 204, 0.1);
}

.textarea-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #0086a8);
  transition: width 0.3s ease;
}

.form-textarea-ultra:focus + .textarea-underline {
  width: 100%;
}

.char-counter-ultra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.char-min {
  color: rgba(0, 168, 204, 0.7);
}

/* File Upload Ultra */
.file-upload-ultra {
  position: relative;
}

.file-input-ultra {
  display: none;
}

.file-upload-label-ultra {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 35px;
  border: 2px dashed rgba(0, 168, 204, 0.3);
  border-radius: 15px;
  background: rgba(0, 168, 204, 0.02);
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload-label-ultra:hover {
  border-color: var(--primary);
  background: rgba(0, 168, 204, 0.05);
}

.file-upload-label-ultra.drag-active {
  border-color: var(--primary);
  background: rgba(0, 168, 204, 0.1);
  transform: scale(1.02);
}

.upload-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.15), rgba(0, 168, 204, 0.05));
  border-radius: 15px;
  color: var(--primary);
  font-size: 1.8rem;
  flex-shrink: 0;
}

.upload-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.upload-main-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

.upload-sub-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* File List Ultra */
.file-list-ultra {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.file-item-ultra {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(0, 168, 204, 0.03);
  border: 1px solid rgba(0, 168, 204, 0.1);
  border-radius: 12px;
  animation: slideInFile 0.3s ease-out;
}

@keyframes slideInFile {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.file-item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #0086a8);
  border-radius: 10px;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.file-item-info-ultra {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.file-name-ultra {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.file-size-ultra {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.file-remove-ultra {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.1);
  border: none;
  border-radius: 8px;
  color: #ef4444;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-remove-ultra:hover {
  background: #ef4444;
  color: white;
}

/* Privacy Consent Ultra */
.privacy-consent-ultra {
  margin: 30px 0;
}

.checkbox-ultra {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-ultra input[type="checkbox"] {
  display: none;
}

.checkbox-box {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid rgba(0, 168, 204, 0.3);
  border-radius: 6px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.checkbox-checkmark {
  color: white;
  font-size: 0.8rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.checkbox-ultra input[type="checkbox"]:checked + .checkbox-box {
  background: linear-gradient(135deg, var(--primary), #0086a8);
  border-color: var(--primary);
}

.checkbox-ultra input[type="checkbox"]:checked + .checkbox-box .checkbox-checkmark {
  opacity: 1;
  transform: scale(1);
}

.checkbox-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.privacy-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: #0086a8;
  text-decoration: underline;
}

/* Form Navigation Ultra */
.form-navigation-ultra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 168, 204, 0.1);
}

.btn-prev-ultra,
.btn-next-ultra,
.btn-submit-ultra {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-prev-ultra {
  background: rgba(0, 168, 204, 0.1);
  color: var(--primary);
}

.btn-prev-ultra:hover {
  background: rgba(0, 168, 204, 0.2);
  transform: translateX(-5px);
}

.btn-next-ultra,
.btn-submit-ultra {
  background: linear-gradient(135deg, var(--primary), #0086a8);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
  margin-left: auto;
}

.btn-next-ultra:hover,
.btn-submit-ultra:hover {
  box-shadow: 0 6px 25px rgba(0, 168, 204, 0.4);
  transform: translateY(-2px);
}

.submit-text,
.submit-loader {
  display: flex;
  align-items: center;
  gap: 10px;
}

.submit-loader {
  display: none;
}

.btn-submit-ultra.loading .submit-text {
  display: none;
}

.btn-submit-ultra.loading .submit-loader {
  display: flex;
}

.btn-submit-ultra:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form Success Ultra */
.form-success-ultra {
  display: none;
  padding: 40px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.form-success-ultra.active {
  display: block;
  animation: successBounce 0.6s ease-out;
}

@keyframes successBounce {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.success-animation {
  margin-bottom: 20px;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  position: relative;
}

.check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #10b981;
}

.icon-line {
  height: 5px;
  background-color: #10b981;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}

.line-tip {
  top: 43px;
  left: 17px;
  width: 25px;
  transform: rotate(45deg);
  animation: checkTip 0.75s ease-in-out;
}

@keyframes checkTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 17px;
    top: 43px;
  }
}

.line-long {
  top: 38px;
  right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation: checkLong 0.75s ease-in-out;
}

@keyframes checkLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}

.icon-circle {
  top: -4px;
  left: -4px;
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 4px solid rgba(16, 185, 129, 0.3);
}

.icon-fix {
  top: 8px;
  width: 5px;
  left: 26px;
  z-index: 1;
  height: 85px;
  position: absolute;
  transform: rotate(-45deg);
  background-color: white;
}

.form-success-ultra h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 10px;
}

.form-success-ultra p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.success-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border: none;
  border-radius: 50%;
  color: #10b981;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-close-btn:hover {
  background: #10b981;
  color: white;
}

/* Form Errors */
.form-error {
  display: block;
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 6px;
  padding-left: 4px;
  min-height: 20px;
}

/* Contact Info Sidebar Ultra */
.contact-info-sidebar-ultra {
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

/* Info Card Ultra */
.info-card-ultra {
  background: white;
  border-radius: 25px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 168, 204, 0.1);
}

.info-card-ultra:hover {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
  border-color: rgba(0, 168, 204, 0.3);
}

.card-header-ultra {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 168, 204, 0.1);
}

.header-icon-ultra {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #0086a8);
  border-radius: 12px;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.card-header-ultra h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.card-body-ultra {
  position: relative;
}

/* Location Card */
.location-card .address-text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.card-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(0, 168, 204, 0.1);
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card-action-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateX(5px);
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.card-action-btn:hover .arrow-icon {
  transform: translateX(3px);
}

/* Contact Methods */
.contact-item-ultra {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(0, 168, 204, 0.03);
  border-radius: 12px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact-item-ultra:hover {
  background: rgba(0, 168, 204, 0.08);
  transform: translateX(5px);
}

.contact-item-ultra:last-child {
  margin-bottom: 0;
}

.contact-icon-ultra {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #0086a8);
  border-radius: 10px;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-details-ultra {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label-ultra {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.contact-value-ultra {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value-ultra:hover {
  color: var(--primary);
}

/* Business Hours */
.hours-list-ultra {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-item-ultra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: rgba(0, 168, 204, 0.03);
  border-radius: 10px;
}

.hours-item-ultra.closed {
  opacity: 0.5;
}

.day-ultra {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.time-ultra {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Social Card Ultra */
.social-card-ultra .social-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.social-grid-ultra {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.social-link-ultra {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link-ultra::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.social-link-ultra i {
  position: relative;
  z-index: 1;
}

.social-link-ultra:hover::before {
  opacity: 1;
}

.social-link-ultra:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-link-ultra.linkedin {
  color: #0077b5;
}

.social-link-ultra.instagram {
  color: #e4405f;
}

.social-link-ultra.facebook {
  color: #1877f2;
}

.social-link-ultra.twitter {
  color: #1da1f2;
}

/* Map Section */
.map-section-modern {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fcff 0%, white 100%);
}

.map-container-modern {
  position: relative;
  height: 500px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.map-container-modern iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: white;
  border-radius: 20px;
  padding: 30px;
  max-width: 400px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.map-overlay-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.map-overlay-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.map-directions-btn:hover {
  background: #0086a8;
  transform: translateX(5px);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
}

/* FAQ Section */
.faq-section-modern {
  padding: 80px 0;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.faq-card {
  background: white;
  border: 1px solid rgba(0, 168, 204, 0.1);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: rgba(0, 168, 204, 0.3);
}

.faq-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.1) 0%, rgba(0, 168, 204, 0.05) 100%);
  border-radius: 15px;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.faq-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.4;
}

.faq-card-content {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* FAQ CTA Banner */
.faq-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, #0086a8 100%);
  border-radius: 25px;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.faq-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.faq-cta-content h3 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 1.1rem;
}

.faq-cta-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.btn-modern-primary,
.btn-modern-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-modern-primary {
  background: white;
  color: var(--primary);
}

.btn-modern-primary:hover {
  background: #f8fcff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-modern-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-modern-outline:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
}

/* Scroll Reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .hero-title-ultra {
    font-size: 3.5rem;
  }
  
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info-sidebar-ultra {
    order: -1;
  }
}

@media (max-width: 992px) {
  .contact-hero-ultra {
    padding: calc(var(--header-height) + 60px) 0 80px;
  }
  
  .hero-title-ultra {
    font-size: 3rem;
  }
  
  .hero-stats-ultra {
    flex-wrap: wrap;
  }
  
  .form-ultra-card {
    padding: 40px 30px;
  }
  
  .form-steps-indicator {
    gap: 10px;
  }
  
  .step-connector {
    width: 40px;
  }
  
  .faq-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .hero-title-ultra {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row-ultra {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-steps-indicator {
    padding: 20px 0;
  }
  
  .step-label {
    font-size: 0.75rem;
  }
  
  .social-grid-ultra {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .map-overlay-card {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-modern-primary,
  .btn-modern-outline {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-title-ultra {
    font-size: 2rem;
  }
  
  .hero-badge-ultra {
    padding: 10px 20px;
  }
  
  .form-ultra-card {
    padding: 30px 20px;
  }
  
  .header-title {
    font-size: 1.8rem;
  }
  
  .form-navigation-ultra {
    flex-direction: column;
  }
  
  .btn-prev-ultra,
  .btn-next-ultra,
  .btn-submit-ultra {
    width: 100%;
    justify-content: center;
  }
  
  .btn-next-ultra,
  .btn-submit-ultra {
    margin-left: 0;
  }
  
  .info-card-ultra {
    padding: 25px 20px;
  }
}

.form-row-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.form-group-modern {
  display: flex;
  flex-direction: column;
}

.form-group-modern:not(.form-row-modern > *) {
  margin-bottom: 25px;
}

.form-label-modern {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.form-label-modern i {
  color: var(--primary);
  font-size: 0.9rem;
}

.required-star {
  color: #dc3545;
  font-weight: 600;
}

.form-input-modern,
.form-select-modern,
.form-textarea-modern {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: white;
  transition: all 0.3s ease;
}

.form-input-modern:focus,
.form-select-modern:focus,
.form-textarea-modern:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 168, 204, 0.1);
}

.form-input-modern.error,
.form-select-modern.error,
.form-textarea-modern.error {
  border-color: #dc3545;
  background: #fff5f5;
}

.form-input-modern.error:focus,
.form-select-modern.error:focus,
.form-textarea-modern.error:focus {
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.form-input-modern.success,
.form-select-modern.success,
.form-textarea-modern.success {
  border-color: #28a745;
  background: #f0fff4;
}

.form-textarea-modern {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  display: block;
  margin-top: 6px;
  color: #dc3545;
  font-size: 0.85rem;
  font-weight: 500;
}

.char-counter {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: right;
}

/* File Upload */
.file-upload-wrapper {
  position: relative;
}

.file-input-modern {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  border: 2px dashed #d0d0d0;
  border-radius: 12px;
  background: #f8fcff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload-label:hover {
  border-color: var(--primary);
  background: rgba(0, 168, 204, 0.05);
}

.file-upload-label.drag-active {
  border-color: var(--primary);
  background: rgba(0, 168, 204, 0.1);
  transform: scale(1.02);
}

.file-upload-label i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.file-upload-label span {
  display: block;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 5px;
}

.file-upload-label small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.file-list {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: #f8fcff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.file-item-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.file-item-info i {
  font-size: 1.5rem;
  color: var(--primary);
}

.file-item-details {
  display: flex;
  flex-direction: column;
}

.file-name {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.file-size {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.file-remove {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dc3545;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-remove:hover {
  background: #c82333;
  transform: scale(1.1);
}

/* Checkbox */
.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid #d0d0d0;
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.7rem;
}

.checkbox-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.text-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.text-link:hover {
  text-decoration: underline;
}

/* Submit Button */
.submit-btn-modern {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, #0086a8 100%);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn-modern:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 168, 204, 0.3);
}

.submit-btn-modern:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-content,
.btn-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
}

.submit-btn-modern.loading .btn-content {
  opacity: 0;
  visibility: hidden;
}

.submit-btn-modern.loading .btn-loader {
  opacity: 1;
  visibility: visible;
}

/* Map Section */
.map-section-modern {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.map-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.map-iframe:hover {
  filter: grayscale(0%);
}

.map-overlay-card {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  max-width: 350px;
  z-index: 10;
}

.map-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #0086a8 100%);
  border-radius: 15px;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.map-overlay-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.map-overlay-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.map-directions-btn:hover {
  background: #0086a8;
  transform: translateX(5px);
  color: white;
}

/* FAQ Section */
.faq-section-modern {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
}

.section-header-modern {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 168, 204, 0.1);
  border: 1px solid rgba(0, 168, 204, 0.2);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.section-title-modern {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-description-modern {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.faq-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.faq-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.1) 0%, rgba(0, 168, 204, 0.05) 100%);
  border-radius: 15px;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.faq-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.4;
}

.faq-card-content {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* FAQ CTA Banner */
.faq-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 50px;
  background: linear-gradient(135deg, var(--primary) 0%, #0086a8 100%);
  border-radius: 25px;
  gap: 30px;
}

.faq-cta-content h3 {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 1.05rem;
}

.faq-cta-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.btn-modern-primary,
.btn-modern-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-modern-primary {
  background: white;
  color: var(--primary);
  border: 2px solid white;
}

.btn-modern-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  color: var(--primary);
}

.btn-modern-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-modern-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

/* Scroll Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-main-grid {
    grid-template-columns: 350px 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info-column {
    order: 2;
  }
  
  .contact-form-column {
    order: 1;
  }
  
  .quick-contact-cards {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-cta-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .faq-cta-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .btn-modern-primary,
  .btn-modern-outline {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contact-hero-redesigned {
    padding: calc(var(--header-height) + 50px) 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .form-row-modern {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-card-header {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .contact-form-modern {
    padding: 30px 20px;
  }
  
  .social-buttons-grid {
    grid-template-columns: 1fr;
  }
  
  .map-overlay-card {
    position: static;
    margin: 20px;
  }
  
  .section-title-modern {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .quick-contact-card {
    flex-direction: column;
    text-align: center;
  }
  
  .qc-content {
    text-align: center;
  }
  
  .info-card-modern {
    padding: 20px;
  }
  
  .faq-cta-banner {
    padding: 30px 20px;
  }
  
  .submit-btn-modern {
    font-size: 1rem;
    padding: 14px 28px;
  }
}

/* ============================================================================
   PROJECT DETAIL PAGE STYLES - REDESIGNED
   ========================================================================== */

/* Project Detail Hero */
.project-detail-hero {
  position: relative;
  padding: calc(var(--header-height) + 80px) 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
}

.hero-bg-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-orb-1, .hero-orb-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 168, 204, 0.3) 0%, transparent 70%);
  top: -200px;
  left: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 168, 204, 0.2) 0%, transparent 70%);
  bottom: -150px;
  right: -80px;
  animation-delay: -10s;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 168, 204, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 204, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.breadcrumbs-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.breadcrumb-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-link:hover {
  color: var(--primary);
}

.breadcrumb-separator {
  color: var(--text-muted);
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--text-dark);
  font-weight: 500;
}

.hero-content-grid {
  position: relative;
  z-index: 1;
}

.hero-main-content {
  margin-bottom: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 168, 204, 0.1);
  border: 1px solid rgba(0, 168, 204, 0.2);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 800px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.status-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, #0086a8 100%);
  color: white;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
}

.quick-info-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quick-info-item i {
  font-size: 2rem;
  color: var(--primary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 168, 204, 0.1);
  border-radius: 12px;
}

.quick-info-content {
  display: flex;
  flex-direction: column;
}

.quick-info-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quick-info-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Featured Image Section */
.featured-image-section {
  padding: 60px 0;
  background: #f8fcff;
}

.featured-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.featured-image-wrapper:hover .featured-image {
  transform: scale(1.05);
}

.fullscreen-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50px;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fullscreen-btn:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.fullscreen-btn i {
  font-size: 1.1rem;
}

/* Project Content Section */
.project-content-section {
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}

.main-content-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.content-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.content-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.content-card-header i {
  font-size: 1.5rem;
  color: var(--primary);
}

.content-card-header h2,
.content-card-header h3 {
  margin: 0;
  color: var(--text-dark);
  font-weight: 600;
}

.content-card-body {
  color: var(--text-muted);
  line-height: 1.8;
}

.overview-text {
  font-size: 1.05rem;
  line-height: 1.9;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: #f8fcff;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(0, 168, 204, 0.08);
  transform: translateX(5px);
}

.feature-icon {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  border-radius: 50%;
}

.feature-icon i {
  font-size: 0.9rem;
}

.feature-text {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 168, 204, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay i {
  font-size: 2.5rem;
  color: white;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Sidebar */
.sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.sidebar-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 25px;
  background: linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
  border-bottom: 2px solid #f0f0f0;
}

.sidebar-card-header i {
  font-size: 1.3rem;
  color: var(--primary);
}

.sidebar-card-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.sidebar-card-body {
  padding: 25px;
}

/* Info Items */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
  border-bottom: none;
}

.info-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 168, 204, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.info-icon i {
  color: var(--primary);
  font-size: 1.1rem;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.info-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.status-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

.status-completed {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.status-ongoing {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.status-concept {
  background: rgba(251, 191, 36, 0.1);
  color: #d97706;
}

/* Share Buttons */
.share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  flex: 1;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: white;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.share-facebook:hover {
  background: #1877f2;
  color: white;
  border-color: #1877f2;
}

.share-twitter:hover {
  background: #1da1f2;
  color: white;
  border-color: #1da1f2;
}

.share-linkedin:hover {
  background: #0a66c2;
  color: white;
  border-color: #0a66c2;
}

.share-pinterest:hover {
  background: #e60023;
  color: white;
  border-color: #e60023;
}

.share-email:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* CTA Card */
.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #0086a8 100%);
  overflow: hidden;
}

.cta-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-orb-1, .cta-orb-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.cta-orb-1 {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  top: -80px;
  right: -60px;
}

.cta-orb-2 {
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.08);
  bottom: -50px;
  left: -40px;
}

.cta-card-content {
  position: relative;
  z-index: 1;
  padding: 35px;
  text-align: center;
}

.cta-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.cta-icon i {
  font-size: 2.5rem;
  color: white;
}

.cta-card-content h4 {
  color: white;
  margin-bottom: 12px;
  font-weight: 600;
}

.cta-card-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  gap: 15px;
}

/* Related Projects Section */
.related-projects-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 168, 204, 0.1);
  border: 1px solid rgba(0, 168, 204, 0.2);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.related-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.related-project-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.related-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.related-project-card:hover .related-card-image img {
  transform: scale(1.1);
}

.related-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 168, 204, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.related-project-card:hover .related-card-overlay {
  opacity: 1;
}

.view-project-btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--primary);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-project-btn:hover {
  transform: scale(1.1) rotate(45deg);
}

.view-project-btn i {
  font-size: 1.5rem;
}

.related-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.related-card-content {
  padding: 25px;
}

.related-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.related-card-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.related-card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.related-card-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Fullscreen Modal */
.fullscreen-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.fullscreen-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-download {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.modal-download:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Loading Spinner */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}

.spinner-modern {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0, 168, 204, 0.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-spinner p {
  margin-top: 20px;
  color: var(--text-muted);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}

.empty-state i {
  font-size: 4rem;
  color: var(--text-muted);
  opacity: 0.5;
  margin-bottom: 20px;
}

.empty-state p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Error State */
.error-state-section {
  padding: 120px 0;
  text-align: center;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
}

.error-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 50%;
}

.error-icon i {
  font-size: 4rem;
  color: #ef4444;
}

.error-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.error-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-modern.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #0086a8 100%);
  color: white;
  border: none;
}

.btn-modern.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 168, 204, 0.3);
}

.btn-modern.btn-outline {
  background: white;
  color: var(--text-dark);
  border: 2px solid #e0e0e0;
}

.btn-modern.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Scroll Reveal Animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .sidebar-col {
    order: 2;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .quick-info-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .related-projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .project-detail-hero {
    padding: calc(var(--header-height) + 50px) 0 50px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .quick-info-bar {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .share-buttons {
    justify-content: center;
  }
  
  .related-projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .modal-close,
  .modal-download {
    top: 15px;
    bottom: auto;
  }
  
  .modal-download {
    left: 15px;
    right: auto;
  }
  
  .modal-close {
    right: 15px;
  }
}

@media (max-width: 576px) {
  .breadcrumbs-modern {
    font-size: 0.8rem;
    gap: 8px;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 15px;
  }
  
  .content-card,
  .sidebar-card-body {
    padding: 20px;
  }
  
  .error-actions {
    flex-direction: column;
  }
  
  .btn-modern {
    width: 100%;
    justify-content: center;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn {
    display: none;
  }
}
