* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Ensure page starts at top */
html, body {
  scroll-padding-top: 0;
  overscroll-behavior: none;
}

body {
  position: relative;
  top: 0;
  scroll-snap-type: y proximity;
}

*:focus {
  outline: 2px solid rgba(96, 165, 250, 0.6);
  outline-offset: 2px;
  border-radius: 4px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 2px solid rgba(96, 165, 250, 0.8);
  outline-offset: 2px;
  border-radius: 4px;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: 
    linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #1a1f2e 50%, #0f172a 100%),
    radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(96, 165, 250, 0.02) 0%, transparent 50%);
  background-attachment: fixed;
  color: #e2e8f0;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* CSS Fallback Animation for low-end devices */
@keyframes cssGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
  min-height: 100vh;
}

/* Parallax Background Elements */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle 300px at 10% 20%, rgba(96, 165, 250, 0.03) 0%, transparent 70%),
    radial-gradient(circle 400px at 90% 80%, rgba(59, 130, 246, 0.025) 0%, transparent 70%),
    radial-gradient(circle 200px at 70% 30%, rgba(37, 99, 235, 0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: -2;
  animation: parallaxFloat 60s ease-in-out infinite;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(71, 85, 105, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar:hover {
  background: rgba(15, 23, 42, 0.98);
  border-bottom-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-icon {
  width: 100%;
  height: 100%;
  color: #60a5fa;
  transition: all 0.3s ease;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-main {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: -0.3px;
  line-height: 1;
}

.logo-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  line-height: 1;
}

.logo:hover {
  background: rgba(96, 165, 250, 0.1);
  transform: translateY(-1px);
}

.logo:hover .brand-icon {
  color: #93c5fd;
  transform: scale(1.1);
}

.logo:hover .logo-main {
  color: #ffffff;
}

.logo:hover .logo-tagline {
  color: #94a3b8;
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-links a:hover {
  color: #f1f5f9;
  background: rgba(96, 165, 250, 0.1);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(71, 85, 105, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 2px 8px;
}

.dropdown-menu a {
  display: block;
  color: #94a3b8;
  padding: 8px 12px;
  border-radius: 4px;
  margin: 1px 0;
  transition: all 0.2s ease;
  font-size: 13px;
}

.dropdown-menu a:hover {
  background: rgba(96, 165, 250, 0.1);
  color: #f1f5f9;
  text-decoration: none;
}

.cta-button {
  font-family: 'DM Sans', sans-serif;
  background: #3b82f6;
  color: #ffffff !important;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-button:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

main {
  min-height: calc(100vh - 200px);
}

/* Container System */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Spacing System */
section {
  position: relative;
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

section .container,
section .container-narrow,
section .container-wide {
  position: relative;
  z-index: 1;
}

.hero {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 140px 40px;
}

section:nth-child(even) {
  position: relative;
}

/* Enhanced Section Dividers with Parallax Effect */
section:nth-child(even)::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -100vw;
  width: 200vw;
  height: 160px;
  background: 
    radial-gradient(ellipse 160% 60% at 25% 0%, rgba(96, 165, 250, 0.08) 0%, rgba(59, 130, 246, 0.04) 50%, transparent 100%),
    radial-gradient(ellipse 140% 50% at 75% 0%, rgba(37, 99, 235, 0.06) 0%, rgba(30, 58, 138, 0.03) 60%, transparent 100%),
    radial-gradient(ellipse 120% 40% at 50% 0%, rgba(139, 92, 246, 0.04) 0%, transparent 70%),
    linear-gradient(90deg, transparent 0%, rgba(96, 165, 250, 0.02) 50%, transparent 100%);
  clip-path: ellipse(100% 70% at 50% 0%);
  pointer-events: none;
  z-index: -1;
  animation: sectionGlow 30s ease-in-out infinite;
}

/* Elegant Wave Dividers */
section:nth-child(odd):not(.hero)::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.1), transparent);
  clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: -1;
}

/* Section Headers with Icons */
section h2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

section h2::before {
  content: '';
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #60a5fa, transparent);
  border-radius: 1px;
}

section h2::after {
  content: '';
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #60a5fa, transparent);
  border-radius: 1px;
}

@keyframes sectionGlow {
  0%, 100% { 
    opacity: 0.6;
    transform: translateX(0) scale(1);
  }
  33% { 
    opacity: 0.8;
    transform: translateX(20px) scale(1.02);
  }
  66% { 
    opacity: 0.9;
    transform: translateX(-15px) scale(0.98);
  }
}

section:nth-child(odd) {
  position: relative;
}

/* Keep existing bottom glow but enhance it */
section:nth-child(odd):not(.hero)::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -100vw;
  width: 200vw;
  height: 120px;
  background: 
    radial-gradient(ellipse 120% 40% at 80% 100%, rgba(59, 130, 246, 0.04) 0%, transparent 80%),
    radial-gradient(ellipse 100% 30% at 20% 100%, rgba(96, 165, 250, 0.025) 0%, transparent 70%);
  clip-path: ellipse(100% 50% at 50% 100%);
  pointer-events: none;
  z-index: -1;
  animation: sectionGlowReverse 35s ease-in-out infinite;
}

@keyframes parallaxFloat {
  0%, 100% { 
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    opacity: 0.8;
  }
  25% { 
    transform: translate3d(20px, -30px, 0) rotate(1deg) scale(1.02);
    opacity: 0.9;
  }
  50% { 
    transform: translate3d(-15px, -60px, 0) rotate(-0.5deg) scale(0.98);
    opacity: 1;
  }
  75% { 
    transform: translate3d(-25px, -30px, 0) rotate(0.8deg) scale(1.01);
    opacity: 0.9;
  }
}

@keyframes sectionGlowReverse {
  0%, 100% { 
    opacity: 0.5;
    transform: translateX(0) scale(1);
  }
  50% { 
    opacity: 0.7;
    transform: translateX(-30px) scale(1.01);
  }
}

/* Typography Scale System */
h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1.5px;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  line-height: 1.2;
}

h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #e2e8f0;
  letter-spacing: -0.2px;
  line-height: 1.4;
}

p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #cbd5e1;
}

