/* ============================================
   AMR Industrials - Universal Theme CSS
   Comprehensive Design System
   ============================================ */

:root {
  /* Color Palette */
  --color-primary: #F9F8F6;
  --color-secondary: #EFE9E3;
  --color-tertiary: #D9CFC7;
  --color-accent: #C9B59C;
  --color-text: #2A2A2A;
  --color-text-light: #5A5A5A;
  --color-white: #FFFFFF;
  
  /* Additional Colors */
  --palette-1: #F9F8F6;
  --palette-2: #EFE9E3;
  --palette-3: #D9CFC7;
  --palette-4: #C9B59C;
  --accent-orange: #E67E22;
  --accent-blue: #3498DB;
  --accent-green: #27AE60;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-card: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-tertiary) 0%, var(--color-accent) 100%);
  
  /* Navigation Specific */
  --nav-radius: 999px;
  --nav-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  --nav-shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.10);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', var(--font-primary);
  
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */
  --text-5xl: 3rem;        /* 48px */
  --text-6xl: 3.75rem;     /* 60px */
  
  /* Spacing */
  --space-xs: 0.5rem;      /* 8px */
  --space-sm: 1rem;        /* 16px */
  --space-md: 1.5rem;      /* 24px */
  --space-lg: 2rem;        /* 32px */
  --space-xl: 3rem;        /* 48px */
  --space-2xl: 4rem;       /* 64px */
  --space-3xl: 6rem;       /* 96px */
  
  /* Layout */
  --container-max: 1200px;
  --container-padding: var(--space-md);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Z-Index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-toast: 500;
}

/* ============================================
   Reset & Base Styles
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-primary);
  overflow-x: hidden;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-sm);
  color: var(--color-text-light);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-tertiary);
}

/* ============================================
   Layout Components
   ============================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

.section {
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Header & Navigation
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  padding: 18px 0;
  background: transparent;
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.header.scrolled {
  padding: 1px 0;
  background:transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 64px;
  gap: 16px;
}

.brand-link {
  position: static;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: rgba(17, 17, 17, 0.92);
  padding: 10px 14px;
  border-radius: var(--nav-radius);
  background: linear-gradient(135deg, rgba(239, 233, 227, 0.9), rgba(217, 207, 199, 0.9));
  border: 1px solid rgba(239, 233, 227, 0.95);
  box-shadow: var(--nav-shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
/* Logo in header */
.brand-logo {
  height: 100px;
  width: auto;
  display: block;
  border-radius: 10px;
  padding: 6px 10px;

  /* match the same pill look as brand-name */
  background: transparent;
  border: 1px solid rgba(239, 233, 227, 0.95);
  box-shadow: var(--nav-shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* default: hide fallback text (only show if logo fails) */
.brand-fallback {
  display: none;
}

/* keep existing hover effect but apply to logo too */
.brand-link:hover .brand-logo {
  transform: translateY(-1px);
  box-shadow: var(--nav-shadow);
}
.brand-link:hover .brand-name {
  transform: translateY(-1px);
  box-shadow: var(--nav-shadow);
  color: var(--color-accent);
}

.nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 299;
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}
.nav-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.pill-nav {
  position: relative;
  margin-left: auto;
  padding: 10px;
  border-radius: var(--nav-radius);
  background: rgba(249, 248, 246, 0.88);
  border: 1px solid rgba(239, 233, 227, 0.98);
  box-shadow: var(--nav-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.pill-indicator {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 0px;
  height: 0px;
  border-radius: var(--nav-radius);
  background: linear-gradient(135deg, var(--palette-3), var(--palette-4));
  box-shadow: 0 12px 28px rgba(201, 181, 156, 0.35);
  opacity: 0;
  transform: translate(0px, 0px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease;
  z-index: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.nav-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: var(--nav-radius);
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  color: rgba(17, 17, 17, 0.75);
  transition: transform 0.25s ease, color 0.25s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after { 
  width: 80%; 
}

.nav-link:hover {
  color: rgba(17, 17, 17, 0.95);
  transform: translateY(-1px);
}

.nav-link:focus-visible {
  outline: 3px solid rgba(201, 181, 156, 0.45);
  outline-offset: 3px;
}

.nav-link.active { 
  color: rgba(17, 17, 17, 0.95); 
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
  transition: all var(--transition-base);
}

.nav-toggle:hover {
  background: rgba(217, 207, 199, 0.2);
  border-radius: 8px;
}

.nav-toggle:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 8px;
}



.hamburger {
  width: 28px;
  height: 3px;
  background: var(--color-text);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}


.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 3px;
  background: var(--color-text);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger::before { 
  top: -8px; 
  left: 0;
}
.hamburger::after { 
  bottom: -8px; 
  left: 0;
}
/* Active/Open State - Animated X */
.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}
/* ============================================
   Hero Section (Home Page)
   ============================================ */

.hero {
  margin-top: 92px;
  position: relative;
}

.hero-swiper {
  width: 100%;
  height: 620px;
}

.hero-swiper .swiper-slide {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-swiper .swiper-slide-active {
  opacity: 1;
}

.hero-slide {
  min-height: 620px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 15% 30%, rgba(201, 181, 156, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(217, 207, 199, 0.20) 0%, transparent 55%),
    linear-gradient(135deg, var(--palette-1), var(--palette-2));
  overflow: hidden;
  position: relative;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(249, 248, 246, 0.85), rgba(249, 248, 246, 0.25));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: rgba(17, 17, 17, 0.72);
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(2.2rem, 3.4vw, 3.6rem);
  line-height: 1.06;
  margin: 0 0 14px;
  color: rgba(17, 17, 17, 0.92);
  font-family: var(--font-heading);
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.70);
  margin: 0 0 18px;
  max-width: 52ch;
}

.hero-bullets {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.55;
}

.hero-bullets li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 7px;
  background: linear-gradient(135deg, var(--palette-3), var(--palette-4));
  box-shadow: 0 8px 18px rgba(201, 181, 156, 0.35);
  flex: 0 0 auto;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(249, 248, 246, 0.75);
  border: 1px solid rgba(217, 207, 199, 0.65);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hero-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.hero-feature-ico {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(217, 207, 199, 0.75), rgba(201, 181, 156, 0.75));
  border: 1px solid rgba(201, 181, 156, 0.55);
}

.hero-feature-ico svg {
  width: 20px;
  height: 20px;
  fill: rgba(17, 17, 17, 0.85);
}

.hero-feature-title {
  font-weight: 700;
  color: rgba(17, 17, 17, 0.90);
  line-height: 1.2;
}

.hero-feature-sub {
  font-size: 0.88rem;
  color: rgba(17, 17, 17, 0.65);
  line-height: 1.2;
}



.hero-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}

.hero-media-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 30% 20%, rgba(201, 181, 156, 0.22), transparent 55%);
  pointer-events: none;
}

.hero-nav.swiper-button-prev,
.hero-nav.swiper-button-next {
  width: 36px;
  height: 56px;
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  color: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-nav.swiper-button-prev:hover,
.hero-nav.swiper-button-next:hover {
  transform: scale(1.1);
  border-color: var(--accent-orange);
  box-shadow: 0 16px 40px rgba(230, 126, 34, 0.25);
  color: var(--accent-orange);
}

.hero-nav.swiper-button-prev::after,
.hero-nav.swiper-button-next::after {
  font-size: 16px;
  font-weight: 900;
}

.hero-pagination.swiper-pagination {
  bottom: 18px !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.18);
  opacity: 1;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              background 0.4s ease,
              transform 0.3s ease;
  margin: 0 6px !important;
}

.hero-pagination .swiper-pagination-bullet:hover {
  transform: scale(1.1);
  background: rgba(17, 17, 17, 0.3);
}

.hero-pagination .swiper-pagination-bullet-active {
  width: 56px;
  background: linear-gradient(135deg, #E67E22, #D35400);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.35);
}

/* ============================================
   3D HERO SECTION ENHANCEMENTS
   Add these styles to your theme.css file
   ============================================ */

/* Replace the existing .hero-media styles with these: */

.hero-media {
  position: relative;
  perspective: 1200px;
  perspective-origin: center center;
  transform-style: preserve-3d;
  height: 460px;
}

.hero-media-3d-container {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.hero-media-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(217, 207, 199, 0.7);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
  transform-style: preserve-3d;
}

.hero-media-layer.background {
  transform: translateZ(-120px) scale(1.1);
  opacity: 0.7;
  filter: blur(2px) brightness(0.9);
  animation: float-background 8s ease-in-out infinite;
}

.hero-media-layer.foreground {
  transform: translateZ(0px);
  z-index: 2;
}

.hero-media-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}

.hero-media-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 30% 20%, rgba(201, 181, 156, 0.22), transparent 55%);
  pointer-events: none;
  z-index: 3;
  transform: translateZ(20px);
}

/* Parallax hover effect */
.hero-media:hover .hero-media-3d-container {
  transform: rotateY(5deg) rotateX(-5deg);
}

/* Floating animation for background layer */
@keyframes float-background {
  0%, 100% {
    transform: translateZ(-120px) scale(1.1) translateY(0px);
  }
  50% {
    transform: translateZ(-120px) scale(1.1) translateY(-15px);
  }
}

/* Responsive adjustments */
@media (max-width: 968px) {
  .hero-media {
    perspective: 800px;
    height: 360px;
  }
  
  .hero-media-layer.background {
    transform: translateZ(-80px) scale(1.08);
  }
  
  .hero-media:hover .hero-media-3d-container {
    transform: rotateY(3deg) rotateX(-3deg);
  }
}

@media (max-width: 768px) {
  .hero-media {
    perspective: 600px;
  }
  
  .hero-media-layer.background {
    transform: translateZ(-60px) scale(1.05);
  }
  
  .hero-media:hover .hero-media-3d-container {
    transform: none; /* Disable 3D rotation on mobile */
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-media-3d-container,
  .hero-media-layer,
  .hero-media:hover .hero-media-3d-container {
    transition: none;
    animation: none;
    transform: none;
  }
  
  .hero-media-layer.background {
    transform: translateZ(-50px) scale(1.05);
    animation: none;
  }
}
/* ============================================
   Page Hero (Universal)
   ============================================ */

.page-hero {
  margin-top: 70px;
  padding: var(--space-3xl) 0;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201, 181, 156, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.page-title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-md);
  position: relative;
}

.page-subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

/* ============================================
   Buttons (Enhanced)
   ============================================ */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  z-index: 1;
  font-family: var(--font-primary);
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #E67E22, #D35400);
  color: #fff;
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(230, 126, 34, 0.45);
  color: #fff;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(249, 248, 246, 0.95);
  color: rgba(17, 17, 17, 0.9);
  border: 2px solid rgba(217, 207, 199, 0.8);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: var(--palette-4);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ============================================
   Clean Circular Metrics - No Cards
   ============================================ */

.metrics-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, #FAFAF9 0%, #F5F3F0 50%, #FAFAF9 100%);
  position: relative;
  overflow: hidden;
}

.metrics-header {
  margin-bottom: var(--space-3xl);
  text-align: center;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Metric Item - No Card Background */
.metric-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.metric-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered Animation */
.metric-item[data-metric="1"] { transition-delay: 0.1s; }
.metric-item[data-metric="2"] { transition-delay: 0.2s; }
.metric-item[data-metric="3"] { transition-delay: 0.3s; }
.metric-item[data-metric="4"] { transition-delay: 0.4s; }

/* Circle Container */
.metric-circle-container {
  position: relative;
  width: 200px;
  height: 200px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

/* Hover Effect - Pop Out */
.metric-item:hover .metric-circle-container {
  transform: translateY(-20px) scale(1.12);
}

/* Progress Ring SVG */
.progress-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
  transition: filter 0.4s ease;
}

.metric-item:hover .progress-ring {
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.25));
}

.progress-ring-circle-bg {
  fill: none;
  stroke: rgba(201, 181, 156, 0.15);
  stroke-width: 12;
}

.progress-ring-circle {
  fill: none;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 534.07; /* 2 * PI * 85 */
  stroke-dashoffset: 534.07;
  transition: stroke-dashoffset 2s cubic-bezier(0.65, 0, 0.35, 1);
}

.metric-item.visible .progress-ring-circle {
  stroke-dashoffset: 0;
}

/* Center Content */
.metric-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 140px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.metric-item:hover .metric-center {
  transform: translate(-50%, -50%) scale(1.05);
}

/* Icon */
.metric-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.metric-item:hover .metric-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.metric-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
  transition: stroke 0.3s ease;
}