.text-large {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
}

.text-small {
  font-size: 15px;
  line-height: 1.5;
}

.text-xs {
  font-size: 14px;
  line-height: 1.4;
}

.hero {
  background: 
    linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.99) 30%, rgba(25, 35, 50, 0.98) 70%, rgba(51, 65, 85, 0.96) 100%),
    radial-gradient(ellipse 100% 60% at 20% 80%, rgba(59, 130, 246, 0.12) 0%, rgba(37, 99, 235, 0.08) 40%, transparent 75%),
    radial-gradient(ellipse 80% 50% at 80% 20%, rgba(96, 165, 250, 0.08) 0%, rgba(59, 130, 246, 0.04) 50%, transparent 70%),
    radial-gradient(ellipse 120% 80% at 50% 100%, rgba(30, 58, 138, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0a0f1c 0%, #1a202c 40%, #1e293b 100%);
  position: relative;
  color: #f1f5f9;
  padding: 140px 40px;
  text-align: center;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 0 60px rgba(96, 165, 250, 0.02);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle 800px at 25% 15%, rgba(37, 99, 235, 0.06) 0%, rgba(59, 130, 246, 0.03) 50%, transparent 75%),
    radial-gradient(circle 600px at 75% 85%, rgba(96, 165, 250, 0.05) 0%, rgba(59, 130, 246, 0.02) 60%, transparent 80%),
    radial-gradient(circle 400px at 50% 50%, rgba(30, 58, 138, 0.04) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 25s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { 
    opacity: 0.7; 
    transform: scale(1) rotate(0deg); 
  }
  25% { 
    opacity: 0.9; 
    transform: scale(1.02) rotate(0.5deg); 
  }
  50% { 
    opacity: 1; 
    transform: scale(1.04) rotate(0deg); 
  }
  75% { 
    opacity: 0.8; 
    transform: scale(1.01) rotate(-0.3deg); 
  }
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.9); }
}

.hero h1 {
  font-family: 'DM Sans', sans-serif;
  color: #ffffff;
  font-size: 64px;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -2px;
  position: relative;
  z-index: 2;
  line-height: 1.05;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.title-main {
  color: #ffffff !important;
  font-size: 1em;
  font-weight: 800;
  margin-bottom: 8px;
  display: block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

.title-sub {
  color: #ffffff !important;
  font-size: 0.75em;
  font-weight: 600;
  display: block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

.hero p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 50%, #94a3b8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.hero .cta-button {
  position: relative;
  z-index: 2;
}

/* Enhanced Hero Section with Visual Elements */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floating-shape {
  position: absolute;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 15%;
  animation: float1 8s ease-in-out infinite;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  animation: float2 10s ease-in-out infinite;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 25%;
  animation: float3 6s ease-in-out infinite;
}

.floating-icon {
  position: absolute;
  font-size: 32px;
  opacity: 0.6;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.icon-1 {
  top: 25%;
  left: 20%;
  animation: iconFloat1 7s ease-in-out infinite;
}

.icon-2 {
  top: 70%;
  right: 30%;
  animation: iconFloat2 9s ease-in-out infinite;
}

.icon-3 {
  bottom: 30%;
  left: 15%;
  animation: iconFloat3 11s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(-3deg); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(8deg); }
}

@keyframes iconFloat1 {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-10px) scale(1.1); }
}

@keyframes iconFloat2 {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-15px) scale(1.15); }
}

@keyframes iconFloat3 {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-12px) scale(1.05); }
}

/* Hero Content Structure */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 24px;
  backdrop-filter: blur(15px);
  animation: badgeGlow 3s ease-in-out infinite;
}

.badge-icon {
  font-size: 16px;
}

.badge-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #60a5fa;
  letter-spacing: 0.3px;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 4px 12px rgba(96, 165, 250, 0.2); }
  50% { box-shadow: 0 6px 20px rgba(96, 165, 250, 0.4); }
}

/* Enhanced Hero Typography */
.title-main {
  display: block;
  font-size: clamp(52px, 8vw, 72px);
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  animation: titleShine 4s ease-in-out infinite;
}

.title-sub {
  display: block;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: #cbd5e1;
  opacity: 0.9;
}

@keyframes titleShine {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: #e2e8f0;
  margin: 32px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description strong {
  color: #60a5fa;
  font-weight: 600;
}

/* Hero Feature Badges */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 40px;
  flex-wrap: wrap;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 20px;
  padding: 8px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #cbd5e1;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-badge:hover {
  background: rgba(96, 165, 250, 0.15);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 14px;
}

/* Hero CTA Section */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-secondary {
  background: transparent;
  border: 2px solid rgba(96, 165, 250, 0.4);
  color: #60a5fa;
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.6);
  color: #93c5fd;
}

/* Modern Grid System */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.services-grid, .advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 64px;
  position: relative;
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .grid-auto { 
    grid-template-columns: 1fr; 
    gap: 24px; 
  }
  .services-grid, .advantage-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }
}


.services-grid::before, .advantage-grid::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -50%;
  width: 200%;
  height: 60px;
  background: radial-gradient(ellipse 100% 50% at 50% 0%, rgba(0, 212, 255, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

/* Modern Card System with Enhanced Depth */
.card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(25, 35, 50, 0.9) 100%);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.2),
    0 4px 10px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: fit-content;
  backdrop-filter: blur(20px);
}

.service-card, .advantage-card {
  background: 
    linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.9) 50%, rgba(25, 35, 50, 0.95) 100%),
    radial-gradient(ellipse at top right, rgba(96, 165, 250, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse at bottom left, rgba(59, 130, 246, 0.04) 0%, transparent 60%);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.25),
    0 4px 10px rgba(96, 165, 250, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 0 20px rgba(96, 165, 250, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: fit-content;
  backdrop-filter: blur(20px);
  animation: cardFadeIn 0.8s ease-out;
  animation-fill-mode: both;
}

.service-card:nth-child(1), .advantage-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2), .advantage-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3), .advantage-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4), .advantage-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5), .advantage-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6), .advantage-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.card-compact {
  padding: 24px;
}

.card-large {
  padding: 48px;
}

.service-card::before, .advantage-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 50%;
}

.service-card:hover, .advantage-card:hover, .card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 12px 24px rgba(0,0,0,0.15),
    0 4px 8px rgba(0,0,0,0.1);
  border-color: rgba(96, 165, 250, 0.4);
}

.service-card:hover::before, .advantage-card:hover::before {
  opacity: 1;
}

/* Service Icon System */
.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

/* Advantage Icon System */
.advantage-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 12px;
  color: #60a5fa;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.advantage-icon svg {
  width: 24px;
  height: 24px;
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.3) 0%, rgba(59, 130, 246, 0.2) 100%);
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 4px 12px rgba(96, 165, 250, 0.2);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: #60a5fa;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.25) 0%, rgba(59, 130, 246, 0.15) 100%);
  border-color: rgba(96, 165, 250, 0.5);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(96, 165, 250, 0.3);
}

.service-card:hover .service-icon svg {
  color: #93c5fd;
  transform: scale(1.1);
}

/* Animated Counter Elements */
.counter {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.counter.animated {
  animation: counterPulse 2s ease-out;
}

@keyframes counterPulse {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* Interactive Scroll Indicators */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(96, 165, 250, 0.2);
  z-index: 9999;
}

.scroll-progress {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd);
  width: 0%;
  transition: width 0.1s ease;
  border-radius: 0 2px 2px 0;
}

/* Loading Skeleton Animation */
.skeleton {
  background: linear-gradient(90deg, 
    rgba(30, 41, 59, 0.4) 25%, 
    rgba(96, 165, 250, 0.1) 50%, 
    rgba(30, 41, 59, 0.4) 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Parallax Background Elements */
.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
  opacity: 0.03;
}

.parallax-shape {
  position: absolute;
  background: #60a5fa;
  border-radius: 50%;
}

.parallax-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 80%;
  animation: parallaxFloat1 20s ease-in-out infinite;
}

.parallax-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  left: 10%;
  animation: parallaxFloat2 25s ease-in-out infinite;
}

.parallax-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  left: 50%;
  animation: parallaxFloat3 15s ease-in-out infinite;
}

@keyframes parallaxFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -30px) scale(1.1); }
}

@keyframes parallaxFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -20px) scale(0.9); }
}

@keyframes parallaxFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 25px) scale(1.05); }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}