.metric-item[data-metric="1"]:hover .metric-icon svg { stroke: #E67E22; }
.metric-item[data-metric="2"]:hover .metric-icon svg { stroke: #3498DB; }
.metric-item[data-metric="3"]:hover .metric-icon svg { stroke: #27AE60; }
.metric-item[data-metric="4"]:hover .metric-icon svg { stroke: #9B59B6; }

/* Number */
.metric-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  transition: color 0.3s ease;
}

.metric-item[data-metric="1"]:hover .metric-number { color: #E67E22; }
.metric-item[data-metric="2"]:hover .metric-number { color: #3498DB; }
.metric-item[data-metric="3"]:hover .metric-number { color: #27AE60; }
.metric-item[data-metric="4"]:hover .metric-number { color: #9B59B6; }

/* Label */
.metric-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-light);
  line-height: 1.3;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.metric-item:hover .metric-label {
  color: var(--color-text);
}

/* Shadow Effect */
.metric-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.5s ease;
  border-radius: 50%;
  z-index: -1;
}

.metric-item:hover .metric-shadow {
  opacity: 1;
  transform: translateX(-50%) scale(1.5);
}

/* Background Decoration */
.metrics-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 181, 156, 0.05) 0%, transparent 70%);
  animation: float-gentle 25s ease-in-out infinite;
}

.deco-1 {
  width: 500px;
  height: 500px;
  top: -250px;
  left: -100px;
  animation-delay: 0s;
}

.deco-2 {
  width: 400px;
  height: 400px;
  top: 20%;
  right: -150px;
  animation-delay: -8s;
}

.deco-3 {
  width: 350px;
  height: 350px;
  bottom: -100px;
  left: 40%;
  animation-delay: -16s;
}

@keyframes float-gentle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.6;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  
  .metric-circle-container {
    width: 160px;
    height: 160px;
  }
  
  .metric-center {
    width: 110px;
  }
  
  .metric-number {
    font-size: 2rem;
  }
  
  .metric-label {
    font-size: 0.8rem;
  }
  
  .metric-icon {
    width: 40px;
    height: 40px;
  }
  
  .metric-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .metric-circle-container {
    width: 180px;
    height: 180px;
  }
  
  .metric-item:hover .metric-circle-container {
    transform: translateY(-15px) scale(1.08);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .metric-item,
  .metric-circle-container,
  .metric-center,
  .metric-icon,
  .progress-ring-circle,
  .metric-shadow {
    transition: none;
    animation: none;
  }
  
  .metric-item:hover .metric-circle-container {
    transform: translateY(0) scale(1);
  }
  
  .deco-circle {
    animation: none;
  }
}

/* ============================================
   Cards (Enhanced)
   ============================================ */

.card {
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--color-secondary);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: var(--space-md);
  fill: var(--color-accent);
}

.card-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.card-text {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   Grid System
   ============================================ */

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ============================================
   About Page - Mission Section
   ============================================ */

.mission-section {
  background: var(--color-white);
}

.mission-content {
  max-width: 900px;
  margin: 0 auto;
}

.mission-content h2 {
  font-size: var(--text-4xl);
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.mission-text {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  line-height: 1.8;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.mission-highlight {
  background: var(--gradient-card);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 2px solid var(--color-accent);
}

.mission-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
}

.mission-highlight p {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-accent);
  font-style: italic;
  margin: 0;
}

/* ============================================
   About Page - Timeline Section
   ============================================ */

.timeline-section {
  background: var(--gradient-hero);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  padding-top: var(--space-2xl);
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-accent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  position: relative;
}

.timeline-marker {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 4px solid var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-accent);
  position: relative;
  z-index: 1;
}

.timeline-content {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.timeline-content h3 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.timeline-year {
  font-size: var(--text-base);
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.timeline-content p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   Values Section (Universal)
   ============================================ */

.values-section {
  background: var(--color-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.value-card {
  padding: var(--space-2xl);
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid var(--color-secondary);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
}

.value-card h3 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.value-card p {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   About Page - Infrastructure Section
   ============================================ */

.infrastructure-section {
  background: var(--gradient-hero);
}

.infrastructure-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.infrastructure-text h2 {
  font-size: var(--text-4xl);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.lead-text {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.infrastructure-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
}

.stat-number {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-heading);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  font-weight: 500;
}

.machine-grid {
  display: grid;
  gap: var(--space-md);
}

.machine-card {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-md);
}

.machine-card h4 {
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.machine-card p {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-accent);
  margin: 0;
}

/* ============================================
   About Page - Partnerships Section
   ============================================ */

.partnerships-section {
  background: var(--color-white);
}

.partnerships-intro {
  text-align: center;
  font-size: var(--text-lg);
  color: var(--color-text-light);
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
}

.partners-list {
  display: grid;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.partner-card {
  background: var(--gradient-card);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.partner-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(8px);
}

.partner-card h3 {
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.partner-card p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   CTA Section (Universal)
   ============================================ */

/* ============================================
   ENHANCED CTA SECTION (Drop-in)
   ============================================ */

.cta-enhanced-section {
  position: relative;
  overflow: hidden;
  padding: calc(var(--space-3xl) + 10px) 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(201, 181, 156, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(217, 207, 199, 0.30) 0%, transparent 60%),
    linear-gradient(135deg, var(--palette-1), var(--palette-2));
}

.cta-parallax-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cta-parallax-bg .parallax-layer {
  position: absolute;
  border-radius: 999px;
  filter: blur(0px);
  opacity: 0.95;
  will-change: transform;
}

.cta-parallax-bg .layer-1 {
  width: 520px;
  height: 520px;
  left: -180px;
  top: -120px;
  background: radial-gradient(circle, rgba(201, 181, 156, 0.26) 0%, transparent 70%);
}

.cta-parallax-bg .layer-2 {
  width: 420px;
  height: 420px;
  right: -140px;
  top: 10%;
  background: radial-gradient(circle, rgba(217, 207, 199, 0.30) 0%, transparent 70%);
}

.cta-parallax-bg .layer-3 {
  width: 620px;
  height: 620px;
  right: -220px;
  bottom: -260px;
  background: radial-gradient(circle, rgba(201, 181, 156, 0.18) 0%, transparent 72%);
}

.cta-parallax-bg .layer-grid {
  inset: 0;
  border-radius: 0;
  background-image:
    linear-gradient(rgba(201, 181, 156, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 181, 156, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.18;
  mix-blend-mode: multiply;
}

.cta-shell {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(249, 248, 246, 0.72);
  border: 1px solid rgba(217, 207, 199, 0.70);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

/* subtle gradient “frame” */
.cta-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 28px;
  background: linear-gradient(135deg,
    rgba(201, 181, 156, 0.70),
    rgba(217, 207, 199, 0.35),
    rgba(201, 181, 156, 0.65)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(17, 17, 17, 0.75);
  background: linear-gradient(135deg, rgba(217, 207, 199, 0.70), rgba(201, 181, 156, 0.55));
  border: 1px solid rgba(201, 181, 156, 0.45);
  margin-bottom: 14px;
}

.cta-title {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.08;
  margin-bottom: 10px;
  color: rgba(17, 17, 17, 0.92);
}

.cta-subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(17, 17, 17, 0.70);
  max-width: 70ch;
  margin-bottom: 18px;
}

.cta-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}

.cta-highlights li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.55;
}

.cta-highlights li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 7px;
  background: linear-gradient(135deg, var(--palette-3), var(--palette-4));
  box-shadow: 0 10px 22px rgba(201, 181, 156, 0.35);
  flex: 0 0 auto;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

/* JS “magnetic” effect uses .btn-cta */
.btn-cta {
  position: relative;
  will-change: transform;
  transform: translateZ(0);
}

.btn-cta-outline {
  background: rgba(249, 248, 246, 0.35);
  border: 1px solid rgba(217, 207, 199, 0.85);
}

.cta-trust {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(217, 207, 199, 0.65);
}

.trust-item {
  display: grid;
  gap: 2px;
}

.trust-num {
  font-weight: 900;
  font-size: 1.15rem;
  color: rgba(17, 17, 17, 0.88);
}

.trust-label {
  font-size: 0.92rem;
  color: rgba(17, 17, 17, 0.62);
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(217, 207, 199, 0.75);
}

/* Particles */
.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.cta-particles .particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  opacity: 0.65;
  animation: cta-float 10s ease-in-out infinite;
}

.cta-particles .particle:nth-child(3n) { width: 4px; height: 4px; opacity: 0.55; }
.cta-particles .particle:nth-child(4n) { width: 8px; height: 8px; opacity: 0.45; }

@keyframes cta-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

@media (max-width: 768px) {
  .cta-trust {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .trust-divider { display: none; }
}


/* ============================================
   Service Page - Service Blocks
   ============================================ */

.services-section {
  background: var(--color-white);
}

.service-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
  padding: var(--space-2xl);
  background: var(--gradient-card);
  border-radius: var(--radius-2xl);
}

.service-block.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.service-block.reverse .service-content {
  order: 2;
}

.service-block.reverse .service-visual {
  order: 1;
}

.service-number {
  display: inline-block;
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.3;
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.service-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.service-description {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: var(--color-accent);
  margin-top: 4px;
}

.feature-item h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.feature-item p {
  font-size: var(--text-base);
  color: var(--color-text-light);
  margin: 0;
}

.service-illustration {
  width: 100%;
  max-width: 350px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* ============================================
   Service Page - Turning Fleet Table
   ============================================ */

.turning-fleet-table {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.fleet-row {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  align-items: center;
  border-left: 4px solid var(--color-accent);
}

.fleet-type {
  font-weight: 600;
  color: var(--color-text);
}

.fleet-count {
  font-weight: 700;
  color: var(--color-accent);
  font-size: var(--text-lg);
  text-align: center;
}

.fleet-desc {
  color: var(--color-text-light);
  font-size: var(--text-sm);
}

/* ============================================
   Service Page - Sector Solutions
   ============================================ */

.sector-solutions {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.solution-card {
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

.solution-card h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.solution-card p {
  color: var(--color-text-light);
  margin: 0;
}

/* ============================================
   Service Page - Process Section
   ============================================ */

.process-section {
  background: var(--gradient-hero);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.process-step {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: 700;
  margin: 0 auto var(--space-md);
  font-family: var(--font-heading);
}

.process-step h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin: 0;
}

/* ============================================
   Service Page - FAQ Section
   ============================================ */

.faq-section {
  background: var(--color-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gradient-card);
  border: 1px solid var(--color-secondary);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  background: none;
  border: none;
  text-align: left;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: all var(--transition-base);
  font-family: var(--font-primary);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer p {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   Team Page - Leadership Section
   ============================================ */

.leadership-section {
  background: var(--color-white);
}

.leadership-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.leadership-text h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.leader-card {
  background: var(--gradient-card);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-lg);
  border: 1px solid var(--color-secondary);
}

.leader-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-md);
}

.leader-info h3 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.leader-role {
  font-size: var(--text-lg);
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.leader-bio {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

.leadership-qualities {
  display: grid;
  gap: var(--space-md);
}

.quality-item {
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
}

.quality-item h4 {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.quality-item p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin: 0;
}

.leadership-illustration {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* ============================================
   Team Page - Highlights Section with Swiper
   ============================================ */

.highlights-section {
  background: var(--gradient-hero);
}

.highlights-swiper {
  padding: var(--space-lg) 0 var(--space-2xl);
}

.highlight-card {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-lg);
}

.highlight-card h3 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.highlight-card p {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   Team Page - Trust Section
   ============================================ */

.trust-section {
  background: var(--gradient-accent);
  text-align: center;
}

.trust-content h2 {
  font-size: var(--text-4xl);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.trust-text {
  font-size: var(--text-xl);
  color: var(--color-white);
  opacity: 0.95;
  margin-bottom: var(--space-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trust-text strong {
  font-weight: 700;
}

.trust-quote {
  font-size: var(--text-2xl);
  color: var(--color-white);
  font-style: italic;
  max-width: 900px;
  margin: var(--space-xl) auto 0;
  padding: var(--space-lg);
  border-left: 4px solid var(--color-white);
  text-align: left;
  line-height: 1.6;
}

/* ============================================
   Contact Page - Contact Section
   ============================================ */

.contact-section {
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-form-wrapper h2 {
  font-size: var(--text-3xl);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.form-intro {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

/* ============================================
   Contact Page - Contact Form
   ============================================ */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-weight: 500;
  color: var(--color-text);
  font-size: var(--text-base);
}

.required {
  color: #D32F2F;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--color-tertiary);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-family: var(--font-primary);
  color: var(--color-text);
  background: var(--color-white);
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 181, 156, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #D32F2F;
}

.error-message {
  color: #D32F2F;
  font-size: var(--text-sm);
  display: none;
}

.error-message.visible {
  display: block;
}

/* ============================================
   Contact Page - Success Message
   ============================================ */

.success-message {
  background: var(--gradient-card);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 2px solid #4CAF50;
  margin-top: var(--space-lg);
}

.success-icon {
  width: 60px;
  height: 60px;
  stroke: #4CAF50;
  margin: 0 auto var(--space-md);
}

.success-message h3 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.success-message p {
  color: var(--color-text-light);
  margin: 0;
}

/* ============================================
   Contact Page - Contact Information
   ============================================ */

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-card {
  background: var(--gradient-card);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-secondary);
}

.contact-info-card h3 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.info-item h4 {
  font-size: var(--text-base);
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.info-item a {
  color: var(--color-text);
  font-size: var(--text-lg);
  font-weight: 600;
  transition: color var(--transition-base);
}

.info-item a:hover {
  color: var(--color-accent);
}

.info-item p {
  color: var(--color-text);
  font-size: var(--text-lg);
  margin: 0;
}

.additional-info {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

.additional-info h4 {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.additional-info p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   Contact Page - Map Section
   ============================================ */

.map-section {
  padding: var(--space-2xl) 0;
  background: var(--gradient-hero);
}

.map-placeholder {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
}

.map-icon {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto var(--space-md);
}

.map-note {
  color: var(--color-text-light);
  font-size: var(--text-base);
  margin: 0;
}

/* ============================================
   Swiper Custom Styles
   ============================================ */

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--color-tertiary);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--color-accent);
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--color-accent);
  background: var(--color-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: var(--text-lg);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--color-text);
  color: var(--color-secondary);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-title {
  color: var(--color-white);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

.footer-text {
  color: var(--color-secondary);
  line-height: 1.7;
}

.footer-heading {
  color: var(--color-white);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: var(--space-sm);
}

.footer-links a,
.footer-contact a {
  color: var(--color-secondary);
  transition: color var(--transition-base);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-accent);
}

.footer-contact strong {
  color: var(--color-white);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(239, 233, 227, 0.2);
  color: var(--color-secondary);
}

/* ============================================
   Utilities
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   Skip to Content (Accessibility)
   ============================================ */

.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-accent);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  text-decoration: none;
  z-index: var(--z-toast);
  border-radius: 0 0 var(--radius-md) 0;
}

.skip-to-content:focus {
  top: 0;
}

/* ============================================
   Reduced Motion (Accessibility)
   ============================================ */

@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;
  }
  
  .fade-in,
  .slide-in-left,
  .slide-in-right {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 968px) {
  .hero-swiper { height: 740px; }
  .hero-slide { min-height: 740px; }
  .hero-grid { grid-template-columns: 1fr; gap: 22px; }
  .hero-media img { height: 360px; }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    max-width: 350px;
  }
  
  .contact-grid,
  .service-block,
  .service-block.reverse {
    grid-template-columns: 1fr;
  }
  
  .service-block.reverse .service-content,
  .service-block.reverse .service-visual {
    order: initial;
  }
  
  .service-illustration {
    max-width: 250px;
  }
  
  .fleet-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .fleet-count {
    text-align: center;
  }
  
  .infrastructure-content,
  .leadership-content {
    grid-template-columns: 1fr;
  }
  
  .infrastructure-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .leadership-illustration {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.25rem;
    --text-4xl: 1.875rem;
    --text-3xl: 1.5rem;
    --text-2xl: 1.25rem;
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .nav-toggle { 
    display: flex; 
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: var(--color-white);
    flex-direction: column;
    padding: var(--space-xl) var(--space-lg);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-slow);
    align-items: flex-start;
    overflow-y: auto;
    gap: var(--space-sm);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    width: 100%;
    padding: var(--space-sm) 0;
  }

  .hero { 
    margin-top: 86px; 
  }
  
  .hero-swiper { 
    height: 780px; 
  }
  
  .hero-slide { 
    min-height: 780px; 
  }

  .hero-features { 
    grid-template-columns: 1fr; 
  }
  
  .hero-nav.swiper-button-prev,
  .hero-nav.swiper-button-next { 
    display: none; 
  }
  
  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  
  .page-title {
    font-size: var(--text-3xl);
  }
  
  .page-subtitle {
    font-size: var(--text-lg);
  }
  
  .service-block {
    padding: var(--space-lg);
  }
  
  .service-title {
    font-size: var(--text-2xl);
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    grid-template-columns: 40px 1fr;
  }
  
  .timeline-content h3 {
    font-size: var(--text-xl);
  }
  
  .infrastructure-stats {
    grid-template-columns: 1fr;
  }
  
  .leadership-text h2 {
    font-size: var(--text-3xl);
  }
  
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: var(--text-sm);
  }
  
  .trust-quote {
    font-size: var(--text-xl);
  }
}

@media (max-width: 480px) {
  :root {
    --text-5xl: 1.875rem;
    --text-4xl: 1.5rem;
    --container-padding: var(--space-sm);
  }
  
  .hero-cta {
    gap: 12px;
  }
  
  .btn {
    padding: 13px 24px;
    font-size: 0.9rem;
  }
  
  .service-number {
    font-size: var(--text-3xl);
  }
  
  .faq-question {
    font-size: var(--text-base);
    padding: var(--space-md);
  }
  
  .faq-answer p {
    padding: 0 var(--space-md) var(--space-md);
  }
  
  .mission-content h2 {
    font-size: var(--text-3xl);
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: var(--text-3xl);
  }
  
  .highlight-card {
    min-height: 300px;
    padding: var(--space-lg);
  }
}

/* ============================================
   HOME PAGE - About Section
   ============================================ */

   /* ============================================
   ENHANCED ABOUT SECTION - PARALLAX STYLES
   ============================================ */

.about-home-section {
  position: relative;
  background: linear-gradient(180deg, #FAFAF9 0%, #F5F3F0 50%, #FAFAF9 100%);
  overflow: hidden;
  padding: var(--space-3xl) 0 var(--space-3xl);
}

/* Section Header */
.about-section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 2;
}

.about-section-header .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, var(--color-text), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-section-header .section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Enhanced Grid Layout */
.about-enhanced-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 2;
}

/* ============================================
   JOURNEY TIMELINE - LEFT SIDE
   ============================================ */

.about-journey-container {
  position: relative;
  padding: var(--space-2xl) 0;
}

.journey-parallax-wrapper {
  position: relative;
  padding-left: 60px;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

/* Timeline Path */
.journey-timeline-path {
  position: absolute;
  left: 30px;
  top: 40px;
  bottom: 40px;
  width: 4px;
  background: linear-gradient(180deg, 
    var(--accent-orange) 0%, 
    var(--accent-blue) 35%, 
    var(--accent-green) 70%, 
    #9B59B6 100%
  );
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(201, 181, 156, 0.3);
}

/* Journey Milestones */
.journey-milestone {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-2xl);
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.journey-milestone[data-aos].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

.journey-milestone:last-child {
  margin-bottom: 0;
}

.milestone-icon {
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.milestone-icon:hover {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
}

.milestone-icon svg {
  width: 100%;
  height: 100%;
}

.milestone-content {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid currentColor;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.journey-milestone:nth-child(2) .milestone-content { border-color: var(--accent-orange); }
.journey-milestone:nth-child(3) .milestone-content { border-color: var(--accent-blue); }
.journey-milestone:nth-child(4) .milestone-content { border-color: var(--accent-green); }
.journey-milestone:nth-child(5) .milestone-content { border-color: #9B59B6; }

.milestone-content:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.milestone-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
  color: var(--color-text);
  font-weight: 700;
}

.milestone-content p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   VISUAL PARALLAX SCENE - RIGHT SIDE
   ============================================ */

.about-visual-container {
  position: relative;
  height: 600px;
  perspective: 1200px;
  perspective-origin: center;
}

.visual-parallax-scene {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

/* Parallax Layers */
.parallax-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.layer-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.layer-bg {
  z-index: 1;
}

.layer-middle {
  z-index: 2;
}

.layer-front {
  z-index: 3;
}

/* Rotating Gears Animation */
@keyframes rotate-gear {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotate-gear-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.rotating-gear {
  animation: rotate-gear 20s linear infinite;
  transform-origin: center;
}

.rotating-gear-reverse {
  animation: rotate-gear-reverse 15s linear infinite;
  transform-origin: center;
}

/* Smoke Puff Animation */
@keyframes smoke-float {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-15px) scale(1.2);
    opacity: 0.1;
  }
}

.smoke-puff {
  animation: smoke-float 3s ease-in-out infinite;
}

/* Floating Stats Cards */
.floating-stats-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: var(--space-xl) var(--space-lg);
  pointer-events: none;
}

.stat-float-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(201, 181, 156, 0.2);
  max-width: 250px;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: all;
  cursor: pointer;
}

.stat-float-card[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stat-float-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* Floating Animation */
@keyframes float-gentle {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

.stat-float-card[data-float-speed="2"] {
  animation: float-gentle 4s ease-in-out infinite;
}

.stat-float-card[data-float-speed="2.5"] {
  animation: float-gentle 5s ease-in-out infinite 0.5s;
}

.stat-float-card[data-float-speed="3"] {
  animation: float-gentle 6s ease-in-out infinite 1s;
}

.stat-float-card:nth-child(2) {
  align-self: center;
}

.stat-float-card:nth-child(3) {
  align-self: flex-end;
}

.stat-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  line-height: 1.2;
}

/* ============================================
   VALUES SHOWCASE
   ============================================ */

.about-values-showcase {
  margin-top: var(--space-3xl);
  position: relative;
  z-index: 2;
}

.values-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.value-card-enhanced {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: scale(0.9);
}

.value-card-enhanced[data-aos].aos-animate {
  opacity: 1;
  transform: scale(1);
}

.value-card-enhanced:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  border-color: currentColor;
}

.value-card-enhanced:nth-child(1) { border-color: var(--accent-orange); }
.value-card-enhanced:nth-child(2) { border-color: var(--accent-blue); }
.value-card-enhanced:nth-child(3) { border-color: var(--accent-green); }

.value-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-card-enhanced:hover .value-icon-wrapper {
  transform: rotateY(360deg) scale(1.1);
}

.value-icon-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.value-card-enhanced h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.value-card-enhanced p {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   CTA WRAPPER
   ============================================ */

.about-cta-wrapper {
  text-align: center;
  margin-top: var(--space-3xl);
  position: relative;
  z-index: 2;
}

/* ============================================
   FLOATING BACKGROUND ELEMENTS
   ============================================ */

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

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 181, 156, 0.08) 0%, transparent 70%);
  animation: float-bg-circle 20s ease-in-out infinite;
}

.bg-circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.bg-circle-2 {
  width: 500px;
  height: 500px;
  top: 30%;
  right: -150px;
  animation-delay: -7s;
}

.bg-circle-3 {
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: 40%;
  animation-delay: -14s;
}

@keyframes float-bg-circle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.6;
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
    opacity: 0.5;
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .about-enhanced-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .about-visual-container {
    height: 500px;
    order: -1;
  }
  
  .journey-parallax-wrapper {
    padding-left: 50px;
  }
  
  .journey-timeline-path {
    left: 25px;
  }
  
  .milestone-icon {
    width: 60px;
    height: 60px;
  }
  
  .values-grid-enhanced {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .about-home-section {
    padding: var(--space-2xl) 0;
  }
  
  .about-section-header {
    margin-bottom: var(--space-2xl);
  }
  
  .about-visual-container {
    height: 400px;
  }
  
  .journey-milestone {
    grid-template-columns: 50px 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
  }
  
  .journey-parallax-wrapper {
    padding-left: 40px;
  }
  
  .journey-timeline-path {
    left: 20px;
  }
  
  .milestone-icon {
    width: 50px;
    height: 50px;
  }
  
  .milestone-content {
    padding: var(--space-md);
  }
  
  .milestone-content h3 {
    font-size: var(--text-base);
  }
  
  .milestone-content p {
    font-size: 0.85rem;
  }
  
  .stat-float-card {
    max-width: 200px;
    padding: var(--space-sm) var(--space-md);
  }
  
  .stat-number {
    font-size: 1.2rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .value-card-enhanced {
    padding: var(--space-lg);
  }
  
  .value-icon-wrapper {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 480px) {
  .about-enhanced-grid {
    gap: var(--space-xl);
  }
  
  .about-visual-container {
    height: 350px;
  }
  
  .journey-milestone {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    text-align: center;
  }
  
  .journey-parallax-wrapper {
    padding-left: 0;
  }
  
  .journey-timeline-path {
    display: none;
  }
  
  .milestone-icon {
    margin: 0 auto;
  }
  
  .floating-stats-container {
    padding: var(--space-md);
  }
  
  .stat-float-card {
    max-width: 180px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .parallax-layer,
  .journey-parallax-wrapper,
  .rotating-gear,
  .rotating-gear-reverse,
  .smoke-puff,
  .stat-float-card,
  .bg-circle {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  .milestone-icon:hover,
  .value-card-enhanced:hover,
  .stat-float-card:hover {
    transform: none;
  }
}
    

/* ============================================
   HOME PAGE - Services Section
   ============================================ */

.services-home-section {
  background: var(--gradient-hero);
}

.services-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.service-home-card {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--color-secondary);
  display: flex;
  flex-direction: column;
}

.service-home-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.service-home-icon {
  width: 48px;
  height: 48px;
}

.service-home-card h3 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.service-home-card p {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  margin-top: auto;
}

.service-link:hover {
  color: var(--color-tertiary);
  gap: var(--space-sm);
}

.service-link svg {
  transition: transform var(--transition-base);
}

.service-link:hover svg {
  transform: translateX(4px);
}

.services-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ============================================
   HOME PAGE - Team Section
   ============================================ */

.team-home-section {
  background: var(--color-white);
}

.team-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: center;
}

.team-illustration {
  width: 100%;
  height: auto;
  display: block;
}

.team-home-content h2 {
  font-size: var(--text-4xl);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.team-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.team-feature-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.feature-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.feature-content p {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}
/* ============================================
   TEAM SHOWCASE - ACCORDION STYLE (Light Theme)
   ============================================ */

.team-showcase-section {
  background: linear-gradient(135deg, 135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-3xl) 0;
}

.team-showcase-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 181, 156, 0.15) 0%, transparent 40%);
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.team-showcase-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 2;
}

.team-showcase-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-showcase-header .lead-text {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Accordion Container */
.team-accordion {
  display: flex;
  gap: 12px;
  height: 500px;
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-3xl);
}

/* Individual Cards */
.team-card {
  flex: 1;
  position: relative;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  border-radius: var(--radius-2xl);
}

.team-card.active {
  flex: 4;
}

.card-glass {
  position: relative;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 181, 156, 0.3);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 8px 32px rgba(42, 42, 42, 0.08);
}

.team-card:hover .card-glass {
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 48px rgba(42, 42, 42, 0.12);
}

/* Card Header (Visible when collapsed) */
.card-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) var(--space-lg);
  z-index: 3;
  transition: all 0.5s ease;
  background: linear-gradient(180deg, rgba(249, 248, 246, 0.8) 0%, rgba(239, 233, 227, 0.4) 100%);
}

.team-card.active .card-header {
  opacity: 0;
  pointer-events: none;
}

.header-icon {
  width: 48px;
  height: 48px;
  color: var(--accent-orange);
  opacity: 0.9;
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(230, 126, 34, 0.2));
}

.header-icon svg {
  width: 100%;
  height: 100%;
}

.card-number {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  transition: all 0.5s ease;
  font-family: var(--font-heading);
}

.card-header h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: var(--font-heading);
}

/* Card Content (Expands on hover) */
.card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
  display: flex;
  align-items: center;
  padding: var(--space-2xl);
  z-index: 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 248, 246, 0.9) 100%);
}

.team-card.active .card-content {
  opacity: 1;
  transform: translateY(0);
}

.content-inner {
  position: relative;
  width: 100%;
}

.content-glow {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  filter: blur(40px);
}

.team-card.active .content-glow {
  opacity: 1;
}

.card-content h4 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  font-weight: 700;
  font-family: var(--font-heading);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease 0.2s;
}

.team-card.active .card-content h4 {
  transform: translateY(0);
  opacity: 1;
}

.card-content p {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease 0.3s;
}

.team-card.active .card-content p {
  transform: translateY(0);
  opacity: 1;
}

.stat-indicator {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(230, 126, 34, 0.1);
  border: 1px solid rgba(230, 126, 34, 0.3);
  border-radius: 50px;
  margin-bottom: var(--space-lg);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease 0.4s;
}

.team-card.active .stat-indicator {
  transform: translateY(0);
  opacity: 1;
}

.stat-value {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--accent-orange);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 600;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-sm);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease 0.5s, color 0.3s ease, gap 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.team-card.active .card-link {
  transform: translateY(0);
  opacity: 1;
}