.portfolio-grid::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -50%;
  width: 200%;
  height: 80px;
  background: radial-gradient(ellipse 120% 60% at 50% 0%, rgba(96, 165, 250, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  height: 320px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(25, 35, 50, 0.6) 100%);
  box-shadow: 
    0 8px 20px rgba(0,0,0,0.15),
    0 3px 8px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.portfolio-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.2),
    0 4px 10px rgba(0,0,0,0.1);
  border-color: rgba(96, 165, 250, 0.2);
}

.portfolio-item:hover::before {
  opacity: 1;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 0;
}

.portfolio-item:hover img {
  transform: scale(1.03);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(30, 41, 59, 0.8) 100%),
    radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.2) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  backdrop-filter: blur(8px);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  color: #f8fafc;
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.5px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-overlay h3 {
  transform: translateY(0);
}

.stats-section {
  background: 
    linear-gradient(135deg, rgba(6, 10, 19, 0.95) 0%, rgba(15, 23, 42, 0.9) 30%, rgba(30, 41, 59, 0.85) 70%, rgba(25, 35, 50, 0.9) 100%),
    radial-gradient(ellipse at center, rgba(96, 165, 250, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(37, 99, 235, 0.04) 0%, transparent 50%);
  text-align: center;
  border: 2px solid rgba(96, 165, 250, 0.2);
  border-radius: 40px;
  margin: 80px auto !important;
  max-width: 1100px !important;
  padding: 60px 40px !important;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.4),
    0 10px 25px rgba(96, 165, 250, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 0 50px rgba(96, 165, 250, 0.03);
  backdrop-filter: blur(25px);
}

.stats-section h2 {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 153, 204, 0.03) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: rotate(0deg) translate(0, 0); }
  25% { transform: rotate(90deg) translate(10px, -10px); }
  50% { transform: rotate(180deg) translate(0, 0); }
  75% { transform: rotate(270deg) translate(-10px, 10px); }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px auto 0;
  max-width: 900px;
  position: relative;
  z-index: 2;
  padding: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 12px;
  background: 
    linear-gradient(135deg, rgba(30, 41, 59, 0.3) 0%, rgba(25, 35, 50, 0.4) 100%),
    radial-gradient(ellipse at center, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
  border-radius: 24px;
  border: 1px solid rgba(96, 165, 250, 0.15);
  min-height: 140px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.6), transparent);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 8px 20px rgba(96, 165, 250, 0.2);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-item h3 {
  font-size: 48px;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(96, 165, 250, 0.2);
}

.stat-item p {
  color: #cbd5e1;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #e2e8f0;
  letter-spacing: -0.2px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(25, 35, 50, 0.8) 100%);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: #f1f5f9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 8px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
  opacity: 0.8;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 
    0 6px 12px rgba(0,0,0,0.15),
    0 0 0 3px rgba(96, 165, 250, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.1);
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(25, 35, 50, 0.9) 100%);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.submit-button {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  padding: 18px 40px;
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 6px 15px rgba(59, 130, 246, 0.3),
    0 2px 6px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.submit-button:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-3px);
  box-shadow: 
    0 10px 25px rgba(59, 130, 246, 0.4),
    0 4px 12px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.submit-button:hover::before {
  left: 100%;
}

.submit-button:active {
  transform: translateY(-1px);
  box-shadow: 
    0 6px 15px rgba(59, 130, 246, 0.3),
    0 2px 6px rgba(0,0,0,0.1);
}

.footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-top: 1px solid rgba(96, 165, 250, 0.2);
  color: #e5e7eb;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
}

.footer p {
  margin-bottom: 12px;
  font-size: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #cbd5e1;
}

.footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.footer a {
  color: #60a5fa;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 12px;
  border-radius: 8px;
  position: relative;
  font-weight: 500;
}

.footer a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 1px;
}

.footer a:hover {
  color: #93c5fd;
  text-decoration: none;
  background: rgba(96, 165, 250, 0.1);
  transform: translateY(-2px);
}

.footer a:hover::before {
  width: 80%;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.location-card {
  background: 
    linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.95) 40%, rgba(25, 35, 50, 0.98) 100%),
    radial-gradient(ellipse at center, rgba(96, 165, 250, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.3),
    0 8px 20px rgba(96, 165, 250, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 0 30px rgba(96, 165, 250, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(25px);
}

.location-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.35),
    0 10px 25px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 0 0 1px rgba(96, 165, 250, 0.4);
  border-color: rgba(96, 165, 250, 0.5);
}

.location-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.location-card-content {
  padding: 40px;
}

.highlight-box {
  background: 
    linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 50%, rgba(25, 35, 50, 0.95) 100%),
    radial-gradient(ellipse at center, rgba(96, 165, 250, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  border: 2px solid rgba(96, 165, 250, 0.3);
  color: white;
  padding: 60px 40px;
  border-radius: 28px;
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.3),
    0 8px 20px rgba(96, 165, 250, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 0 40px rgba(96, 165, 250, 0.05);
  backdrop-filter: blur(30px);
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(96, 165, 250, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, transparent 0%, rgba(96, 165, 250, 0.03) 50%, transparent 100%);
  pointer-events: none;
  animation: highlightGlow 20s ease-in-out infinite;
}

@keyframes highlightGlow {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.highlight-box h2 {
  font-family: 'DM Sans', sans-serif;
  color: #f8fafc;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  line-height: 1.2;
}

.highlight-box p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-box .cta-button {
  position: relative;
  z-index: 2;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(96, 165, 250, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li:hover {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.05) 0%, transparent 100%);
  padding-left: 8px;
  border-radius: 8px;
}

.feature-list li:before {
  content: "";
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
  position: relative;
}

.feature-list li:after {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 21px;
  color: white;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}

.calendar-placeholder {
  background: 
    linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(25, 35, 50, 0.6) 100%),
    radial-gradient(ellipse at center, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  border: 2px dashed rgba(96, 165, 250, 0.3);
  border-radius: 20px;
  padding: 80px 40px;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.calendar-placeholder::before {
  content: '📅';
  display: block;
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.6;
}

.calendar-placeholder:hover {
  border-color: rgba(96, 165, 250, 0.5);
  background: 
    linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(25, 35, 50, 0.8) 100%),
    radial-gradient(ellipse at center, rgba(96, 165, 250, 0.12) 0%, transparent 70%);
}

/* Modern Card Variants */
.card-outlined {
  background: transparent;
  border: 2px solid rgba(96, 165, 250, 0.2);
  backdrop-filter: blur(10px);
}

.card-outlined:hover {
  border-color: rgba(96, 165, 250, 0.4);
  background: rgba(96, 165, 250, 0.05);
}

.card-minimal {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}

.card-minimal:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(96, 165, 250, 0.2);
}

/* Modern Progress Bar Component */
.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(30, 41, 59, 0.6);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin: 16px 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
  border-radius: 20px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.progress-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: progressShimmer 2s infinite;
}

@keyframes progressShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Modern Status Indicators */
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
}

.status-online {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.status-online::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  animation: statusPulse 2s infinite;
}

.status-busy {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.status-away {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

@keyframes statusPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* Modern Tooltip Component */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
}

.tooltip-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.98) 100%);
  color: #e2e8f0;
  text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  z-index: 1000;
  border: 1px solid rgba(96, 165, 250, 0.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: rgba(30, 41, 59, 0.98) transparent transparent transparent;
}