.card-link:hover {
  color: var(--accent-orange);
  gap: var(--space-md);
  border-bottom-color: var(--accent-orange);
}

/* Shine Effect */
.card-shine {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 70%
  );
  transition: all 0.6s ease;
  pointer-events: none;
  z-index: 4;
}

.team-card:hover .card-shine {
  top: 0;
  left: 0;
}

/* Gradient Borders on Active */
.team-card.active .card-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  padding: 2px;
  background: linear-gradient(135deg, var(--accent-orange), transparent 50%, var(--color-accent));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* CTA Section */
.team-showcase-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.team-showcase-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, var(--accent-orange), #d35400);
  border: none;
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--text-lg);
  box-shadow: 0 10px 40px rgba(230, 126, 34, 0.3);
  color: var(--color-white);
  border-radius: var(--nav-radius);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-showcase-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(230, 126, 34, 0.4);
  gap: var(--space-md);
}

.team-showcase-cta .btn svg {
  transition: transform 0.3s ease;
}

.team-showcase-cta .btn:hover svg {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 968px) {
  .team-accordion {
    height: 400px;
  }
  
  .card-content {
    padding: var(--space-xl);
  }
  
  .card-content h4 {
    font-size: var(--text-xl);
  }
  
  .card-content p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .team-accordion {
    flex-direction: column;
    height: auto;
    gap: var(--space-md);
  }
  
  .team-card {
    min-height: 200px;
    flex: 1 !important;
  }
  
  .team-card.active {
    flex: 2 !important;
    min-height: 350px;
  }
  
  /* Mobile: Always show content, stack vertically */
  .card-header {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    position: relative;
    padding: var(--space-lg);
    gap: var(--space-md);
    opacity: 1 !important;
    pointer-events: all !important;
    background: linear-gradient(90deg, rgba(249, 248, 246, 0.9) 0%, rgba(239, 233, 227, 0.6) 100%);
  }
  
  .header-icon {
    width: 32px;
    height: 32px;
  }
  
  .card-number {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: var(--text-xs);
    color: var(--accent-orange);
  }
  
  .card-header h3 {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: var(--text-lg);
    color: var(--color-text);
  }
  
  .card-content {
    position: relative;
    opacity: 1;
    transform: none;
    padding: 0 var(--space-lg) var(--space-xl);
    display: none;
    background: transparent;
  }
  
  .team-card.active .card-content {
    display: flex;
  }
  
  .card-content h4,
  .card-content p,
  .stat-indicator,
  .card-link {
    transform: none;
    opacity: 1;
  }
  
  .card-content h4 {
    color: var(--color-text);
    font-size: var(--text-lg);
    margin-top: var(--space-md);
  }
  
  .card-content p {
    color: var(--color-text-light);
  }
}

@media (max-width: 480px) {
  .team-showcase-header h2 {
    font-size: var(--text-2xl);
  }
  
  .team-card {
    min-height: 150px;
  }
  
  .team-card.active {
    min-height: 300px;
  }
  
  .team-showcase-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .team-card,
  .card-glass,
  .card-content,
  .card-header,
  .card-shine {
    transition: none !important;
    animation: none !important;
  }
  
  .card-content h4,
  .card-content p,
  .stat-indicator,
  .card-link {
    transform: none !important;
    opacity: 1 !important;
  }
}
/* ============================================
   HOME PAGE - CTA Enhancements
   ============================================ */

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Responsive Design for Home Page Sections
   ============================================ */

@media (max-width: 968px) {
  .about-home-grid,
  .team-home-grid {
    grid-template-columns: 1fr;
  }
  
  .about-home-visual,
  .team-home-visual {
    order: -1;
  }
  
  .services-home-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .stats-overlay {
    position: static;
    margin-top: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .about-home-content h2,
  .team-home-content h2 {
    font-size: var(--text-3xl);
  }
  
  .services-home-grid {
    grid-template-columns: 1fr;
  }
  
  .highlight-item,
  .team-feature-item {
    gap: var(--space-md);
  }
  
  .highlight-icon {
    width: 48px;
    height: 48px;
  }
  
  .feature-number {
    width: 40px;
    height: 40px;
    font-size: var(--text-lg);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .stat-badge {
    padding: var(--space-sm) var(--space-md);
  }
  
  .badge-number {
    font-size: var(--text-xl);
  }
  
  .service-home-card {
    padding: var(--space-lg);
  }
  
  .service-icon-wrapper {
    width: 64px;
    height: 64px;
  }
  
  .service-home-icon {
    width: 36px;
    height: 36px;
  }
}

/* Desktop Navigation - Default State */
@media (min-width: 769px) {
  .nav-toggle {
    display: none !important;
  }
  
  .nav-backdrop {
    display: none !important;
  }
  
  .pill-nav {
    display: block !important;
  }
  
  .nav-menu {
    display: flex !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    flex-direction: row !important;
    padding: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Mobile Navigation - Tablet and Below */
@media (max-width: 768px) {
  .nav-toggle { 
    display: flex; 
  }
  
  .nav-backdrop {
    display: block;
  }
  
  /* Hide pill nav container on mobile */
  .pill-nav {
    position: static;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  
  /* Mobile menu slides in from right */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 85%;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    padding: 80px var(--space-lg) var(--space-xl);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    align-items: flex-start;
    overflow-y: auto;
    gap: var(--space-xs);
    z-index: 300;
    list-style: none;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  /* Mobile nav links */
  .nav-link {
    width: 100%;
    padding: var(--space-md) var(--space-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    font-size: var(--text-base);
    color: var(--color-text);
    transition: all var(--transition-base);
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-link:hover,
  .nav-link.active {
    background: var(--color-secondary);
    color: var(--color-accent);
    transform: translateX(8px);
  }
  
  /* Hide pill indicator on mobile */
  .pill-indicator {
    display: none;
  }
}

/* Very Small Mobile Devices */
@media (max-width: 480px) {
  .nav-menu {
    width: 260px;
    padding: 70px var(--space-md) var(--space-lg);
  }
  
  .nav-link {
    padding: var(--space-sm);
    font-size: var(--text-sm);
  }
}

/* ============================================
   Accessibility Improvements
   ============================================ */

/* Focus states for keyboard navigation */
.nav-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .nav-toggle,
  .hamburger,
  .hamburger::before,
  .hamburger::after,
  .nav-menu,
  .nav-backdrop {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================
   Header Scrolled State Mobile Fix
   ============================================ */

@media (max-width: 768px) {
  .header.scrolled {
    padding: 10px 0;
  }
  
  /* Adjust menu top position when header is scrolled */
  .header.scrolled .nav-menu {
    padding-top: 70px;
  }
}

/* ============================================
   SERVICES MODERN SECTION - COMPLETELY NEW DESIGN
   ============================================ */

.services-modern-section {
  position: relative;
  background: linear-gradient(180deg, #FAFAF9 0%, #F5F3F0 50%, #FAFAF9 100%);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

/* Section Header */
.services-modern-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 2;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(52, 152, 219, 0.1));
  padding: var(--space-sm) var(--space-lg);
  border-radius: 50px;
  border: 2px solid rgba(201, 181, 156, 0.3);
  margin-bottom: var(--space-lg);
}

.badge-icon {
  font-size: 1.5rem;
}

.badge-text {
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* Services Grid */
.services-modern-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  position: relative;
  z-index: 2;
}

/* Service Item */
.service-modern-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  min-height: 500px;
}

.service-diagonal-left .service-visual-wrapper {
  order: 1;
}

.service-diagonal-left .service-content-wrapper {
  order: 2;
}

.service-diagonal-right .service-visual-wrapper {
  order: 2;
}

.service-diagonal-right .service-content-wrapper {
  order: 1;
}

/* Visual Wrapper */
.service-visual-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image-container {
  position: relative;
  min-width: 200px !important;
  max-width: 100% !important;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-modern-item:hover .service-image-container {
  transform: perspective(1000px) translateY(-10px) rotateX(2deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.service-image-container img {
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-modern-item:hover .service-image-container img {
  transform: scale(1.05);
}

/* Image Overlay */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-xl);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-modern-item:hover .image-overlay {
  opacity: 1;
}

.overlay-number {
  font-size: 5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
}

/* Accent Shapes */
.service-accent-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(40px);
  z-index: -1;
  animation: float-gentle 8s ease-in-out infinite;
}

.service-diagonal-left .service-accent-shape {
  top: -30px;
  left: -30px;
}

.service-diagonal-right .service-accent-shape {
  bottom: -30px;
  right: -30px;
}

.shape-orange { background: linear-gradient(135deg, #E67E22, #D35400); }
.shape-blue { background: linear-gradient(135deg, #3498DB, #2980B9); }
.shape-green { background: linear-gradient(135deg, #27AE60, #229954); }
.shape-purple { background: linear-gradient(135deg, #9B59B6, #8E44AD); }

/* Content Wrapper */
.service-content-wrapper {
  padding: var(--space-xl);
  position: relative;
}

.service-icon-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(52, 152, 219, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-modern-item:hover .service-icon-badge {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-badge-icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
}

.service-modern-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

/* Features List */
.service-features-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

.feature-bullet {
  color: var(--color-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Stats Inline */
.service-stats-inline {
  display: flex;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background: rgba(249, 248, 246, 0.6);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

.stat-inline-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-inline-item strong {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-accent);
  line-height: 1;
}

.stat-inline-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Service Link */
.service-modern-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-accent);
  text-decoration: none;
  padding: var(--space-sm) 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.service-modern-link:hover {
  gap: var(--space-md);
  color: var(--accent-orange);
  border-bottom-color: var(--accent-orange);
}

.service-modern-link svg {
  transition: transform 0.3s ease;
}

.service-modern-link:hover svg {
  transform: translateX(4px);
}

/* CTA Section */
.services-modern-cta {
  margin-top: var(--space-3xl);
  padding: var(--space-2xl);
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  box-shadow: 0 20px 60px rgba(230, 126, 34, 0.3);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.services-modern-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.cta-content-box {
  flex: 1;
  color: #fff;
}

.cta-content-box h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-sm);
  color: #fff;
}

.cta-content-box p {
  font-size: var(--text-lg);
  opacity: 0.95;
  margin: 0;
  max-width: 600px;
}

.services-modern-cta .btn {
  background: var(--color-white);
  color: var(--accent-orange);
  border: 2px solid transparent;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all 0.3s ease;
}

.services-modern-cta .btn:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.services-modern-cta .btn svg {
  transition: transform 0.3s ease;
}

.services-modern-cta .btn:hover svg {
  transform: translateX(4px);
}

/* Background Decoration */
.services-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 181, 156, 0.06) 0%, transparent 70%);
  animation: float-gentle 25s ease-in-out infinite;
}

.decoration-circle.deco-1 {
  width: 600px;
  height: 600px;
  top: 10%;
  left: -200px;
  animation-delay: 0s;
}

.decoration-circle.deco-2 {
  width: 500px;
  height: 500px;
  bottom: 10%;
  right: -150px;
  animation-delay: -12s;
}

.decoration-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(201, 181, 156, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 181, 156, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-modern-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .service-diagonal-left .service-visual-wrapper,
  .service-diagonal-right .service-visual-wrapper {
    order: 1;
  }
  
  .service-diagonal-left .service-content-wrapper,
  .service-diagonal-right .service-content-wrapper {
    order: 2;
  }
  
  .service-image-container {
    max-width: 100%;
    height: 400px;
  }
  
  .services-modern-cta {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-content-box p {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .services-modern-grid {
    gap: var(--space-2xl);
  }
  
  .service-modern-item {
    gap: var(--space-xl);
  }
  
  .service-image-container {
    height: 320px;
  }
  
  .service-content-wrapper {
    padding: var(--space-lg);
  }
  
  .service-icon-badge {
    width: 64px;
    height: 64px;
  }
  
  .service-badge-icon {
    width: 36px;
    height: 36px;
  }
  
  .service-stats-inline {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .services-modern-cta {
    padding: var(--space-xl);
  }
  
  .overlay-number {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  .service-image-container {
    height: 280px;
    border-radius: 16px;
  }
  
  .service-modern-title {
    font-size: 1.5rem;
  }
  
  .service-features-list {
    gap: var(--space-sm);
  }
  
  .stat-inline-item strong {
    font-size: 1.5rem;
  }
  
  .services-modern-cta {
    padding: var(--space-lg);
  }
  
  .cta-content-box h3 {
    font-size: 1.25rem;
  }
  
  .cta-content-box p {
    font-size: var(--text-base);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .service-image-container,
  .service-icon-badge,
  .service-accent-shape,
  .decoration-circle {
    animation: none;
    transition: none;
  }
  
  .service-modern-item:hover .service-image-container {
    transform: none;
  }
}

/* ============================================
   SERVICES SHOWCASE - 4 in One Row with Zoom (FIXED)
   ============================================ */

/* ============================================
   ENHANCED SERVICES SHOWCASE - Image Extends on Hover
   ============================================ */

.services-showcase-enhanced {
  position: relative;
  background: linear-gradient(180deg, #FAFAF9 0%, #F5F3F0 100%);
  padding: var(--space-3xl) 0;
  overflow: visible; /* CHANGED: Allow overflow */
}

/* Section Header */
.showcase-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 2;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(52, 152, 219, 0.1));
  padding: var(--space-sm) var(--space-lg);
  border-radius: 50px;
  border: 2px solid rgba(201, 181, 156, 0.3);
  margin-bottom: var(--space-lg);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  color: var(--color-accent);
  transition: all 0.3s ease;
}

.header-badge svg {
  color: var(--accent-orange);
}

/* Services Row - 4 Cards Container */
.services-showcase-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 2;
  padding: var(--space-3xl) var(--space-sm); /* CHANGED: Added more padding for overflow */
}

/* Individual Service Card */
.service-showcase-card {
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  overflow: visible; /* CHANGED: Allow image to extend */
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
  outline: none;
  z-index: 1;
}

/* Scale down neighbors on hover */
.services-showcase-row:has(.service-showcase-card:hover) .service-showcase-card:not(:hover) {
  transform: scale(0.85); /* CHANGED: Scale down more */
  opacity: 0.5;
  filter: grayscale(0.4) blur(1px);
  z-index: 1;
}

/* Hovered card goes on top */
.service-showcase-card:hover {
  z-index: 200; /* CHANGED: Much higher z-index */
  transform: scale(1); /* Card stays same size */
}

/* Image Wrapper - THIS EXTENDS */
.service-image-wrap {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  background: linear-gradient(135deg, #E5E5E5, #F5F5F5);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* IMAGE EXTENDS DRAMATICALLY ON HOVER */
.service-showcase-card:hover .service-image-wrap {
  transform: scale(1.35) translateY(-25px); /* CHANGED: Image wrapper grows 35% and lifts */
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
  border-radius: 24px;
  z-index: 201;
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}

.service-showcase-card:hover .service-image-wrap img {
  transform: scale(1.15); /* CHANGED: Image itself also scales inside */
}

/* Shine Effect */
.image-shine {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  transition: all 0.6s ease;
  pointer-events: none;
  z-index: 10;
}

.service-showcase-card:hover .image-shine {
  top: 100%;
  left: 100%;
}

/* Overlay Content */
.service-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.92) 100%
  );
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 0 0 20px 20px;
  z-index: 202; /* CHANGED: Above image */
}

.service-showcase-card:hover .service-overlay-content {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.85) 30%,
    rgba(0, 0, 0, 0.98) 100%
  );
  padding: var(--space-xl) var(--space-2xl);
  transform: translateY(-10px); /* CHANGED: Lift content too */
}

/* Service Badge */
.service-badge {
  font-size: 2.5rem; /* CHANGED: Slightly larger */
  font-weight: 900;
  font-family: var(--font-heading);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
  text-stroke: 2px rgba(255, 255, 255, 0.2);
  align-self: flex-start;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: scale(0.7);
  transform-origin: top left;
}

.service-showcase-card:hover .service-badge {
  transform: scale(1.1); /* CHANGED: Slightly larger on hover */
  -webkit-text-stroke: 3px rgba(255, 255, 255, 0.5);
  text-stroke: 3px rgba(255, 255, 255, 0.5);
  color: rgba(230, 126, 34, 0.15);
}

/* Service Details */
.service-details {
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0.1s;
}

.service-showcase-card:hover .service-details {
  transform: translateY(0);
  opacity: 1;
}

.service-details h3 {
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: #fff;
  line-height: 1.2;
}

.service-details p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.9);
}

/* Service Metric */
.service-metric {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  margin-bottom: var(--space-sm);
}

.service-metric strong {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--accent-orange);
  line-height: 1;
}

.service-metric span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
}

/* Service Arrow */
.service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(230, 126, 34, 0.2);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-showcase-card:hover .service-arrow {
  background: var(--accent-orange);
  transform: translateX(10px) scale(1.1);
}

.service-arrow svg {
  color: #fff;
}

/* CTA Section */
.services-showcase-cta {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: var(--space-2xl);
}

.services-showcase-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.services-showcase-cta .btn svg {
  transition: transform 0.3s ease;
}

.services-showcase-cta .btn:hover svg {
  transform: translateX(6px);
}

/* Background Decoration */
.showcase-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.bg-circle-deco {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 181, 156, 0.08) 0%, transparent 70%);
  animation: float-gentle 25s ease-in-out infinite;
}

.bg-circle-1 {
  width: 600px;
  height: 600px;
  top: -150px;
  left: -200px;
  animation-delay: 0s;
}

.bg-circle-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -150px;
  animation-delay: -12s;
}

.bg-circle-3 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -6s;
}

@keyframes float-gentle {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.4;
  }
  50% {
    transform: translate(40px, -40px);
    opacity: 0.7;
  }
}

/* Focus States for Accessibility */
.service-showcase-card:focus {
  outline: 3px solid var(--accent-orange);
  outline-offset: 4px;
}

.service-showcase-card:focus:not(:focus-visible) {
  outline: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-showcase-row {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  
  .service-image-wrap {
    height: 400px;
  }
  
  .service-showcase-card:hover .service-image-wrap {
    transform: scale(1.25) translateY(-20px);
  }
}

@media (max-width: 768px) {
  .services-showcase-row {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: var(--space-lg);
  }
  
  .service-image-wrap {
    height: 380px;
  }
  
  .service-showcase-card:hover .service-image-wrap {
    transform: scale(1.15) translateY(-15px);
  }
  
  .service-badge {
    font-size: 2rem;
  }
  
  /* Always show details on mobile */
  .service-details {
    opacity: 1;
    transform: translateY(0);
  }
  
  .services-showcase-row:has(.service-showcase-card:hover) .service-showcase-card:not(:hover) {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

@media (max-width: 480px) {
  .service-image-wrap {
    height: 340px;
  }
  
  .service-showcase-card:hover .service-image-wrap {
    transform: scale(1.1) translateY(-10px);
  }
  
  .service-badge {
    font-size: 1.8rem;
  }
  
  .service-details h3 {
    font-size: 1.1rem;
  }
  
  .service-metric strong {
    font-size: 2rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .service-showcase-card,
  .service-image-wrap,
  .service-image-wrap img,
  .service-badge,
  .service-details,
  .service-arrow,
  .image-shine,
  .bg-circle-deco {
    animation: none !important;
    transition: none !important;
  }
  
  .service-showcase-card:hover,
  .service-showcase-card:hover .service-image-wrap {
    transform: none;
  }
  
  .service-details {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-showcase-card:hover .service-details {
  transform: translateY(0);
  opacity: 1;
}

.service-details h3 {
  font-size: clamp(1rem, 2vw, 1rem);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #fff;
  line-height: 1.2;
}

.service-details p {
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.9);
}

/* Service Metric */
.service-metric {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  margin-bottom: var(--space-sm);
}

.service-metric strong {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--accent-orange);
  line-height: 1;
}

.service-metric span {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
}

/* Service Arrow */
.service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(230, 126, 34, 0.2);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-showcase-card:hover .service-arrow {
  background: var(--accent-orange);
  transform: translateX(8px);
}

.service-arrow svg {
  color: #fff;
}

/* CTA Section */
.services-showcase-cta {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: var(--space-2xl);
}

.services-showcase-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.services-showcase-cta .btn svg {
  transition: transform 0.3s ease;
}

.services-showcase-cta .btn:hover svg {
  transform: translateX(6px);
}

/* Background Decoration */
.showcase-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.bg-circle-deco {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 181, 156, 0.08) 0%, transparent 70%);
  animation: float-gentle 25s ease-in-out infinite;
}

.bg-circle-1 {
  width: 600px;
  height: 600px;
  top: -150px;
  left: -200px;
  animation-delay: 0s;
}

.bg-circle-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -150px;
  animation-delay: -12s;
}

.bg-circle-3 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -6s;
}

@keyframes float-gentle {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.4;
  }
  50% {
    transform: translate(40px, -40px);
    opacity: 0.7;
  }
}

/* Focus States for Accessibility */
.service-showcase-card:focus {
  outline: 3px solid var(--accent-orange);
  outline-offset: 4px;
}

.service-showcase-card:focus:not(:focus-visible) {
  outline: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-showcase-row {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  
  .service-image-wrap {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .services-showcase-row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .service-image-wrap {
    height: 380px;
  }
  
  .service-badge {
    font-size: 5rem;
  }
  
  .service-showcase-card:hover {
    transform: scale(1.05) translateY(-10px);
  }
  
  /* Always show details on mobile */
  .service-details {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .service-image-wrap {
    height: 340px;
  }
  
  .service-badge {
    font-size: 4rem;
  }
  
  .service-details h3 {
    font-size: 1.3rem;
  }
  
  .service-metric strong {
    font-size: 2rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .service-showcase-card,
  .service-image-wrap img,
  .service-badge,
  .service-details,
  .service-arrow,
  .image-shine,
  .bg-circle-deco {
    animation: none !important;
    transition: none !important;
  }
  
  .service-showcase-card:hover {
    transform: none;
  }
}

.services-showcase-section {
  position: relative;
  background: linear-gradient(180deg, #FAFAF9 0%, #F9F8F6 100%);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

/* Header */
.showcase-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 2;
}

.header-label {
  display: inline-block;
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: rgba(230, 126, 34, 0.1);
  border-radius: 50px;
}

/* Services Row - 4 in one line */
.services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 2;
}

/* Service Block */
.service-block {
  position: relative;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-block:hover {
  z-index: 10;
  transform: scale(1.08);
}

/* FIXED: Image Container with proper dimensions */
.service-image-container {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 16px; /* FIXED: Reduced from 20px to prevent pill shape */
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-block:hover .service-image-container {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

/* FIXED: Image styling */
.service-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.service-block:hover .service-image-container img {
  transform: scale(1.15);
}

/* Service Overlay */
.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-xl);
  transition: background 0.4s ease;
}

.service-block:hover .service-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

/* Service Number */
.service-number {
  font-size: 6rem;
  font-weight: 900;
  font-family: var(--font-heading);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
  text-stroke: 2px rgba(255, 255, 255, 0.2);
  align-self: flex-start;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: scale(0.7);
  transform-origin: top left;
}

.service-block:hover .service-number {
  transform: scale(1);
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
  text-stroke: 2px rgba(255, 255, 255, 0.5);
}

/* Service Info */
.service-info {
  color: #fff;
  transform: translateY(15px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0.1s;
}

.service-block:hover .service-info {
  transform: translateY(0);
  opacity: 1;
}

.service-info h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: #fff;
  line-height: 1.2;
}

.service-info p {
  font-size: var(--text-sm);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.9);
}

.service-stat {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  padding-top: var(--space-sm);
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.service-stat strong {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--accent-orange);
  line-height: 1;
}

.service-stat span {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
  color: #fff;
}

/* Quick Stats Bar */
.services-quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.05), rgba(52, 152, 219, 0.05));
  border-radius: 20px;
  border: 2px solid rgba(201, 181, 156, 0.2);
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 2;
}

.quick-stat-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.quick-stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 48px;
  height: 48px;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-content strong {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 2px;
}

.stat-content span {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-light);
  line-height: 1.2;
}

/* CTA */
.services-showcase-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

.services-showcase-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.services-showcase-cta .btn svg {
  transition: transform 0.3s ease;
}

.services-showcase-cta .btn:hover svg {
  transform: translateX(4px);
}

/* Background Elements */
.showcase-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.bg-gradient-1,
.bg-gradient-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.bg-gradient-1 {
  background: linear-gradient(135deg, #E67E22, #D35400);
  top: -100px;
  left: -100px;
  animation: float-gentle 20s ease-in-out infinite;
}

.bg-gradient-2 {
  background: linear-gradient(135deg, #3498DB, #2980B9);
  bottom: -100px;
  right: -100px;
  animation: float-gentle 25s ease-in-out infinite reverse;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-image-container {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .services-row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .service-image-container {
    height: 350px;
  }

  .service-number {
    font-size: 4.5rem;
  }

  .service-info {
    opacity: 1;
    transform: translateY(0);
  }

  .services-quick-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .service-image-container {
    height: 320px;
    border-radius: 12px;
  }

  .service-number {
    font-size: 4rem;
    transform: scale(0.8);
  }

  .service-block:hover .service-number {
    transform: scale(0.9);
  }

  .service-info h3 {
    font-size: 1.2rem;
  }

  .service-info p {
    font-size: 0.85rem;
  }

  .service-stat strong {
    font-size: 1.8rem;
  }

  .services-quick-stats {
    grid-template-columns: 1fr;
    padding: var(--space-lg);
  }

  .quick-stat-item {
    padding: var(--space-sm) var(--space-md);
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .service-block,
  .service-image-container,
  .service-image-container img,
  .service-number,
  .service-info,
  .bg-gradient-1,
  .bg-gradient-2 {
    animation: none;
    transition: none;
  }

  .service-block:hover {
    transform: none;
  }

  .service-info {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================
   VIDEO HERO SECTION - Industrial Theme
   ============================================ */

.page-hero-video {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 0;
  background: var(--color-text);
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.1) brightness(0.7) saturate(0.9);
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.video-fallback {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.85) 0%,
    rgba(17, 17, 17, 0.6) 50%,
    rgba(17, 17, 17, 0.8) 100%
  );
  z-index: 1;
}

/* Content Positioning */
.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--space-2xl) 0;
  margin-top: 400px; /* Account for fixed header */
}

.hero-split-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-3xl);
  gap: var(--space-xl);
}

.hero-text-left,
.hero-text-right {
  flex: 1;
}

.hero-text-right {
  text-align: right;
}

.hero-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: var(--space-sm);
  opacity: 0.9;
}

.hero-title-video {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
  font-family: var(--font-heading);
  text-transform: uppercase;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  display: inline-block;
}

.hero-title-video.secondary {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--color-tertiary);
  opacity: 0.9;
}

.hero-line {
  width: 80px;
  height: 4px;
  background: var(--accent-orange);
  margin-top: var(--space-md);
  position: relative;
  overflow: hidden;
}

.hero-line.right {
  margin-left: auto;
  background: var(--color-white);
}

.hero-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: shimmer 3s infinite;
}

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

/* Subtitle & CTA */
.hero-subtitle-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-subtitle-video {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.hero-description {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-light:hover {
  background: var(--color-white);
  color: var(--color-text);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* Industrial Accents */
.industrial-accents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.accent-line {
  position: absolute;
  background: rgba(230, 126, 34, 0.3);
}

.accent-line.line-1 {
  width: 1px;
  height: 40%;
  top: 20%;
  left: 33%;
}

.accent-line.line-2 {
  width: 1px;
  height: 30%;
  top: 50%;
  right: 25%;
  background: rgba(255, 255, 255, 0.1);
}

.accent-box {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(230, 126, 34, 0.4);
  transform: rotate(45deg);
  animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 968px) {
  .page-hero-video {
    height: auto;
    min-height: 700px;
    padding: var(--space-2xl) 0;
  }
  
  .hero-split-text {
    flex-direction: column;
    gap: var(--space-2xl);
    text-align: center;
  }
  
  .hero-text-right {
    text-align: center;
  }
  
  .hero-line {
    margin: var(--space-sm) auto 0;
  }
  
  .hero-line.right {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-title-video {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  
  .hero-title-video.secondary {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
  
  .accent-line.line-1,
  .accent-line.line-2 {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-content-wrapper {
    margin-top: 60px;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
  
  .accent-box {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-hero-video {
    min-height: 600px;
  }
  
  .hero-subtitle-video {
    font-size: var(--text-xl);
  }
  
  .hero-description {
    font-size: var(--text-base);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    animation: none;
    transform: none;
  }
  
  .hero-line::after,
  .accent-box {
    animation: none;
  }
}

/* Video Loading State */
.video-container.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--accent-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 3;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================
   ENHANCED MISSION SECTION - Industrial Blueprint
   ============================================ */

.mission-enhanced {
  position: relative;
  background: linear-gradient(180deg, #F9F8F6 0%, #EFE9E3 100%);
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

/* Blueprint Grid Background */
.blueprint-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  opacity: 0.4;
}

.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(201, 181, 156, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 181, 156, 0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridPan 20s linear infinite;
}

@keyframes gridPan {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.grid-crosshair {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(230, 126, 34, 0.2);
  border-radius: 50%;
}

.grid-crosshair.crosshair-1 {
  top: 20%;
  left: 10%;
  animation: crosshairPulse 4s ease-in-out infinite;
}

.grid-crosshair.crosshair-2 {
  bottom: 30%;
  right: 15%;
  width: 100px;
  height: 100px;
  border-color: rgba(201, 181, 156, 0.15);
  animation: crosshairPulse 6s ease-in-out infinite reverse;
}

@keyframes crosshairPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

.measurement-markings {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 10px,
    rgba(230, 126, 34, 0.1) 10px,
    rgba(230, 126, 34, 0.1) 11px
  );
}

/* Floating Geometry */
.floating-geometry {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.float-gear {
  position: absolute;
  border: 2px solid rgba(201, 181, 156, 0.3);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.float-gear.gear-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  right: 20%;
  border-style: dashed;
  animation-duration: 30s;
}

.float-gear.gear-2 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 5%;
  border-width: 3px;
  opacity: 0.4;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.precision-circle {
  position: absolute;
  top: 40%;
  right: 10%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(230, 126, 34, 0.1);
  border-radius: 50%;
  animation: expandContract 8s ease-in-out infinite;
}

@keyframes expandContract {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.3); opacity: 0.1; }
}

.tech-square {
  position: absolute;
  bottom: 10%;
  right: 30%;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(201, 181, 156, 0.3);
  transform: rotate(45deg);
  animation: float 6s ease-in-out infinite;
}

/* Mission Grid Layout */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Visual Column */
.mission-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.visual-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Year Badge */
.year-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #E67E22, #D35400);
  color: white;
  padding: var(--space-md) var(--space-lg);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
  transform: rotate(-5deg) translateY(-20px);
  z-index: 10;
  animation: badgeFloat 3s ease-in-out infinite;
}

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

.year-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 900;
  font-family: var(--font-heading);
  line-height: 1;
}

.year-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.9;
}

/* Precision Indicator */
.precision-indicator {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.indicator-line {
  width: 2px;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--color-accent), transparent);
  position: relative;
  overflow: hidden;
}

.indicator-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--accent-orange);
  animation: pulseSlide 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(230, 126, 34, 0.5);
}

@keyframes pulseSlide {
  0% { top: -20%; opacity: 0; }
  50% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.precision-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* 3D Mission Icon */
.mission-icon-3d {
  position: relative;
  width: 200px;
  height: 200px;
  perspective: 1000px;
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.2) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.mission-icon-enhanced {
  width: 100%;
  height: 100%;
  animation: iconFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(230, 126, 34, 0.2));
}

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

.orbit-circle {
  animation: orbitRotate 20s linear infinite;
  transform-origin: center;
}

@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.star-path {
  animation: starShimmer 3s ease-in-out infinite;
}

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

/* Corner Brackets */
.corner-bracket {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(201, 181, 156, 0.4);
}

.corner-bracket.bracket-tl {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.corner-bracket.bracket-br {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

/* Content Column */
.mission-content-enhanced {
  position: relative;
}

.section-tag-enhanced {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.tag-line {
  width: 40px;
  height: 2px;
  background: var(--accent-orange);
}

.tag-text {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-orange);
}

.mission-title {
  margin-bottom: var(--space-xl);
  line-height: 1.1;
}

.title-row {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-heading);
}

.title-row.highlight {
  color: var(--accent-orange);
  position: relative;
  display: inline-block;
}

.title-row.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(230, 126, 34, 0.2);
  z-index: -1;
}

.title-outline {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: transparent;
  -webkit-text-stroke: 1px var(--color-tertiary);
  font-weight: 700;
  margin-top: var(--space-sm);
  opacity: 0.6;
}

/* Text Content */
.mission-body {
  margin-bottom: var(--space-xl);
}

.lead-text {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-md);
  border-left: 3px solid var(--accent-orange);
}

.body-text {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Typewriter Effect Cursor */
.typewriter-text {
  border-right: 3px solid var(--accent-orange);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: var(--accent-orange); }
}

/* Principle Card */
.mission-principle-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(249,248,246,0.9));
  border: 1px solid rgba(201, 181, 156, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.principle-content {
  position: relative;
  z-index: 1;
}

.quote-icon {
  width: 32px;
  height: 32px;
  color: var(--accent-orange);
  opacity: 0.3;
  margin-bottom: var(--space-sm);
}

.mission-principle-card blockquote {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.principle-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at bottom right, rgba(230, 126, 34, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Mission Stats */
.mission-stats-row {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.mini-stat {
  text-align: center;
}

.stat-value, .stat-unit {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--accent-orange);
  font-family: var(--font-heading);
}

.stat-unit {
  font-size: var(--text-lg);
  margin-left: 2px;
}

.stat-label {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-top: 4px;
  font-weight: 500;
}

.mini-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 181, 156, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .mission-visual {
    min-height: 350px;
    order: -1;
  }
  
  .visual-container {
    max-width: 300px;
  }
  
  .precision-indicator {
    right: -20px;
  }
  
  .mission-stats-row {
    gap: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .mini-stat-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .year-badge {
    transform: rotate(0) translateY(-10px);
    padding: var(--space-sm) var(--space-md);
  }
  
  .year-number {
    font-size: var(--text-2xl);
  }
  
  .title-outline {
    display: none;
  }
  
  .mission-principle-card {
    padding: var(--space-lg);
  }
  
  .mission-principle-card blockquote {
    font-size: var(--text-base);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .blueprint-grid, .floating-geometry {
    display: none;
  }
  
  .mission-icon-enhanced,
  .year-badge,
  .indicator-pulse,
  .grid-lines {
    animation: none;
  }
  
  .typewriter-text {
    border-right: none;
  }
}

/* ============================================
   3D IMAGE STYLES - Replacing SVG
   ============================================ */

.mission-icon-3d {
  position: relative;
  width: 280px;
  height: 280px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.image-3d-container {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: imageFloat 8s ease-in-out infinite;
}

.mission-image-3d {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(230, 126, 34, 0.25)) 
          drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
  border-radius: 20px;
  transform: translateZ(40px);
  transition: all 0.4s ease;
}

/* Enhanced Glow Behind Image */
.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at center, 
    rgba(230, 126, 34, 0.3) 0%, 
    rgba(230, 126, 34, 0.1) 40%, 
    transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

/* 3D Tilt Effect Classes (Added via JS) */
.image-3d-container.tilted {
  animation: none; /* Pause float on hover for better control */
}

/* Floating Animation */
@keyframes imageFloat {
  0%, 100% { 
    transform: translateY(0) translateZ(0) rotate(0deg); 
  }
  25% { 
    transform: translateY(-15px) translateZ(10px) rotate(1deg); 
  }
  50% { 
    transform: translateY(-20px) translateZ(20px) rotate(0deg); 
  }
  75% { 
    transform: translateY(-10px) translateZ(10px) rotate(-1deg); 
  }
}

/* Enhanced Responsive for Image */
@media (max-width: 968px) {
  .mission-icon-3d {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 480px) {
  .mission-icon-3d {
    width: 180px;
    height: 180px;
  }
  
  .mission-image-3d {
    filter: drop-shadow(0 10px 20px rgba(230, 126, 34, 0.2));
  }
}

/* ============================================
   ENHANCED TIMELINE - Heritage Section
   ============================================ */

.timeline-section {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(201, 181, 156, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(230, 126, 34, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Timeline Container */
.timeline-enhanced {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}

/* Central Track */
.timeline-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-track-line {
  position: absolute;
  inset: 0;
  background: var(--color-tertiary);
  opacity: 0.3;
}

.timeline-track-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, var(--accent-orange), var(--color-accent));
  height: 0%;
  transition: height 0.3s ease-out;
  box-shadow: 0 0 20px rgba(230, 126, 34, 0.4);
}

/* Timeline Grid */
.timeline-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  position: relative;
  z-index: 2;
}

/* Timeline Row Layout */
.timeline-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  gap: var(--space-xl);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-row.right .timeline-card {
  order: 3;
}

.timeline-row.right .timeline-node {
  order: 2;
}

.timeline-row.right .timeline-spacer {
  order: 1;
}

/* Timeline Cards */
.timeline-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(201, 181, 156, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.timeline-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-orange);
}

.timeline-card:hover .timeline-image-wrap img {
  transform: scale(1.1);
}

.highlight-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 248, 246, 0.95));
  border: 2px solid rgba(230, 126, 34, 0.3);
  box-shadow: 0 15px 50px rgba(230, 126, 34, 0.1);
}

/* Image Section */
.timeline-image-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--color-secondary);
}

.timeline-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.timeline-image-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--palette-3), var(--palette-4));
}