.tooltip:hover .tooltip-content {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Modern Alert Components */
.alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin: 16px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  border-left: 4px solid;
  position: relative;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.alert-info {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  color: #60a5fa;
  border-color: #3b82f6;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.alert-success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(21, 128, 61, 0.05) 100%);
  color: #22c55e;
  border-color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert-warning {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
  color: #fbbf24;
  border-color: #d97706;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.alert-error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
  color: #ef4444;
  border-color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-icon {
  font-size: 18px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Modern Loading Spinner */
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(96, 165, 250, 0.2);
  border-top: 3px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
}

.spinner-large {
  width: 40px;
  height: 40px;
  border-width: 4px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Modern Switch/Toggle Component */
.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(96, 165, 250, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  top: 2px;
  background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .switch-slider {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-color: #60a5fa;
}

input:checked + .switch-slider:before {
  transform: translateX(24px);
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.team-member {
  text-align: center;
  background: 
    linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(25, 35, 50, 0.8) 100%),
    radial-gradient(ellipse at center, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: 24px;
  padding: 32px 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 
    0 8px 20px rgba(0,0,0,0.15),
    0 3px 8px rgba(96, 165, 250, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.team-member:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 
    0 12px 30px rgba(0,0,0,0.2),
    0 6px 15px rgba(96, 165, 250, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.team-member img {
  width: 180px;
  height: 240px;
  border-radius: 16px;
  margin-bottom: 20px;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  border: 3px solid rgba(96, 165, 250, 0.2);
  transition: all 0.3s ease;
}

.team-member:hover img {
  border-color: rgba(96, 165, 250, 0.4);
  transform: scale(1.05);
}

/* Modern Badge Component */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  margin: 4px;
}

.badge-success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(21, 128, 61, 0.1) 100%);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.3);
}

.badge-warning {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.3);
}

.badge-large {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 24px;
}

/* Enhanced Mobile Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
  .container, .container-narrow, .container-wide {
    padding: 0 32px;
  }
  
  section {
    padding: 100px 32px;
  }
  
  .services-grid, .advantage-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .hero {
    padding: 120px 32px;
    min-height: 90vh;
  }
  
  .hero h1 {
    font-size: 52px;
  }
  
  .navbar {
    padding: 18px 32px;
  }
  
  .nav-links {
    gap: 24px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
  }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
  .container, .container-narrow, .container-wide {
    padding: 0 24px;
  }
  
  section {
    padding: 80px 24px;
  }
  
  .hero {
    padding: 100px 24px;
    min-height: 85vh;
  }
  
  .navbar {
    flex-direction: column;
    padding: 20px 24px;
    gap: 20px;
  }
  
  .logo {
    font-size: 22px;
  }
  
  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 8px;
    align-items: center;
  }
  
  .nav-links a {
    padding: 12px 20px;
    text-align: center;
    width: 100%;
    max-width: 200px;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    box-shadow: none;
    background: rgba(25, 35, 50, 0.95);
    margin-top: 8px;
    border-radius: 8px;
  }
  
  .hero h1 {
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 18px;
    margin-bottom: 28px;
  }
  
  h2 {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 16px;
  }
  
  h3 {
    font-size: clamp(18px, 4vw, 24px);
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }
  
  .location-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }
  
  .services-grid, .advantage-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }
  
  .service-card, .advantage-card, .card {
    padding: 28px 24px;
  }
  
  .location-card-content {
    padding: 28px 24px;
  }
  
  .highlight-box {
    padding: 48px 24px;
    margin: 48px auto;
    border-radius: 20px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .stat-item {
    padding: 16px 12px;
    min-height: 120px;
  }
  
  .stat-item h3 {
    font-size: 36px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 14px 16px;
    font-size: 16px;
  }
  
  .cta-button {
    padding: 16px 24px;
    font-size: 16px;
    width: 100%;
    max-width: 280px;
  }
  
  .submit-button {
    padding: 16px 32px;
    font-size: 16px;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .container, .container-narrow, .container-wide {
    padding: 0 20px;
  }
  
  section {
    padding: 60px 20px;
  }
  
  .hero {
    padding: 80px 20px;
    min-height: 80vh;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .navbar {
    padding: 16px 20px;
  }
  
  .logo {
    font-size: 20px;
  }
  
  .service-card, .advantage-card, .card {
    padding: 24px 20px;
  }
  
  .location-card-content {
    padding: 24px 20px;
  }
  
  .highlight-box {
    padding: 40px 20px;
    margin: 40px auto;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-item h3 {
    font-size: 32px;
  }
  
  .footer {
    padding: 40px 20px;
  }
  
  .footer ul {
    flex-direction: column;
    gap: 16px;
  }
  
  .portfolio-item {
    height: 250px;
  }
  
  p {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* Extra small devices */
@media (max-width: 320px) {
  .container, .container-narrow, .container-wide {
    padding: 0 16px;
  }
  
  section {
    padding: 50px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .service-card, .advantage-card, .card {
    padding: 20px 16px;
  }
  
  .highlight-box {
    padding: 32px 16px;
  }
}

/* Responsive Utilities */
.hidden-mobile {
  display: block;
}

.hidden-desktop {
  display: none;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }
  
  .hidden-desktop {
    display: block;
  }
  
  /* Touch-friendly interactions */
  .nav-links a,
  .cta-button,
  .submit-button,
  .footer a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Improved touch targets */
  .service-card,
  .advantage-card,
  .location-card,
  .portfolio-item {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(96, 165, 250, 0.1);
  }
  
  /* Reduce animations on mobile for better performance */
  .service-card:hover,
  .advantage-card:hover,
  .location-card:hover {
    transform: none;
  }
  
  /* Simplified hover effects for touch devices */
  .portfolio-item:hover img {
    transform: none;
  }
  
  /* Better mobile form styling */
  .form-group input,
  .form-group textarea,
  .form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 8px;
  }
  
  /* Prevent zoom on iOS Safari */
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px !important;
  }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 70vh;
    padding: 60px 24px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  section {
    padding: 60px 24px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .portfolio-item img,
  .location-card img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero::before {
    animation: none;
  }
  
  .service-card,
  .advantage-card {
    animation: none;
  }
}

/* Print styles */
@media print {
  .navbar,
  .cta-button,
  .submit-button,
  .footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero,
  .service-card,
  .advantage-card,
  .location-card,
  .highlight-box {
    background: white;
    border: 1px solid #ccc;
    box-shadow: none;
  }
  
  h1, h2, h3 {
    color: black;
    -webkit-text-fill-color: black;
  }
  
  p {
    color: #333;
  }
}

/* Final Polish - Page Loading and Transitions */

/* Page fade-in animation - no transform to prevent scroll */
body {
  animation: pageLoad 0.6s ease-out;
}

@keyframes pageLoad {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Smooth section reveal on scroll - no transform to prevent scroll issues */
.section-reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-reveal.revealed {
  opacity: 1;
}

/* Loading skeleton for images */
.image-skeleton {
  background: linear-gradient(90deg, 
    rgba(30, 41, 59, 0.4) 25%, 
    rgba(96, 165, 250, 0.1) 50%, 
    rgba(30, 41, 59, 0.4) 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Enhanced scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(30, 41, 59, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  border-radius: 4px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

/* Smooth link transitions */
a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Selection styling */
::selection {
  background: rgba(96, 165, 250, 0.3);
  color: #f8fafc;
}

::-moz-selection {
  background: rgba(96, 165, 250, 0.3);
  color: #f8fafc;
}

/* Enhanced focus indicators */
*:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
  border-radius: 4px;
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.2);
}

/* Scroll-to-top button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Micro-interactions for better UX */
.portfolio-item,
.service-card,
.advantage-card,
.location-card {
  will-change: transform;
}

/* Performance optimizations */
.hero::before,
.section:nth-child(even)::before,
.section:nth-child(odd)::after {
  will-change: transform, opacity;
}

/* Smooth image loading */
img {
  transition: opacity 0.3s ease;
}

img[data-loaded="false"] {
  opacity: 0;
}

img[data-loaded="true"] {
  opacity: 1;
}

/* Professional page transitions */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-transition.active {
  opacity: 1;
  visibility: visible;
}

.page-transition .spinner {
  width: 40px;
  height: 40px;
  border-width: 4px;
}

/* Enhanced status indicators with better animations */
.status-indicator.loading {
  position: relative;
}

.status-indicator.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100% + 12px);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(96, 165, 250, 0.2);
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Final visual enhancements */
.hero {
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
}

/* Polished interaction states */
button,
.cta-button,
.submit-button {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Loading Skeleton Animations */
.skeleton {
  background: linear-gradient(90deg, 
    rgba(71, 85, 105, 0.3) 25%, 
    rgba(96, 165, 250, 0.1) 50%, 
    rgba(71, 85, 105, 0.3) 75%);
  background-size: 200% 100%;
  animation: skeletonLoading 2s infinite;
}

@keyframes skeletonLoading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Enhanced page transitions */
.page-fade-in {
  animation: pageEntrance 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes pageEntrance {
  0% { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Simplified background patterns */
body::before {
  background: 
    radial-gradient(ellipse at top left, rgba(59, 130, 246, 0.02) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(96, 165, 250, 0.015) 0%, transparent 50%);
}


/* HYPER-ADVANCED GRAPHICS: Scroll-Driven Animations */
@supports (animation-timeline: scroll()) {
  .hero {
    animation: heroParallax linear;
    animation-timeline: scroll();
    animation-range: 0% 100%;
  }
  
  .hero-content {
    animation: heroContentFloat linear;
    animation-timeline: scroll();
    animation-range: 0% 50%;
  }
  
  .floating-shape {
    animation: shapeScroll linear;
    animation-timeline: scroll();
    animation-range: 0% 100%;
  }
  
  .service-card, .advantage-card {
    animation: cardReveal linear;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}

@keyframes heroParallax {
  0% { transform: translateY(0); }
  100% { transform: translateY(-200px); }
}

@keyframes heroContentFloat {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-100px) scale(0.95); opacity: 0.8; }
}

@keyframes shapeScroll {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(360deg) scale(1.5); }
}

@keyframes cardReveal {
  0% { 
    opacity: 0; 
    transform: translateY(50px) rotateX(15deg); 
    filter: blur(5px);
  }
  100% { 
    opacity: 1; 
    transform: translateY(0) rotateX(0deg); 
    filter: blur(0px);
  }
}

/* HYPER-ADVANCED GRAPHICS: Advanced Clip-Path Shapes */
.hero {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero:hover {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}

section:nth-child(odd):not(.hero) {
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  margin-top: -2vh;
  position: relative;
  z-index: 2;
}

section:nth-child(even) {
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  margin-top: -2vh;
  position: relative;
  z-index: 1;
}

.service-card, .advantage-card {
  border-radius: 16px;
}

.service-card:hover, .advantage-card:hover {
  border-radius: 16px;
}

.location-card {
  clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
}

/* HYPER-ADVANCED GRAPHICS: CSS Motion Path */
.floating-shape {
  offset-path: path('M 0,50 Q 50,0 100,50 Q 150,100 200,50 Q 250,0 300,50');
  offset-distance: 0%;
  animation: motionPath 20s infinite linear;
}

.shape-1 {
  offset-path: path('M 0,100 C 50,50 100,150 200,100 S 350,50 400,100');
  animation-duration: 25s;
}

.shape-2 {
  offset-path: path('M 100,0 Q 200,100 300,0 Q 400,100 500,0');
  animation-duration: 18s;
  animation-direction: reverse;
}

.shape-3 {
  offset-path: path('M 0,0 C 100,200 200,-100 400,100 S 600,300 800,100');
  animation-duration: 30s;
}

@keyframes motionPath {
  0% { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

/* Advanced floating icons with motion path */
.floating-icon {
  offset-path: path('M 50,50 Q 150,25 250,50 Q 350,75 450,50');
  offset-distance: 0%;
  animation: iconFloat 15s infinite ease-in-out;
}

@keyframes iconFloat {
  0%, 100% { 
    offset-distance: 0%;
    transform: rotate(0deg) scale(1);
    opacity: 0.6;
  }
  50% { 
    offset-distance: 100%;
    transform: rotate(180deg) scale(1.2);
    opacity: 1;
  }
}

/* HYPER-ADVANCED GRAPHICS: CSS Masonry Layout */
@supports (grid-template-rows: masonry) {
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: masonry;
    grid-gap: 20px;
    align-tracks: stretch;
  }
  
  .portfolio-item:nth-child(odd) {
    height: 350px;
  }
  
  .portfolio-item:nth-child(even) {
    height: 280px;
  }
  
  .portfolio-item:nth-child(3n) {
    height: 400px;
  }
}

/* Fallback for browsers without masonry support */
@supports not (grid-template-rows: masonry) {
  .portfolio-grid {
    columns: 3;
    column-gap: 20px;
    column-fill: balance;
  }
  
  .portfolio-item {
    break-inside: avoid;
    margin-bottom: 20px;
    height: auto;
    min-height: 250px;
  }
}

/* Advanced staggered portfolio animation */
.portfolio-item {
  animation: none;
}

/* Animation delays removed */

/* Portfolio reveal animation removed for cleaner experience */

/* HYPER-ADVANCED GRAPHICS: Variable Fonts & Morphing Typography */
.title-main {
  font-family: 'Inter', sans-serif;
  font-variation-settings: 'wght' 800, 'slnt' 0;
}

.title-sub {
  font-family: 'Inter', sans-serif;
  font-variation-settings: 'wght' 400, 'slnt' 0;
}

h2 {
  font-family: 'Inter', sans-serif;
  font-variation-settings: 'wght' 700, 'slnt' 0;
  transition: font-variation-settings 0.3s ease;
}

h2:hover {
  font-variation-settings: 'wght' 900, 'slnt' -10;
}

@keyframes titleMorph {
  0% { 
    font-variation-settings: 'wght' 700, 'slnt' 0;
    letter-spacing: -1px;
  }
  50% { 
    font-variation-settings: 'wght' 900, 'slnt' -5;
    letter-spacing: -2px;
  }
  100% { 
    font-variation-settings: 'wght' 800, 'slnt' 0;
    letter-spacing: -1px;
  }
}

@keyframes subtitleMorph {
  0% { 
    font-variation-settings: 'wght' 400, 'slnt' 0;
    opacity: 0.9;
  }
  50% { 
    font-variation-settings: 'wght' 600, 'slnt' -3;
    opacity: 1;
  }
  100% { 
    font-variation-settings: 'wght' 500, 'slnt' 0;
    opacity: 0.95;
  }
}

/* Responsive variable font scaling */
@media (max-width: 768px) {
  .title-main {
    font-variation-settings: 'wght' 600, 'slnt' 0;
  }
  
  .title-sub {
    font-variation-settings: 'wght' 300, 'slnt' 0;
  }
}

/* HYPER-ADVANCED GRAPHICS: 3D Transforms & Perspective */
.hero {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.hero-content {
  transform-style: preserve-3d;
  animation: perspective3D 12s ease-in-out infinite;
}

.services-grid, .advantage-grid {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.service-card, .advantage-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Clean hover override */
.service-card:hover, .advantage-card:hover {
  transform: translateY(-8px) !important;
}

.portfolio-grid {
  perspective: 1500px;
  transform-style: preserve-3d;
}

.portfolio-item {
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

/* 3D transforms removed for simpler hover effect */

/* 3D floating shapes */
.floating-shape {
  transform-style: preserve-3d;
  animation: shape3D 15s infinite linear;
}

@keyframes perspective3D {
  0%, 100% { 
    transform: rotateX(0deg) rotateY(0deg) translateZ(0px);
  }
  25% { 
    transform: rotateX(2deg) rotateY(3deg) translateZ(10px);
  }
  50% { 
    transform: rotateX(0deg) rotateY(-2deg) translateZ(20px);
  }
  75% { 
    transform: rotateX(-1deg) rotateY(1deg) translateZ(10px);
  }
}

@keyframes shape3D {
  0% { 
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) translateZ(0px);
  }
  33% { 
    transform: rotateX(120deg) rotateY(120deg) rotateZ(120deg) translateZ(20px);
  }
  66% { 
    transform: rotateX(240deg) rotateY(240deg) rotateZ(240deg) translateZ(-20px);
  }
  100% { 
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg) translateZ(0px);
  }
}

/* 3D navbar effect */
.navbar {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.navbar:hover {
  transform: translateZ(5px);
}

.nav-links li {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.nav-links li:hover {
  transform: rotateY(5deg) translateZ(10px);
}

/* Simplified hero background */

/* Simplified icon animations */
.service-icon, .advantage-icon {
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon,
.advantage-card:hover .advantage-icon {
  transform: scale(1.1);
}

/* Final accessibility improvements */
@media (prefers-contrast: high) {
  .service-card,
  .advantage-card,
  .location-card {
    border-width: 2px;
    border-color: #60a5fa;
  }
  
  .cta-button,
  .submit-button {
    border: 2px solid #ffffff;
  }
}