.timeline-image-fallback svg {
  width: 64px;
  height: 64px;
  opacity: 0.5;
}

.timeline-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42, 42, 42, 0.6) 100%);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.timeline-card:hover .timeline-image-overlay {
  opacity: 0.8;
}

/* Stage Badge */
.timeline-stage-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: rgba(255, 255, 255, 0.95);
  padding: var(--space-xs) var(--space-md);
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(201, 181, 156, 0.3);
  min-width: 60px;
}

.timeline-stage-badge.accent {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
}

.timeline-stage-badge.accent .stage-number,
.timeline-stage-badge.accent .stage-label {
  color: white;
}

.timeline-stage-badge.final {
  background: linear-gradient(135deg, var(--accent-orange), #D35400);
  border-color: transparent;
}

.timeline-stage-badge.final .stage-number,
.timeline-stage-badge.final .stage-label {
  color: white;
}

.stage-number {
  font-size: var(--text-xl);
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--accent-orange);
  line-height: 1;
}

.stage-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  font-weight: 600;
}

/* Content Section */
.timeline-content {
  padding: var(--space-xl);
}

.timeline-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.timeline-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201, 181, 156, 0.2);
  border-radius: 4px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

.timeline-tag.highlight {
  background: var(--accent-orange);
  color: white;
}

.timeline-tag.success {
  background: #27AE60;
  color: white;
}

.timeline-year {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-light);
  font-family: var(--font-heading);
}

.timeline-content h3 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.timeline-content p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
}

/* Icon Row */
.timeline-icon-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(201, 181, 156, 0.3);
  color: var(--color-text-light);
  font-size: var(--text-sm);
  font-weight: 500;
}

.t-icon {
  width: 32px;
  height: 32px;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
}

/* Mini Stats */
.timeline-stats-mini {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(201, 181, 156, 0.3);
}

.mini-stat-item {
  display: flex;
  flex-direction: column;
}

.mini-stat-item strong {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--accent-orange);
  font-family: var(--font-heading);
  line-height: 1;
}

.mini-stat-item span {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mini-stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(201, 181, 156, 0.4);
}

/* Highlights List */
.timeline-highlights {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.timeline-highlights li {
  padding-left: var(--space-md);
  position: relative;
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.timeline-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent-orange);
  border-radius: 50%;
}

/* Achievements Pills */
.timeline-achievements {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(201, 181, 156, 0.3);
}

.achievement-pill {
  background: rgba(230, 126, 34, 0.1);
  border: 1px solid rgba(230, 126, 34, 0.2);
  border-radius: 50px;
  padding: var(--space-xs) var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.achievement-pill strong {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--accent-orange);
  font-family: var(--font-heading);
  line-height: 1;
}

.achievement-pill span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  font-weight: 600;
}

/* Timeline Node (Center Dot) */
.timeline-node {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}

.node-dot {
  width: 20px;
  height: 20px;
  background: var(--accent-orange);
  border-radius: 50%;
  border: 4px solid var(--color-primary);
  box-shadow: 0 0 0 3px var(--accent-orange);
  z-index: 2;
  position: relative;
  transition: all 0.4s ease;
}

.timeline-row.visible .node-dot {
  animation: nodePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.node-dot.pulse {
  background: #27AE60;
  box-shadow: 0 0 0 3px #27AE60;
  animation: pulse 2s infinite;
}

.node-ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent-orange);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s ease;
}

.timeline-row.visible .node-ring {
  animation: ringExpand 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.node-ring.expand {
  border-color: #27AE60;
}

/* Animations */
@keyframes nodePop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes ringExpand {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px #27AE60, 0 0 0 10px rgba(39, 174, 96, 0); }
  50% { box-shadow: 0 0 0 3px #27AE60, 0 0 0 20px rgba(39, 174, 96, 0.2); }
}

/* Responsive Design */
@media (max-width: 968px) {
  .timeline-track {
    left: 30px;
  }
  
  .timeline-row,
  .timeline-row.right {
    grid-template-columns: 60px 1fr;
    gap: var(--space-lg);
  }
  
  .timeline-row .timeline-card,
  .timeline-row.right .timeline-card {
    order: 2;
  }
  
  .timeline-row .timeline-node,
  .timeline-row.right .timeline-node {
    order: 1;
    justify-content: flex-start;
    padding-left: 10px;
  }
  
  .timeline-spacer {
    display: none;
  }
  
  .timeline-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
}

@media (max-width: 480px) {
  .timeline-track {
    left: 20px;
  }
  
  .timeline-row {
    grid-template-columns: 40px 1fr;
    gap: var(--space-md);
  }
  
  .node-dot {
    width: 16px;
    height: 16px;
    border-width: 3px;
  }
  
  .timeline-image-wrap {
    height: 180px;
  }
  
  .timeline-content {
    padding: var(--space-lg);
  }
  
  .timeline-content h3 {
    font-size: var(--text-xl);
  }
  
  .timeline-achievements {
    justify-content: center;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .timeline-row,
  .timeline-card,
  .node-dot,
  .node-ring,
  .timeline-image-wrap img {
    animation: none !important;
    transition: none !important;
  }
  
  .timeline-track-progress {
    height: 100% !important;
  }
}

/* ============================================
   ENHANCED CORE VALUES SECTION
   ============================================ */

.values-enhanced {
  position: relative;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-primary) 100%);
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

/* Background Decorations */
.values-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.values-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 181, 156, 0.15) 0%, transparent 70%);
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  top: 40%;
  right: -5%;
  animation-delay: -7s;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, transparent 70%);
}

.orb-3 {
  width: 350px;
  height: 350px;
  bottom: -10%;
  left: 30%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.6;
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
    opacity: 0.5;
  }
}

.values-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(201, 181, 156, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 181, 156, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

/* Enhanced Section Header */
.section-header-enhanced {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 2;
}

.section-tags {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-lg);
  background: rgba(230, 126, 34, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(230, 126, 34, 0.2);
}

.section-header-enhanced .section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header-enhanced .section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

.header-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.line-accent {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.line-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.2);
}

/* Values Grid Layout */
.values-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
}

/* Enhanced Value Cards */
.value-card-enhanced {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(201, 181, 156, 0.2);
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.value-card-enhanced::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(249,248,246,0.6) 100%);
  z-index: -2;
  border-radius: inherit;
}

.card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
  z-index: -1;
  opacity: 0;
}

.value-card-enhanced:hover .card-glow {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.card-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, transparent 40%, var(--color-accent) 50%, transparent 60%);
  background-size: 200% 200%;
  background-position: 100% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: all 0.6s ease;
}

.value-card-enhanced:hover .card-border {
  opacity: 1;
  background-position: 0% 0%;
  animation: borderRotate 3s linear infinite;
}

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

.value-card-enhanced:hover {
  transform: translateY(-12px) rotateX(5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 15px 30px rgba(230, 126, 34, 0.1);
  border-color: rgba(230, 126, 34, 0.3);
}

/* Icon Styling */
.value-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.1) 0%, rgba(230, 126, 34, 0.05) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid rgba(230, 126, 34, 0.2);
  transition: all 0.4s ease;
}

.value-card-enhanced[data-value="discipline"] .icon-bg {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0.05) 100%);
  border-color: rgba(52, 152, 219, 0.2);
}

.value-card-enhanced[data-value="improvement"] .icon-bg {
  background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(39, 174, 96, 0.05) 100%);
  border-color: rgba(39, 174, 96, 0.2);
}

.value-card-enhanced:hover .icon-bg {
  transform: scale(1.1) rotate(5deg);
  border-radius: 30px;
}

.value-icon-enhanced {
  width: 56px;
  height: 56px;
  transition: all 0.4s ease;
}

.value-card-enhanced:hover .value-icon-enhanced {
  transform: scale(1.15);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

/* Floating Elements */
.icon-float-element {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-orange);
  opacity: 0.2;
  animation: floatElement 3s ease-in-out infinite;
}

.value-card-enhanced[data-value="discipline"] .icon-float-element {
  background: #3498DB;
}

.value-card-enhanced[data-value="improvement"] .icon-float-element {
  background: #27AE60;
}

.float-1 {
  top: 0;
  right: 0;
  animation-delay: 0s;
}

.float-2 {
  bottom: 0;
  left: 0;
  width: 12px;
  height: 12px;
  animation-delay: -1.5s;
}

@keyframes floatElement {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5px, -5px) scale(1.2); }
}

/* Content Styling */
.value-number {
  font-size: var(--text-sm);
  font-weight: 800;
  color: rgba(201, 181, 156, 0.5);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
  transition: all 0.3s ease;
}

.value-card-enhanced:hover .value-number {
  color: var(--accent-orange);
  transform: translateX(5px);
}

.value-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  position: relative;
  display: inline-block;
}

.value-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), transparent);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.value-card-enhanced:hover .value-title::after {
  width: 100%;
}

.value-description {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.value-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: auto;
}

.feature-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-light);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(201, 181, 156, 0.15);
  border-radius: 20px;
  border: 1px solid rgba(201, 181, 156, 0.3);
  transition: all 0.3s ease;
}

.value-card-enhanced[data-value="precision"] .feature-tag {
  background: rgba(230, 126, 34, 0.1);
  border-color: rgba(230, 126, 34, 0.2);
  color: #D35400;
}

.value-card-enhanced[data-value="discipline"] .feature-tag {
  background: rgba(52, 152, 219, 0.1);
  border-color: rgba(52, 152, 219, 0.2);
  color: #2980B9;
}

.value-card-enhanced[data-value="improvement"] .feature-tag {
  background: rgba(39, 174, 96, 0.1);
  border-color: rgba(39, 174, 96, 0.2);
  color: #229954;
}

.value-card-enhanced:hover .feature-tag {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .values-grid-enhanced {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .value-card-enhanced {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: var(--space-lg);
    align-items: center;
    text-align: left;
  }
  
  .value-icon-wrapper {
    margin: 0;
    width: 100px;
    height: 100px;
  }
  
  .value-number {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
  }
  
  .value-title::after {
    left: 0;
    transform: none;
  }
}

@media (max-width: 600px) {
  .value-card-enhanced {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-xl);
  }
  
  .value-icon-wrapper {
    margin: 0 auto var(--space-lg);
  }
  
  .value-number {
    position: static;
    margin-bottom: var(--space-sm);
  }
  
  .value-features {
    justify-content: center;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .value-card-enhanced,
  .icon-bg,
  .value-icon-enhanced,
  .value-number,
  .icon-float-element,
  .values-orb {
    animation: none !important;
    transition: none !important;
  }
  
  .value-card-enhanced:hover {
    transform: none;
  }
}

/* FIX: Core Values content was hidden by global .card-content (team section) */
.values-enhanced .value-card-content{
  position: relative;
  width: 100%;
  height: auto;
  opacity: 1;
  transform: none;
  display: block;
  padding: 0;
  background: transparent;
  z-index: 2;
}
/* Partnerships 3D Section Styles */
.partnerships-3d-section {
  position: relative;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-primary) 100%);
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

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

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.3) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: -10s;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(201, 181, 156, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 181, 156, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

/* Enhanced Header */
.section-header-enhanced {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-lg);
  background: rgba(230, 126, 34, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(230, 126, 34, 0.2);
}

.header-accent-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.header-accent-line span {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.accent-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.2);
}

/* 3D Cards Grid */
.partnerships-3d-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  perspective: 2000px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-3xl);
}

.partner-3d-card {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.card-3d-wrapper {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(201, 181, 156, 0.3);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
  height: 100%;
}

.partner-3d-card:hover {
  z-index: 10;
}

.partner-3d-card:hover .card-3d-wrapper {
  transform: translateY(-20px) rotateX(5deg) translateZ(50px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 20px 40px rgba(230, 126, 34, 0.1);
  border-color: rgba(230, 126, 34, 0.5);
}

/* Card Shine Effect */
.card-shine {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  transition: all 0.8s ease;
  pointer-events: none;
  z-index: 10;
}

.partner-3d-card:hover .card-shine {
  top: 0;
  left: 0;
}

/* Border Glow */
.card-border-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  padding: 2px;
  background: linear-gradient(135deg, var(--accent-orange), transparent, var(--color-accent));
  background-size: 200% 200%;
  background-position: 100% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s ease;
  animation: borderRotate 3s linear infinite;
}

.card-border-glow.blue {
  background: linear-gradient(135deg, #3498DB, transparent, #2980B9);
}

.card-border-glow.green {
  background: linear-gradient(135deg, #27AE60, transparent, #229954);
}

.partner-3d-card:hover .card-border-glow {
  opacity: 1;
}

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

/* Partner Visual */
.partner-visual {
  position: relative;
  padding: var(--space-2xl);
  background: linear-gradient(135deg, rgba(249, 248, 246, 0.5), rgba(239, 233, 227, 0.5));
  border-bottom: 1px solid rgba(201, 181, 156, 0.2);
  overflow: hidden;
}

.logo-container {
  position: relative;
  width: 120px;
  height: 60px;
  margin: 0 auto var(--space-md);
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.partner-3d-card:hover .logo-container {
  transform: translateZ(30px) scale(1.1);
}

.logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

.logo-placeholder svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.logo-glow.blue {
  background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, transparent 70%);
}

.logo-glow.green {
  background: radial-gradient(circle, rgba(39, 174, 96, 0.2) 0%, transparent 70%);
}

.partner-3d-card:hover .logo-glow {
  opacity: 1;
}

.industry-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(201, 181, 156, 0.3);
  backdrop-filter: blur(10px);
}

/* Partner Content */
.partner-content {
  padding: var(--space-xl);
  position: relative;
  z-index: 2;
}

.partner-content h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.tier-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}

.tier-badge.tier-1 {
  background: rgba(230, 126, 34, 0.1);
  color: var(--accent-orange);
  border: 1px solid rgba(230, 126, 34, 0.3);
}

.tier-badge.tier-2 {
  background: rgba(39, 174, 96, 0.1);
  color: #27AE60;
  border: 1px solid rgba(39, 174, 96, 0.3);
}

.partner-content p {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

/* Partner Metrics */
.partner-metrics {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(201, 181, 156, 0.3);
  margin-bottom: var(--space-lg);
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text);
  font-family: var(--font-heading);
  line-height: 1;
}

.metric-label {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.metric-divider {
  width: 1px;
  height: 30px;
  background: rgba(201, 181, 156, 0.4);
}

/* Hover Hint */
.hover-hint {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent-orange);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.partner-3d-card:hover .hover-hint {
  opacity: 1;
  transform: translateY(0);
}

.hover-hint svg {
  transition: transform 0.3s ease;
}

.partner-3d-card:hover .hover-hint svg {
  transform: translateX(4px);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-xl) var(--space-2xl);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(201, 181, 156, 0.2);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.trust-text span {
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 181, 156, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .partnerships-3d-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
  }
  
  .partner-3d-card:hover .card-3d-wrapper {
    transform: translateY(-10px) scale(1.02);
  }
}

@media (max-width: 768px) {
  .trust-indicators {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .trust-divider {
    width: 100%;
    height: 1px;
  }
  
  .partner-content {
    padding: var(--space-lg);
  }
  
  .partner-visual {
    padding: var(--space-xl);
  }
}

@media (max-width: 480px) {
  .partnerships-3d-section {
    padding: var(--space-2xl) 0;
  }
  
  .logo-container {
    width: 100px;
    height: 50px;
  }
  
  .industry-badge {
    font-size: 0.65rem;
  }
  
  .partner-metrics {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .metric-divider {
    width: 100%;
    height: 1px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .floating-orb,
  .card-border-glow,
  .card-shine,
  .partner-3d-card,
  .card-3d-wrapper {
    animation: none !important;
    transition: none !important;
  }
  
  .partner-3d-card:hover .card-3d-wrapper {
    transform: none;
  }
  
  .hover-hint {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   SERVICES HERO - Cinematic Technical Edition
   ============================================ */

.services-hero-video {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 1000px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 0;
  background: #0a0a0a;
  isolation: isolate;
}

.services-hero-video .video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services-hero-video .hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.1) saturate(0.8) brightness(0.4);
  transform: scale(1.1);
  animation: slowDrift 20s ease-in-out infinite alternate;
}

@keyframes slowDrift {
  0% { transform: scale(1.1) translate(0, 0); }
  100% { transform: scale(1.15) translate(-1%, -1%); }
}

/* Radial Vignette Overlay */
.hero-overlay-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, 
    transparent 0%, 
    rgba(10, 10, 10, 0.4) 50%, 
    rgba(10, 10, 10, 0.9) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Technical Grid Overlay (HUD Effect) */
.hud-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(230, 126, 34, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 126, 34, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

/* CRT Scan Line Effect */
.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(230, 126, 34, 0.3);
  box-shadow: 0 0 10px rgba(230, 126, 34, 0.5);
  animation: scanMove 8s linear infinite;
  z-index: 3;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes scanMove {
  0% { top: -10%; opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.5; }
  100% { top: 110%; opacity: 0; }
}

/* Content Layout */
.services-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 120px 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-orange);
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 0.8s ease forwards 0.2s;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7);
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(230, 126, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0); }
}

@keyframes fadeDown {
  to { opacity: 1; transform: translateY(0); }
}

/* Title Styling */
.services-hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: titleReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.5s; }
.title-line:nth-child(3) { animation-delay: 0.7s; }

.title-line.highlight {
  color: var(--accent-orange);
  position: relative;
  display: inline-block;
}

.title-line.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(230, 126, 34, 0.3);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 0.8s ease forwards 1s;
}

@keyframes titleReveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lineGrow {
  to { transform: scaleX(1); }
}

/* Subtitle */
.services-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

/* Tech Specs Bar */
.hero-tech-specs {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  width: fit-content;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.1s;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.spec-icon {
  width: 40px;
  height: 40px;
  color: var(--accent-orange);
  opacity: 0.8;
}

.spec-data {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.spec-value {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #fff;
  font-family: var(--font-heading);
}

.spec-unit {
  font-size: var(--text-sm);
  color: var(--accent-orange);
  font-weight: 700;
  margin-left: 4px;
}

.spec-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.spec-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Floating Technical Elements */
.floating-tech-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.tech-gear {
  position: absolute;
  color: rgba(230, 126, 34, 0.15);
  will-change: transform;
  transition: transform 0.3s ease-out;
}

.tech-gear.gear-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
  animation: rotateSlow 30s linear infinite;
}

.tech-gear.gear-2 {
  width: 120px;
  height: 120px;
  bottom: 30%;
  right: 25%;
  animation: rotateSlow 25s linear infinite reverse;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.tech-crosshair {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(230, 126, 34, 0.2);
  border-radius: 50%;
}

.tech-crosshair::before,
.tech-crosshair::after {
  content: '';
  position: absolute;
  background: rgba(230, 126, 34, 0.3);
}

.tech-crosshair::before {
  width: 2px;
  height: 20px;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.tech-crosshair::after {
  width: 20px;
  height: 2px;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.crosshair-1 {
  top: 25%;
  left: 15%;
  animation: crosshairFloat 6s ease-in-out infinite;
}

.crosshair-2 {
  bottom: 35%;
  left: 8%;
  animation: crosshairFloat 8s ease-in-out infinite reverse;
}

@keyframes crosshairFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  50% { transform: translate(10px, -10px); opacity: 0.6; }
}

.dimension-line {
  position: absolute;
  background: rgba(230, 126, 34, 0.2);
}

.dimension-line.line-1 {
  width: 100px;
  height: 1px;
  top: 40%;
  right: 20%;
  animation: linePulse 4s ease-in-out infinite;
}

.dimension-line.line-2 {
  width: 1px;
  height: 80px;
  top: 60%;
  right: 30%;
  animation: linePulse 4s ease-in-out infinite 1s;
}

@keyframes linePulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.5; }
}

/* Scroll Indicator */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 20;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.5s;
  cursor: pointer;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent-orange), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--accent-orange);
  animation: scrollDown 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--accent-orange);
}

@keyframes scrollDown {
  0% { top: -20px; opacity: 0; }
  50% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.scroll-text {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
  .services-hero-video {
    min-height: 600px;
  }
  
  .hero-tech-specs {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 400px;
  }
  
  .spec-divider {
    width: 100%;
    height: 1px;
  }
  
  .tech-gear.gear-1,
  .tech-gear.gear-2 {
    opacity: 0.1;
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .services-hero-title {
    font-size: 2.5rem;
  }
  
  .hero-badge {
    font-size: var(--text-xs);
  }
  
  .floating-tech-elements {
    display: none;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero-video-bg,
  .tech-gear,
  .scan-line,
  .badge-pulse,
  .scroll-line::after {
    animation: none;
  }
  
  .title-line,
  .hero-badge,
  .services-hero-subtitle,
  .hero-tech-specs,
  .scroll-hint {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ============================================
   ENHANCED PROCESS SECTION - Manufacturing Pipeline
   ============================================ */

.process-section-enhanced {
  position: relative;
  background: linear-gradient(180deg, var(--color-primary) 0%, #FAFAF9 50%, var(--color-primary) 100%);
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

/* Technical Background Grid */
.process-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(201, 181, 156, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 181, 156, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  animation: gridSlide 20s linear infinite;
}

@keyframes gridSlide {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

.process-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(230, 126, 34, 0.15);
  top: -200px;
  left: -100px;
  animation: floatOrb 15s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(52, 152, 219, 0.1);
  bottom: -150px;
  right: -100px;
  animation: floatOrb 18s ease-in-out infinite reverse;
}

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

/* Section Header */
.section-header-enhanced {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-lg);
  background: rgba(230, 126, 34, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(230, 126, 34, 0.2);
}

/* Pipeline Layout */
.process-pipeline-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

.pipeline-svg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 300px;
  transform: translateY(-50%);
  z-index: 1;
  display: none; /* Hidden on mobile */
}

.pipe-progress {
  transition: stroke-dashoffset 2s ease-out;
}

/* Process Steps Grid */
.process-steps-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
}

/* Individual Process Node */
.process-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Node Markers (The connecting dots) */
.node-marker {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  z-index: 3;
}

.marker-ring {
  position: absolute;
  inset: 0;
  border: 3px solid var(--color-tertiary);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.marker-dot {
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border: 3px solid var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--accent-orange);
  font-size: var(--text-lg);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.marker-dot.complete {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
}

.marker-pulse {
  position: absolute;
  inset: 0;
  border: 3px solid var(--accent-orange);
  border-radius: 50%;
  opacity: 0;
  animation: markerPulse 2s ease-out infinite;
}

.marker-pulse.complete {
  animation: markerPulseComplete 2s ease-out infinite;
}

@keyframes markerPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes markerPulseComplete {
  0% { transform: scale(1); opacity: 0.8; background: rgba(230, 126, 34, 0.3); }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Process Cards */
.process-card-enhanced {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(201, 181, 156, 0.3);
  padding: var(--space-xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.process-card-enhanced:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(230, 126, 34, 0.1);
  border-color: rgba(230, 126, 34, 0.5);
}

.process-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.process-card-enhanced:hover::before {
  transform: scaleX(1);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.process-card-enhanced:hover .card-glow {
  opacity: 1;
}

.card-inner {
  position: relative;
  z-index: 2;
}

/* Card Visual (Icon Area) */
.card-visual {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(230, 126, 34, 0.05));
  border: 2px solid rgba(230, 126, 34, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  position: relative;
  transition: all 0.3s ease;
}

.card-visual.blue {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0.05));
  border-color: rgba(52, 152, 219, 0.2);
}

.card-visual.green {
  background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(39, 174, 96, 0.05));
  border-color: rgba(39, 174, 96, 0.2);
}

.card-visual.purple {
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(155, 89, 182, 0.05));
  border-color: rgba(155, 89, 182, 0.2);
}

.card-visual.orange {
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.2), rgba(230, 126, 34, 0.1));
  border-color: var(--accent-orange);
}

.process-card-enhanced:hover .card-visual {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.visual-icon {
  width: 32px;
  height: 32px;
  color: var(--color-text);
}

.visual-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid rgba(201, 181, 156, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Card Content */
.card-content-service h3 {
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  line-height: 1.3;
}

.card-content-service p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.final-badge {
  display: inline-block;
  background: var(--accent-orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: var(--space-sm);
}

/* Spec List (Technical Details) */
.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spec-list li {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dotted rgba(201, 181, 156, 0.3);
}

.spec-list li span {
  font-weight: 600;
  color: var(--color-text);
  font-family: var(--font-heading);
}

/* Connection Arrow (between cards on mobile) */
.card-arrow {
  display: none; /* Hidden on desktop */
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-tertiary);
  animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* Hover State Interactions */
.process-node:hover .marker-dot {
  background: var(--accent-orange);
  color: white;
  transform: scale(1.1);
}

.process-node:hover .marker-ring {
  border-color: var(--accent-orange);
  transform: scale(1.2);
  opacity: 0.5;
}

/* Active State (when scrolled into view) */
.process-node.active .process-card-enhanced {
  border-color: rgba(230, 126, 34, 0.3);
  box-shadow: 0 8px 30px rgba(230, 126, 34, 0.15);
}

.process-node.active .marker-dot {
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.2);
}

/* Desktop Horizontal Line Connections */
@media (min-width: 1024px) {
  .pipeline-svg {
    display: block;
  }
  
  .process-steps-enhanced {
    display: flex;
    justify-content: space-between;
    gap: 0;
    padding: 0 50px;
  }
  
  .process-node {
    flex: 1;
    max-width: 220px;
  }
  
  .process-node:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-tertiary) 50%, transparent);
    z-index: 1;
    pointer-events: none;
  }
  
  .card-arrow {
    display: none !important;
  }
}

/* Tablet Adjustments */
@media (max-width: 1023px) and (min-width: 768px) {
  .process-steps-enhanced {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-node:nth-child(4),
  .process-node:nth-child(5) {
    grid-column: span 1;
    justify-self: center;
  }
}

/* Mobile Layout (Vertical Timeline) */
@media (max-width: 767px) {
  .process-steps-enhanced {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: var(--space-2xl);
  }
  
  .process-node {
    flex-direction: row;
    align-items: stretch;
    gap: var(--space-lg);
  }
  
  .node-marker {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  /* Connecting line for mobile */
  .process-node:not(:last-child) .node-marker::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + var(--space-xl));
    background: linear-gradient(to bottom, var(--color-tertiary), transparent);
    z-index: -1;
  }
  
  .process-card-enhanced {
    flex: 1;
  }
  
  .card-arrow {
    display: block;
  }
  
  /* Remove last arrow */
  .process-node:last-child .card-arrow {
    display: none;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .process-bg-grid,
  .orb-1,
  .orb-2,
  .marker-pulse,
  .card-arrow {
    animation: none;
  }
  
  .pipe-progress {
    transition: none;
    stroke-dashoffset: 0 !important;
  }
}

/* ============================================
   ENHANCED FAQ SECTION - Technical Documentation
   ============================================ */

.faq-enhanced-section {
  position: relative;
  background: linear-gradient(180deg, var(--color-primary) 0%, #FAFAF9 100%);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

/* Background Pattern */
.faq-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 2px 2px, rgba(201, 181, 156, 0.15) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

.faq-accent-line {
  position: absolute;
  top: 0;
  left: 80px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgba(230, 126, 34, 0.2) 20%, 
    rgba(230, 126, 34, 0.2) 80%, 
    transparent 100%
  );
  pointer-events: none;
}

/* Header */
.faq-header-enhanced {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 2;
}

.faq-header-enhanced .header-badge {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-lg);
  background: rgba(230, 126, 34, 0.1);
  border: 1px solid rgba(230, 126, 34, 0.2);
  border-radius: 50px;
}

.faq-header-enhanced .section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.faq-header-enhanced .section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FAQ Grid Layout */
.faq-grid-enhanced {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
}

/* Individual FAQ Card */
.faq-card-enhanced {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  align-items: start;
  position: relative;
}

/* Number Wrap */
.faq-number-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--space-md);
}

.faq-number {
  font-size: var(--text-2xl);
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--color-tertiary);
  line-height: 1;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.number-line {
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, var(--accent-orange), transparent);
  margin-top: var(--space-sm);
  transition: height 0.4s ease;
}

.faq-card-enhanced.active .faq-number {
  color: var(--accent-orange);
  opacity: 1;
  transform: scale(1.1);
}

.faq-card-enhanced.active .number-line {
  height: 40px;
}

/* Content Wrap */
.faq-content-wrap {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 181, 156, 0.3);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-card-enhanced:hover .faq-content-wrap {
  border-color: rgba(230, 126, 34, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.faq-card-enhanced.active .faq-content-wrap {
  border-color: rgba(230, 126, 34, 0.4);
  box-shadow: 0 12px 40px rgba(230, 126, 34, 0.1);
}

/* Trigger Button */
.faq-trigger {
  width: 100%;
  padding: var(--space-xl);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  gap: var(--space-lg);
  position: relative;
  transition: background 0.3s ease;
}

.faq-trigger:hover {
  background: rgba(230, 126, 34, 0.02);
}

.trigger-header {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.faq-category {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-orange);
  display: inline-block;
  padding: 4px 12px;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 20px;
  width: fit-content;
  transition: all 0.3s ease;
}

.faq-trigger:hover .faq-category {
  background: var(--accent-orange);
  color: white;
  transform: translateY(-2px);
}

.faq-trigger h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-trigger:hover h3 {
  color: var(--accent-orange);
}

/* Plus/Minus Icon */
.trigger-icon {
  width: 32px;
  height: 32px;
  position: relative;
  flex-shrink: 0;
  border: 2px solid var(--color-tertiary);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.icon-line {
  position: absolute;
  background: var(--color-text);
  transition: all 0.3s ease;
}

.icon-line:first-child {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-line:last-child {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-trigger:hover .trigger-icon {
  border-color: var(--accent-orange);
  transform: rotate(90deg);
}

.faq-trigger:hover .icon-line {
  background: var(--accent-orange);
}

.faq-card-enhanced.active .trigger-icon {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: rotate(45deg);
}

.faq-card-enhanced.active .icon-line {
  background: white;
}

/* FAQ Panel (Answer) */
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), 
              padding 0.5s ease;
  background: rgba(249, 248, 246, 0.5);
  border-top: 1px solid rgba(201, 181, 156, 0.2);
}

.faq-card-enhanced.active .faq-panel {
  max-height: 500px; /* Adjust based on content */
}

.panel-content {
  padding: 0 var(--space-xl) var(--space-xl);
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.8;
}

.panel-content p {
  margin-bottom: var(--space-md);
}

/* Spec List within FAQ */
.faq-spec-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-spec-list li {
  padding-left: var(--space-lg);
  position: relative;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.faq-spec-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: 700;
}

.faq-spec-list li strong {
  color: var(--color-text);
  font-weight: 600;
}

/* Client Tag */
.faq-client-tag {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: rgba(230, 126, 34, 0.05);
  border-left: 3px solid var(--accent-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: var(--text-sm);
}

.faq-client-tag span {
  font-weight: 700;
  color: var(--color-text);
}

/* Metrics Grid in FAQ */
.faq-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 181, 156, 0.2);
}

.metric-box {
  text-align: center;
  padding: var(--space-sm);
}

.metric-val {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--accent-orange);
  line-height: 1;
}

.metric-unit {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 2px;
}

.metric-label {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  margin-top: 4px;
  display: block;
}

/* Quote Block */
.faq-quote {
  margin: var(--space-lg) 0;
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.05), rgba(211, 84, 0, 0.05));
  border-left: 4px solid var(--accent-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--color-text);
  font-weight: 500;
  position: relative;
}

.faq-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 4rem;
  color: var(--accent-orange);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

/* Featured Tech Badge (for CNC question) */
.featured-tech {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 181, 156, 0.3);
}

.tech-badge {
  background: var(--accent-orange);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
}

.tech-info h4 {
  margin: 0 0 4px 0;
  font-size: var(--text-base);
  color: var(--color-text);
}

.tech-info p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

/* Highlight Box */
.highlight-box {
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.2);
  border-radius: var(--radius-md);
  color: #27AE60;
  font-size: var(--text-sm);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-accent-line {
    left: 30px;
  }
  
  .faq-card-enhanced {
    grid-template-columns: 50px 1fr;
    gap: var(--space-md);
  }
  
  .faq-number {
    font-size: var(--text-xl);
  }
  
  .faq-trigger {
    padding: var(--space-lg);
  }
  
  .faq-trigger h3 {
    font-size: var(--text-lg);
  }
  
  .trigger-icon {
    width: 28px;
    height: 28px;
  }
  
  .panel-content {
    padding: 0 var(--space-lg) var(--space-lg);
  }
  
  .faq-metrics {
    grid-template-columns: 1fr;
  }
  
  .featured-tech {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .faq-card-enhanced {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .faq-number-wrap {
    flex-direction: row;
    padding-top: 0;
    gap: var(--space-sm);
  }
  
  .number-line {
    width: 40px;
    height: 2px;
    margin-top: 0;
    background: linear-gradient(to right, var(--accent-orange), transparent);
  }
  
  .faq-accent-line {
    display: none;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .faq-panel {
    transition: none;
  }
  
  .faq-card-enhanced .faq-content-wrap,
  .faq-trigger .trigger-icon,
  .faq-number-wrap .number-line {
    transition: none;
  }
}

/* ============================================
   CONTACT PAGE - ENHANCED STYLES
   ============================================ */

.contact-hero-video {
  height: 90vh;
  min-height: 600px;
}

.contact-hero-video .hero-video {
  filter: contrast(1.1) saturate(0.7) brightness(0.5);
}

/* Quick Contact Bar */
.contact-quick-bar {
  background: var(--color-white);
  padding: var(--space-xl) 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.quick-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 181, 156, 0.3);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.quick-contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: var(--accent-orange);
}

.quick-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.quick-contact-item:hover .quick-icon {
  transform: scale(1.1) rotate(10deg);
}

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

.quick-info {
  display: flex;
  flex-direction: column;
}

.quick-label {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.quick-value {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
}

/* Enhanced Contact Grid */
.contact-grid-enhanced {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* Form Card */
.form-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(201, 181, 156, 0.3);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.form-card:focus-within::before {
  transform: scaleX(1);
}

.form-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-secondary);
}

.form-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(230, 126, 34, 0.2));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
}

.form-icon svg {
  width: 32px;
  height: 32px;
}

.form-header h3 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin: 0;
}

.form-header p {
  color: var(--color-text-light);
  margin: 4px 0 0;
  font-size: var(--text-base);
}

/* Enhanced Form Styles */
.contact-form-enhanced {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group.floating-label {
  position: relative;
  margin-bottom: var(--space-xs);
}

.form-group.floating-label input,
.form-group.floating-label select,
.form-group.floating-label textarea {
  width: 100%;
  padding: var(--space-md) var(--space-md) var(--space-md) var(--space-sm);
  border: 2px solid var(--color-tertiary);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-family: var(--font-primary);
  background: var(--color-white);
  transition: all 0.3s ease;
  appearance: none;
}

.form-group.floating-label textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.floating-label label {
  position: absolute;
  left: var(--space-sm);
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  padding: 0 4px;
  color: var(--color-text-light);
  font-size: var(--text-base);
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group.floating-label textarea + label {
  top: 24px;
}

.form-group.floating-label input:focus,
.form-group.floating-label select:focus,
.form-group.floating-label textarea:focus {
  border-color: var(--accent-orange);
  outline: none;
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}

.form-group.floating-label input:focus + label,
.form-group.floating-label input:not(:placeholder-shown) + label,
.form-group.floating-label select:focus + label,
.form-group.floating-label select:valid + label,
.form-group.floating-label textarea:focus + label,
.form-group.floating-label textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: var(--text-sm);
  color: var(--accent-orange);
  font-weight: 600;
}

.form-group.floating-label input.error,
.form-group.floating-label select.error,
.form-group.floating-label textarea.error {
  border-color: #D32F2F;
}

.error-message {
  color: #D32F2F;
  font-size: var(--text-sm);
  margin-top: 4px;
  display: none;
}

.error-message.visible {
  display: block;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-secondary);
}

.form-assurance {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.btn-submit {
  position: relative;
  min-width: 160px;
  overflow: hidden;
}

.btn-loader {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: inherit;
}

.btn-loader svg {
  width: 24px;
  height: 24px;
  animation: rotate 1s linear infinite;
}

.btn-submit.loading .btn-text {
  opacity: 0;
}

.btn-submit.loading .btn-loader {
  display: flex;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Success Message */
.success-message-enhanced {
  text-align: center;
  padding: var(--space-2xl);
}

.success-animation {
  margin-bottom: var(--space-lg);
}

.success-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #27AE60, #229954);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.success-circle svg {
  width: 40px;
  height: 40px;
  color: white;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.6s ease forwards 0.3s;
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.success-message-enhanced h3 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.success-message-enhanced p {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

/* Contact Info Cards */
.info-cards-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info-card-enhanced {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 181, 156, 0.3);
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.card-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.card-content-contact h3 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: 4px;
}

.card-subtitle {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  font-size: var(--text-base);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.info-list-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  text-decoration: none;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid transparent;
}

.info-list-item:hover {
  background: var(--color-white);
  border-color: rgba(230, 126, 34, 0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transform: translateX(5px);
}

.info-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--accent-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

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

.info-details {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.info-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
}

.info-list-item:hover .info-value {
  color: var(--accent-orange);
}

.gst-badge {
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
}

.gst-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.gst-number {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
  font-size: var(--text-lg);
  letter-spacing: 1px;
}

/* Map Preview Card */
.map-preview-card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(201, 181, 156, 0.3);
  cursor: pointer;
  transition: all 0.4s ease;
}

.map-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.map-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.map-thumbnail iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-preview-card:hover .map-overlay {
  opacity: 1;
}

.view-map-text {
  background: var(--color-white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 50px;
  font-weight: 600;
  color: var(--color-text);
  font-size: var(--text-sm);
}

.map-info {
  padding: var(--space-lg);
}

.map-info h4 {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: 4px;
}

.map-info p {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  margin: 0;
}

/* Enhanced Map Section */
.map-section-enhanced {
  position: relative;
  background: var(--color-secondary);
  padding-bottom: 0;
}

.map-header {
  text-align: center;
  padding: var(--space-3xl) 0 var(--space-2xl);
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.map-header h2 {
  font-size: var(--text-4xl);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.map-header p {
  color: var(--color-text-light);
  font-size: var(--text-lg);
}

.map-container {
  position: relative;
  height: 500px;
  width: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(30%) contrast(1.1);
}

/* Floating Location Card */
.floating-location-card {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  min-width: 300px;
  border: 1px solid rgba(201, 181, 156, 0.3);
  z-index: 10;
}

.location-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.location-icon svg {
  width: 28px;
  height: 28px;
}

.location-details h4 {
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: 4px;
}

.location-details p {
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  font-size: var(--text-base);
}

.directions-link {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-sm);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
}

.directions-link:hover {
  gap: 8px;
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
  .contact-grid-enhanced {
    grid-template-columns: 1fr;
  }
  
  .quick-contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-footer {
    flex-direction: column;
    gap: var(--space-md);
    align-items: stretch;
  }
  
  .btn-submit {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-hero-video {
    height: 100vh;
    min-height: 500px;
    width: 100%;
  }
  
  .floating-location-card {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: var(--space-lg);
    border-radius: var(--radius-lg);
    min-width: auto;
  }
  
  .map-container {
    height: 400px;
    display: flex;
    flex-direction: column;
  }
  
  .map-container iframe {
    height: 300px;
  }
}

/* ============================================
   CONTACT BUSINESS CTA - Custom Variations
   ============================================ */

.contact-business-variant {
  background:
    radial-gradient(circle at 20% 30%, rgba(230, 126, 34, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(52, 152, 219, 0.10) 0%, transparent 50%),
    linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.contact-shell {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(230, 126, 34, 0.2);
  position: relative;
  overflow: hidden;
}

/* Decorative gradient border effect */
.contact-shell::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue), var(--accent-orange));
  background-size: 200% 100%;
  animation: borderGlow 8s linear infinite;
}

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

/* Badge styling override for contact */
.contact-badge {
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.15), rgba(230, 126, 34, 0.05));
  border: 1px solid rgba(230, 126, 34, 0.3);
  color: var(--accent-orange);
}

.contact-badge svg {
  stroke: var(--accent-orange);
  animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(5deg); }
  40% { transform: rotate(0deg); }
}

/* Title specific styling */
.contact-title {
  background: linear-gradient(135deg, var(--color-text) 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Highlights with custom icons */
.contact-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 181, 156, 0.2);
  transition: all 0.3s ease;
}

.contact-highlights li:last-child {
  border-bottom: none;
}

.contact-highlights li:hover {
  transform: translateX(8px);
  color: var(--color-text);
}

.contact-highlights svg {
  flex-shrink: 0;
  animation: checkPop 0.5s ease forwards;
  opacity: 0;
}

.contact-shell:hover .contact-highlights svg {
  animation: checkPop 0.5s ease forwards;
  animation-delay: calc(var(--i, 0) * 0.1s);
}

@keyframes checkPop {
  0% { transform: scale(0) rotate(-45deg); opacity: 0; }
  70% { transform: scale(1.2) rotate(10deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* Stagger animations for list items */
.contact-highlights li:nth-child(1) { --i: 1; }
.contact-highlights li:nth-child(2) { --i: 2; }
.contact-highlights li:nth-child(3) { --i: 3; }
.contact-highlights li:nth-child(4) { --i: 4; }

/* Button hover effects specific to contact */
.contact-btn-main {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-btn-main::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.contact-btn-main:hover::before {
  width: 300px;
  height: 300px;
}

.contact-btn-main svg {
  transition: transform 0.3s ease;
}

.contact-btn-main:hover svg {
  transform: translateX(4px);
}

.contact-btn-secondary {
  transition: all 0.3s ease;
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.contact-btn-secondary:hover {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.2);
}

/* Trust indicators special styling */
.contact-trust {
  background: linear-gradient(135deg, rgba(249, 248, 246, 0.8), rgba(255, 255, 255, 0.9));
  border-radius: 16px;
  padding: 20px;
  margin-top: 28px;
  border: 1px solid rgba(201, 181, 156, 0.3);
}

.contact-trust .trust-num {
  background: linear-gradient(135deg, var(--accent-orange), #D35400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.4rem;
  font-weight: 800;
}

/* Particle animations specific to contact */
.contact-particles .particle {
  background: rgba(230, 126, 34, 0.6);
  box-shadow: 0 0 10px rgba(230, 126, 34, 0.4);
}

/* Entrance animations */
.contact-shell {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-shell.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-highlights li:hover {
    transform: translateX(4px);
  }
  
  .contact-trust {
    flex-direction: column;
    gap: 16px;
  }
  
  .contact-trust .trust-divider {
    display: none;
  }
}
/* ============================================
   CONTACT PAGE MOBILE FIXES
   ============================================ */

@media (max-width: 768px) {
  /* Hero Section Mobile Fixes */
  .contact-hero-video {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 60px;
  }
  
  .hero-content-wrapper {
    margin-top: 0;
    padding: 0 20px;
  }
  
  .hero-split-text {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .hero-text-left,
  .hero-text-right {
    text-align: center;
  }
  
  .hero-title-video {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero-title-video.secondary {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  
  .hero-line,
  .hero-line.right {
    margin: 15px auto 0;
  }
  
  .hero-subtitle-wrapper {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  /* Quick Contact Bar Mobile */
  .contact-quick-bar {
    margin-top: -30px;
    padding: 30px 0;
  }
  
  .quick-contact-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 20px;
  }
  
  .quick-contact-item {
    padding: 20px;
    flex-direction: row;
    text-align: left;
  }
  
  .quick-icon {
    width: 48px;
    height: 48px;
  }

  /* Contact Section Mobile */
  .contact-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-footer {
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
  }
  
  .form-assurance {
    justify-content: center;
  }
  
  .btn-submit {
    width: 100%;
  }

  /* Info Cards Mobile */
  .info-list-item {
    padding: 15px;
  }
  
  .info-icon-wrap {
    width: 40px;
    height: 40px;
  }

  /* Map Section Mobile */
  .map-container {
    height: 400px;
    flex-direction: column;
  }
  
  .floating-location-card {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 20px;
    border-radius: 12px;
    min-width: auto;
    width: calc(100% - 40px);
  }
  
  .map-header h2 {
    font-size: 2rem;
  }

  /* CTA Section Mobile */
  .cta-shell {
    padding: 30px 24px;
    margin: 0 20px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .cta-highlights {
    text-align: left;
  }
}

@media (max-width: 480px) {
  /* Extra Small Devices */
  .hero-title-video {
    font-size: 2rem;
  }
  
  .hero-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }
  
  .quick-contact-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .quick-value {
    font-size: 1rem;
    word-break: break-all;
  }
  
  .form-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  
  .form-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .floating-location-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .location-icon {
    margin: 0 auto;
  }
  
  .gst-number {
    font-size: 0.9rem;
    letter-spacing: 0;
  }
  
  .section-header-enhanced .section-title {
    font-size: 1.8rem;
  }
}

/* Fix for floating labels on mobile touch */
@media (hover: none) and (pointer: coarse) {
  .form-group.floating-label input:focus + label,
  .form-group.floating-label input:not(:placeholder-shown) + label,
  .form-group.floating-label select:focus + label,
  .form-group.floating-label select:valid + label,
  .form-group.floating-label textarea:focus + label,
  .form-group.floating-label textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.75rem;
    background: white;
    padding: 0 4px;
  }
  
  .form-group.floating-label input,
  .form-group.floating-label select,
  .form-group.floating-label textarea {
    font-size: 16px; /* Prevent zoom on iOS */
  }
}

/* Navigation Mobile Fixes Enhancement */
@media (max-width: 768px) {
  .nav-menu {
    width: 280px;
    padding: 100px 30px 30px;
    gap: 8px;
  }
  
  .nav-link {
    padding: 16px 20px;
    font-size: 1.1rem;
    border-radius: 12px;
    background: rgba(249, 248, 246, 0.5);
    margin-bottom: 8px;
  }
  
  .nav-link:hover {
    background: var(--color-secondary);
    transform: translateX(5px);
  }
  
  .pill-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: right 0.4s ease;
    z-index: 299;
  }
  
  .pill-nav.active {
    right: 0;
  }
  
  .nav-menu {
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
  }
  
  body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }
}