/* ============================================================
   Grand Star Electric Inc. — Premium Stylesheet
   Apple-inspired: bold type, generous whitespace, refined motion
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --blue: #0071E3;
  --blue-light: #2997FF;
  --blue-dark: #0056B3;
  --navy: #1d1d1f;
  --navy-light: #2d2d2f;
  --white: #ffffff;
  --off-white: #fbfbfd;
  --gray-50: #f5f5f7;
  --gray-100: #e8e8ed;
  --gray-200: #d2d2d7;
  --gray-300: #b0b0b5;
  --gray-400: #86868b;
  --gray-500: #6e6e73;
  --gray-600: #424245;
  --gold: #FFD60A;
  --gold-dark: #e6c200;
  --success: #30D158;
  --danger: #FF453A;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.1);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
}
a { text-decoration: none; color: var(--blue); transition: color 0.3s var(--ease); }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Loading Screen ── */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-bolt {
  width: 48px; height: 48px;
  border: 3px solid var(--gray-100);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Top Navbar (glassmorphism dock style) ── */
.navbar {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.08),
    0 2px 8px rgba(0,0,0,0.04),
    inset 0 0.5px 0 rgba(255,255,255,0.6);
  border-radius: 980px;
  display: flex; align-items: center; gap: 0.5rem;
  transition: all 0.5s var(--ease-out);
}
.navbar:hover {
  box-shadow:
    0 12px 40px rgba(0,0,0,0.1),
    0 4px 12px rgba(0,0,0,0.05),
    inset 0 0.5px 0 rgba(255,255,255,0.7);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow:
    0 4px 20px rgba(0,0,0,0.06),
    0 1px 6px rgba(0,0,0,0.03);
}

/* Brand */
.nav-brand {
  display: flex; align-items: center; gap: 0.55rem;
  color: var(--navy);
  transition: all 0.3s var(--ease);
  position: relative;
  font-weight: 700; font-size: 0.95rem;
  letter-spacing: -0.025em;
  white-space: nowrap;
  padding-right: 0.25rem;
}
.nav-brand .bolt-icon {
  width: 32px; height: 32px;
  background: var(--navy);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.8rem;
  transition: all 0.35s var(--ease-spring);
  flex-shrink: 0;
}
.nav-brand:hover { color: var(--navy); }
.nav-brand:hover .bolt-icon {
  background: var(--blue);
  transform: scale(1.06) rotate(-4deg);
  box-shadow: 0 4px 12px rgba(0,113,227,0.25);
}
.nav-logo {
  height: 32px;
  width: 32px;
  object-fit: contain;
  border-radius: 6px;
}

/* Dock separator */
.dock-separator {
  width: 1px;
  height: 20px;
  background: rgba(0,0,0,0.08);
  margin: 0 0.15rem;
  flex-shrink: 0;
}

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 0.1rem;
}
.nav-links a {
  padding: 0.45rem 0.85rem;
  border-radius: 980px;
  font-weight: 450; font-size: 0.82rem;
  color: var(--gray-500);
  transition: all 0.3s var(--ease);
  position: relative;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.nav-links a i { display: none; }
.nav-links a:hover {
  color: var(--navy);
  background: rgba(0,0,0,0.04);
}
.nav-links a.active {
  color: var(--navy);
  font-weight: 550;
}

/* CTA */
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 980px !important;
  font-size: 0.82rem !important;
  font-weight: 550 !important;
  transition: all 0.3s var(--ease) !important;
}
.nav-cta i { display: none !important; }
.nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: scale(1.03) !important;
  box-shadow: 0 4px 14px rgba(0,113,227,0.25);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 4.5px;
  cursor: pointer; padding: 10px; z-index: 1001;
  background: none; border: none;
  border-radius: 980px;
  transition: background 0.3s var(--ease);
}
.hamburger:hover { background: rgba(0,0,0,0.04); }
.hamburger span {
  width: 18px; height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ── Nav Dropdown ── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > .nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  border-radius: 980px;
  font-weight: 450;
  font-size: 0.82rem;
  color: var(--gray-500);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  letter-spacing: -0.01em;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.nav-dropdown > .nav-dropdown-toggle:hover {
  color: var(--navy);
  background: rgba(0,0,0,0.04);
}
.nav-dropdown > .nav-dropdown-toggle .dropdown-arrow {
  font-size: 0.55rem;
  transition: transform 0.3s var(--ease);
  opacity: 0.5;
}
.nav-dropdown:hover > .nav-dropdown-toggle .dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 1001;
  columns: 2;
  column-gap: 1.5rem;
  width: 480px;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}
.nav-dropdown:hover > .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-label {
  display: block;
  padding: 0.55rem 0.85rem 0.2rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  pointer-events: none;
  break-after: avoid;
}
.nav-dropdown-label:not(:first-child) {
  margin-top: 0.4rem;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 450;
  color: var(--gray-600) !important;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  break-inside: avoid;
}
.nav-dropdown-menu a:hover {
  background: var(--gray-50);
  color: var(--navy) !important;
}
/* Mobile dropdown toggle button (hidden on desktop) */
.nav-dropdown-mobile-toggle {
  display: none;
}

/* ── Layered Cards Hero ── */
/* ── Cinematic Hero ── */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-cin-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-cin-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.hero-cin-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}
.hero-cin-glow-1 {
  width: 400px; height: 400px;
  background: rgba(0,113,227,0.15);
  top: -100px; left: -100px;
  animation: hcFloatAnim 6s ease-in-out infinite;
}
.hero-cin-glow-2 {
  width: 300px; height: 300px;
  background: rgba(48,209,88,0.08);
  bottom: -50px; right: -50px;
  animation: hcFloatAnim 8s ease-in-out infinite reverse;
}
.hero-cin-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 8rem clamp(1.5rem, 6vw, 6rem) 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-cin-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-badge-dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
}
.hero-cin-title {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.hero-cin-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-cin-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero-cin-btns .btn-lg {
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  border-radius: 14px;
}
.hero-cin-btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.hero-cin-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* Photo cards */
.hero-cin-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-cin-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 140px;
  display: block;
  text-decoration: none;
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.hero-cin-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.hero-cin-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.hero-cin-card:hover img {
  transform: scale(1.08);
}
.hero-cin-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: #fff;
  font-weight: 650;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

/* Bottom stats */
.hero-cin-stats {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 1.75rem 2rem;
  margin: 0 clamp(1.5rem, 6vw, 6rem);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  margin-top: -2rem;
  margin-bottom: 2rem;
}
.hero-cin-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-cin-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.hero-cin-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-top: 0.15rem;
}
.hero-cin-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

@media (max-width: 1024px) {
  .hero-cin-content {
    grid-template-columns: 1fr;
    padding-top: 7rem;
    padding-bottom: 4rem;
  }
  .hero-cin-cards {
    flex-direction: row;
  }
  .hero-cin-card {
    flex: 1;
    height: 120px;
  }
  .hero-cin-stats {
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .hero-cin-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .hero-cin-btns {
    width: 100%;
  }
  .hero-cin-btns .btn-lg {
    width: 100%;
    justify-content: center;
  }
  .hero-cin-cards {
    flex-direction: column;
  }
  .hero-cin-card {
    height: 100px;
  }
  .hero-cin-stats {
    flex-wrap: wrap;
    gap: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .hero-cin-stat-divider {
    display: none;
  }
  .hero-cin-stat {
    flex: 1;
    min-width: 100px;
  }
}

/* ── Old Collage Hero (deprecated) ── */
.hero-collage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: hidden;
  position: relative;
  padding-top: 5rem;
}
.hero-collage-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  padding: 5rem clamp(1.5rem, 6vw, 6rem) 5rem;
}
.hero-collage-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-collage-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.hero-collage-highlight {
  color: var(--blue);
}
.hero-collage-desc {
  font-size: 1.1rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-collage-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-collage-btns .btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
}
.hero-collage-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hc-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hc-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1rem;
}
.hc-stat-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.hc-stat-label {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* Photo collage */
.hero-collage-images {
  position: relative;
  height: 580px;
  width: 100%;
}
.hc-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--gray-50);
  padding: 6px;
}
.hc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
  display: block;
}
.hc-img-1 {
  width: 340px; height: 340px;
  top: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hc-img-2 {
  width: 280px; height: 280px;
  top: 30%; right: 0;
  z-index: 3;
}
.hc-img-3 {
  width: 260px; height: 260px;
  bottom: 0; left: 0;
  z-index: 1;
}

/* Floating decorative shapes */
.hc-float {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  animation: hcFloatAnim 3s ease-in-out infinite;
}
.hc-float-1 {
  width: 60px; height: 60px;
  background: rgba(0,113,227,0.1);
  top: -10px; left: 25%;
}
.hc-float-2 {
  width: 48px; height: 48px;
  background: rgba(48,209,88,0.1);
  border-radius: 12px;
  bottom: 5%; right: 25%;
  animation-delay: 0.5s;
}
.hc-float-3 {
  width: 24px; height: 24px;
  background: rgba(255,214,10,0.15);
  bottom: 30%; left: 5%;
  animation-delay: 1s;
}
@keyframes hcFloatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Stagger entrance animations */
.hc-anim {
  opacity: 0;
  transform: translateY(24px);
  animation: hcFadeUp 0.7s var(--ease-out) forwards;
}
.hc-anim-img {
  opacity: 0;
  transform: scale(0.85);
  animation: hcScaleIn 0.6s var(--ease-out) forwards;
}
@keyframes hcFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hcScaleIn {
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1024px) {
  .hero-collage-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-collage-text {
    align-items: center;
  }
  .hero-collage-btns {
    justify-content: center;
  }
  .hero-collage-stats {
    justify-content: center;
  }
  .hero-collage-images {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .hero-collage-images {
    height: 320px;
  }
  .hc-img-1 { width: 220px; height: 220px; }
  .hc-img-2 { width: 180px; height: 180px; }
  .hc-img-3 { width: 170px; height: 170px; }
  .hero-collage-btns .btn-lg {
    width: 100%;
    justify-content: center;
  }
  .hero-collage-stats {
    gap: 1.25rem;
  }
}

/* ── Old Scroll Expansion Hero (deprecated) ── */
.scroll-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}
.scroll-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 0.1s linear;
}
.scroll-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.scroll-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}
.scroll-hero-media {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,0,0,0.4);
  will-change: width, height, border-radius;
}
.scroll-hero-media video,
.scroll-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.scroll-hero-media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  transition: opacity 0.1s linear;
  border-radius: inherit;
}
.scroll-hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  pointer-events: none;
  mix-blend-mode: difference;
}
.scroll-hero-line {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  white-space: nowrap;
  will-change: transform;
}
.scroll-hero-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  animation: scrollHintBounce 2s ease-in-out infinite;
}
@keyframes scrollHintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.scroll-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  pointer-events: none;
  padding: 0 clamp(1.5rem, 5vw, 4rem) 3rem;
}
.scroll-hero-content.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-hero-content-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.scroll-hero-content .hero-badge-pill {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
}
.scroll-hero-content .hero-badge-dot {
  background: var(--success);
}
.scroll-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 520px;
}
.scroll-hero-content .hero-trust-item {
  color: rgba(255,255,255,0.65);
}
.scroll-hero-content .hero-trust-item i {
  color: var(--blue-light);
}
.scroll-hero-content .btn-primary {
  background: var(--blue);
  color: #fff;
}
.scroll-hero-content .btn-secondary {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.scroll-hero-content .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* Lock body scroll during hero expansion */
body.scroll-hero-locked {
  overflow: hidden;
}

@media (max-width: 768px) {
  .scroll-hero-line {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
  .scroll-hero-desc {
    font-size: 0.95rem;
  }
  .scroll-hero-content {
    padding-bottom: 2rem;
  }
}

/* ── Original Hero (kept for other pages) ── */
.hero-layered {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: hidden;
  position: relative;
}
.hero-layered-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  padding: 7rem clamp(1.5rem, 6vw, 6rem) 5rem;
}

/* Staggered entrance */
.anim-item {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.8s var(--ease-out) forwards;
}
.anim-item:nth-child(1) { animation-delay: 0.2s; }
.anim-item:nth-child(2) { animation-delay: 0.35s; }
.anim-item:nth-child(3) { animation-delay: 0.5s; }
.anim-item:nth-child(4) { animation-delay: 0.65s; }
.anim-item:nth-child(5) { animation-delay: 0.8s; }
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Badge */
.hero-badge-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 980px;
  font-size: 0.8rem; font-weight: 550;
  color: var(--gray-500);
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* Title */
.hero-layered-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

/* Description */
.hero-layered-desc {
  font-size: 1.15rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* Buttons */
.hero-layered-btns {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Trust badges */
.hero-trust {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-400);
}
.hero-trust-item i {
  color: var(--blue);
  font-size: 0.75rem;
}

/* ── Stacked Photo Cards ── */
.hero-layered-cards {
  position: relative;
  height: 520px;
  width: 100%;
}
.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: transform 0.6s var(--ease-out), box-shadow 0.4s var(--ease);
  cursor: pointer;
}
.hero-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  border-radius: inherit;
}
.hero-card:hover {
  z-index: 10 !important;
}

/* Card 1 - back left, largest */
.hero-card-1 {
  width: 72%; height: 85%;
  top: 0; left: 0;
  z-index: 1;
  transform: rotate(-1.5deg) translateY(var(--parallax-y, 0));
  animation: cardFloat1 7s ease-in-out infinite;
}
.hero-card-1:hover {
  animation-play-state: paused;
  transform: translateY(-8px) rotate(0deg) scale(1.02) !important;
}

/* Card 2 - middle right, overlapping */
.hero-card-2 {
  width: 58%; height: 65%;
  top: 15%; right: 0;
  z-index: 2;
  transform: rotate(2deg) translateY(var(--parallax-y, 0));
  animation: cardFloat2 8s ease-in-out infinite;
}
.hero-card-2:hover {
  animation-play-state: paused;
  transform: translate(4px, -8px) rotate(0deg) scale(1.03) !important;
}

/* Card 3 - bottom centre, smallest, overlapping both */
.hero-card-3 {
  width: 50%; height: 50%;
  bottom: 0; left: 18%;
  z-index: 3;
  transform: rotate(-1deg) translateY(var(--parallax-y, 0));
  animation: cardFloat3 6s ease-in-out infinite;
}
.hero-card-3:hover {
  animation-play-state: paused;
  transform: translate(-2px, -8px) rotate(0deg) scale(1.04) !important;
}

@keyframes cardFloat1 {
  0%, 100% { transform: translateY(var(--parallax-y, 0)) rotate(-1.5deg); }
  50% { transform: translateY(calc(var(--parallax-y, 0) - 10px)) rotate(-0.5deg); }
}
@keyframes cardFloat2 {
  0%, 100% { transform: translate(0, var(--parallax-y, 0)) rotate(2deg); }
  50% { transform: translate(6px, calc(var(--parallax-y, 0) - 12px)) rotate(1deg); }
}
@keyframes cardFloat3 {
  0%, 100% { transform: translate(0, var(--parallax-y, 0)) rotate(-1deg); }
  50% { transform: translate(-4px, calc(var(--parallax-y, 0) - 8px)) rotate(0.5deg); }
}

/* Card labels */
.hero-card-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  z-index: 2;
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 980px;
  font-size: 0.72rem; font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 980px;
  font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: 0.95rem;
  cursor: pointer; border: none;
  transition: all 0.4s var(--ease-out);
  text-decoration: none;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}
.btn i { font-size: 0.8em; transition: transform 0.3s var(--ease-out); }
.btn:hover i { transform: translateX(2px); }
.btn-primary {
  background: var(--blue); color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark); color: var(--white);
  transform: scale(1.02);
}
.btn-secondary {
  background: transparent; color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-secondary:hover {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.02);
}
.btn-gold {
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
}
.btn-gold:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}

/* ── Sections ── */
.section {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 6vw, 6rem);
  max-width: 1400px;
  margin: 0 auto;
}
.section-full {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 6vw, 6rem);
}
.section-gray { background: var(--gray-50); }
.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.section-header p {
  font-size: 1.15rem;
  color: var(--gray-400);
  line-height: 1.6;
}
.section-navy .section-header p { color: rgba(255,255,255,0.5); }
.section-navy .section-header h2 { color: var(--white); }

/* ── Animated Roadmap ── */
.roadmap-section {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 6vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
}
.roadmap-header {
  text-align: center;
  margin-bottom: 3rem;
}
.roadmap-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.roadmap-header p {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 520px;
  margin: 0 auto;
}
.roadmap-container {
  position: relative;
  height: 400px;
  width: 100%;
}
.roadmap-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.roadmap-path-bg {
  fill: none;
  stroke: var(--gray-100);
  stroke-width: 3;
  stroke-dasharray: 12 6;
  stroke-linecap: round;
}
.roadmap-path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-dasharray: 12 6;
  stroke-linecap: round;
  stroke-dashoffset: 0;
  transition: none;
}

/* Milestones */
.roadmap-milestone {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.roadmap-milestone.visible {
  opacity: 1;
  transform: scale(1);
}
.milestone-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2.5px solid;
  position: relative;
  flex-shrink: 0;
}
.milestone-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.08;
}
.milestone-dot.complete {
  background: var(--success);
  border-color: #1a9a48;
  color: var(--success);
}
.milestone-dot.in-progress {
  background: var(--blue);
  border-color: var(--blue-dark);
  color: var(--blue);
  animation: milestonePulse 2s ease-in-out infinite;
}
@keyframes milestonePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,113,227,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(0,113,227,0); }
}
.milestone-dot.pending {
  background: var(--gray-200);
  border-color: var(--gray-300);
  color: var(--gray-200);
}
.milestone-label {
  padding: 0.45rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 980px;
  font-size: 0.82rem;
  font-weight: 550;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .roadmap-container { height: 300px; }
  .milestone-label { font-size: 0.72rem; padding: 0.35rem 0.75rem; }
  .roadmap-milestone { gap: 0.4rem; }
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all 0.5s var(--ease-out);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card .icon {
  width: 48px; height: 48px;
  background: var(--gray-50);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 1.5rem;
  transition: all 0.5s var(--ease-out);
}
.service-card:hover .icon {
  background: var(--blue);
  color: white;
  transform: scale(1.05);
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.service-card p {
  color: var(--gray-400);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── Stats Section (Glass + Gradient) ── */
.section-navy {
  background: transparent;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.12),
    0 8px 24px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.stats-container::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,113,227,0.1), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0,113,227,0.06), transparent 50%);
  pointer-events: none;
}
.stats-container::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}
.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Video Grid ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 9/14;
  cursor: pointer;
  background: var(--navy);
}
.video-card video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.video-card:hover video {
  transform: scale(1.04);
}
.video-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
  background: rgba(0,0,0,0.3);
  transition: background 0.4s var(--ease);
  z-index: 2;
}
.video-card:hover .video-overlay {
  background: rgba(0,0,0,0.15);
}
.video-card.playing .video-overlay {
  background: transparent;
  opacity: 0;
  pointer-events: none;
}
.video-play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s var(--ease-out);
}
.video-play-btn:hover {
  background: rgba(255,255,255,0.35);
  transform: scale(1.08);
}
.video-play-btn i { margin-left: 2px; }
.video-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .video-card { aspect-ratio: 9/16; }
  .video-play-btn { width: 40px; height: 40px; font-size: 0.8rem; }
  .video-card-label { font-size: 0.7rem; }
}

/* ── Partners Ticker ── */
.partners-ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.partners-track {
  display: flex;
  gap: 1rem;
  animation: tickerScroll 35s linear infinite;
  width: max-content;
}
.partners-track:hover {
  animation-play-state: paused;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 980px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.35s var(--ease-out);
}
.partner-logo:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.partner-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-500);
  transition: all 0.35s var(--ease-out);
  flex-shrink: 0;
}
.partner-logo:hover .partner-icon {
  background: var(--blue);
  color: var(--white);
}
.partner-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}

/* ── As Seen On ── */
.seen-on-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.seen-on-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--gray-100);
  border-radius: 980px;
  font-size: 0.88rem;
  font-weight: 550;
  color: var(--gray-500);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.seen-on-item i { font-size: 1rem; }
.seen-on-item:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Google Reviews Widget ── */
.reviews-section { overflow: hidden; }
.reviews-widget {
  max-width: 1100px;
  margin: 0 auto;
}
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem 2rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
}
.reviews-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.google-g-icon { flex-shrink: 0; }
.reviews-header-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  display: block;
  line-height: 1.2;
}
.reviews-header-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.2rem;
}
.reviews-rating-number {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.reviews-stars {
  color: #FBBC05;
  font-size: 0.85rem;
  display: flex;
  gap: 1px;
}
.reviews-count {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 400;
}
.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  background: var(--blue);
  color: var(--white);
  border-radius: 980px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-review:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.reviews-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-200) transparent;
}
.reviews-scroll::-webkit-scrollbar { height: 6px; }
.reviews-scroll::-webkit-scrollbar-track { background: transparent; }
.reviews-scroll::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 3px; }
.reviews-scroll::-webkit-scrollbar-thumb:hover { background: var(--gray-300); }
.review-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.review-card:hover {
  border-color: var(--gray-200);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.review-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-avatar-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.review-author-info {
  flex: 1;
  min-width: 0;
}
.review-author-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.3;
}
.review-time {
  font-size: 0.78rem;
  color: var(--gray-400);
}
.review-google-icon {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.review-card:hover .review-google-icon { opacity: 1; }
.review-stars {
  color: #FBBC05;
  font-size: 0.8rem;
  display: flex;
  gap: 1px;
  margin-bottom: 0.75rem;
}
.review-stars .fa-regular { color: var(--gray-200); }
.review-text {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}
.review-read-more {
  background: none;
  border: none;
  color: var(--blue);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0;
  font-family: inherit;
}
.review-read-more:hover { text-decoration: underline; }

/* ── FAQ Section ── */
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.3s var(--ease);
}
.faq-item:first-child { border-top: 1px solid var(--gray-100); }
.faq-question {
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  background: none; border: none; width: 100%;
  text-align: left; color: var(--navy);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
  transition: color 0.3s var(--ease);
}
.faq-question:hover { color: var(--blue); }
.faq-question .arrow {
  transition: transform 0.4s var(--ease-out);
  font-size: 0.65rem; color: var(--gray-300);
}
.faq-item.open .faq-question .arrow { transform: rotate(180deg); color: var(--blue); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}
.faq-answer p { color: var(--gray-400); line-height: 1.7; font-size: 0.95rem; }

/* ── CTA Section ── */
.cta-section {
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 4rem);
  background: var(--navy);
  color: white;
  border-radius: var(--radius-xl);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,113,227,0.15), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255,214,10,0.06), transparent 50%);
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--white);
  position: relative;
}
.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  position: relative;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: var(--gray-100);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-content {
  width: 44%;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.5s var(--ease-out);
}
.timeline-content:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.timeline-year {
  font-weight: 700;
  color: var(--blue);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.timeline-content h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.timeline-content p { color: var(--gray-400); font-size: 0.9rem; }
.timeline-dot {
  position: absolute;
  left: 50%; top: 2rem;
  width: 10px; height: 10px;
  background: var(--blue);
  border: 2px solid var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--gray-50);
  z-index: 2;
}

/* ── Project Cards ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  color: var(--white);
  text-decoration: none;
  aspect-ratio: 16/10;
  cursor: pointer;
}
.project-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out);
}
.project-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  transition: background 0.5s var(--ease-out);
}
.project-card:hover .project-image {
  transform: scale(1.06);
}
.project-card:hover::after {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.05) 100%);
}
.project-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  z-index: 2;
  transform: translateY(4px);
  transition: transform 0.5s var(--ease-out);
}
.project-card:hover .project-info {
  transform: translateY(0);
}
.project-tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 980px;
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,0.9);
}
.project-info h3 {
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.project-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  transition: all 0.5s var(--ease-out);
}
.project-card:hover .project-info p {
  opacity: 1;
  max-height: 60px;
  margin-top: 0.25rem;
}

/* ── Hover Slideshow (Landing) ── */
.hover-slider-section {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 6vw, 6rem);
  background: var(--gray-50);
  max-width: 100%;
}
.hover-slider-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 2.5rem;
}
.hover-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 6vw, 5rem);
  max-width: 1200px;
  margin: 0 auto;
}
.hover-slider-titles {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}
.hover-slider-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--navy);
  opacity: 0.15;
  cursor: pointer;
  position: relative;
  transition: opacity 0.4s var(--ease-out);
  line-height: 1.15;
  overflow: hidden;
}
.hover-slider-title::after {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0;
  color: var(--navy);
  opacity: 1;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition: clip-path 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hover-slider-title.active {
  opacity: 1;
}
.hover-slider-title.active::after {
  clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0 100%);
}

/* Character stagger effect via spans */
.hover-slider-title .char {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.hover-slider-title .char-inner {
  display: inline-block;
  transition: transform 0.35s var(--ease-out);
}
.hover-slider-title .char-ghost {
  position: absolute;
  left: 0; top: 0;
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.35s var(--ease-out);
}
.hover-slider-title.active .char-inner {
  transform: translateY(-110%);
  opacity: 0.2;
}
.hover-slider-title.active .char-ghost {
  transform: translateY(0%);
}

/* Stagger delays via JS */
.hover-slider-title .char:nth-child(1) .char-inner,
.hover-slider-title .char:nth-child(1) .char-ghost { transition-delay: 0s; }
.hover-slider-title .char:nth-child(2) .char-inner,
.hover-slider-title .char:nth-child(2) .char-ghost { transition-delay: 0.02s; }
.hover-slider-title .char:nth-child(3) .char-inner,
.hover-slider-title .char:nth-child(3) .char-ghost { transition-delay: 0.04s; }
.hover-slider-title .char:nth-child(4) .char-inner,
.hover-slider-title .char:nth-child(4) .char-ghost { transition-delay: 0.06s; }
.hover-slider-title .char:nth-child(5) .char-inner,
.hover-slider-title .char:nth-child(5) .char-ghost { transition-delay: 0.08s; }
.hover-slider-title .char:nth-child(6) .char-inner,
.hover-slider-title .char:nth-child(6) .char-ghost { transition-delay: 0.1s; }
.hover-slider-title .char:nth-child(7) .char-inner,
.hover-slider-title .char:nth-child(7) .char-ghost { transition-delay: 0.12s; }
.hover-slider-title .char:nth-child(8) .char-inner,
.hover-slider-title .char:nth-child(8) .char-ghost { transition-delay: 0.14s; }
.hover-slider-title .char:nth-child(9) .char-inner,
.hover-slider-title .char:nth-child(9) .char-ghost { transition-delay: 0.16s; }
.hover-slider-title .char:nth-child(10) .char-inner,
.hover-slider-title .char:nth-child(10) .char-ghost { transition-delay: 0.18s; }
.hover-slider-title .char:nth-child(11) .char-inner,
.hover-slider-title .char:nth-child(11) .char-ghost { transition-delay: 0.2s; }
.hover-slider-title .char:nth-child(12) .char-inner,
.hover-slider-title .char:nth-child(12) .char-ghost { transition-delay: 0.22s; }
.hover-slider-title .char:nth-child(13) .char-inner,
.hover-slider-title .char:nth-child(13) .char-ghost { transition-delay: 0.24s; }
.hover-slider-title .char:nth-child(14) .char-inner,
.hover-slider-title .char:nth-child(14) .char-ghost { transition-delay: 0.26s; }

/* Image stack */
.hover-slider-images {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.hover-slider-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0%, 100% 0%, 100% 0%, 0 0%);
  transition: clip-path 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}
.hover-slider-img.active {
  clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0 100%);
}

@media (max-width: 768px) {
  .hover-slider {
    flex-direction: column;
    align-items: flex-start;
  }
  .hover-slider-images {
    max-width: 100%;
    aspect-ratio: 16/10;
  }
  .hover-slider-title {
    font-size: 2rem;
  }
}

/* Project page: show descriptions always */
.projects-page-grid .project-info p {
  opacity: 1;
  max-height: 80px;
  margin-top: 0.25rem;
}

/* Filter tabs */
.project-filters {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  padding: 0.5rem 1.15rem;
  border-radius: 980px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-500);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.blog-card-image {
  height: 180px;
  background: linear-gradient(160deg, var(--navy) 0%, #111113 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: rgba(255,255,255,0.12);
  transition: all 0.5s var(--ease-out);
}
.blog-card:hover .blog-card-image { transform: scale(1.02); }
.blog-card-body { padding: 1.75rem; }
.blog-card-tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: var(--gray-50);
  color: var(--gray-500);
  border-radius: 980px;
  font-size: 0.72rem; font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
  font-weight: 600;
}
.blog-card p {
  color: var(--gray-400);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.blog-card .read-more {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.blog-card .read-more i { transition: transform 0.3s var(--ease-out); font-size: 0.7em; }
.blog-card:hover .read-more i { transform: translateX(4px); }

/* ── Career Cards ── */
.career-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.5s var(--ease-out);
}
.career-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}
.career-card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.career-meta {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--gray-400);
}
.career-meta span { display: flex; align-items: center; gap: 0.4rem; }
.career-meta i { font-size: 0.75rem; }

/* ── Quote Form ── */
.form-container {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-md);
}
.form-step { display: none; }
.form-step.active { display: block; animation: fadeSlideUp 0.5s var(--ease-out); }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Progress indicator */
.form-progress {
  display: flex; justify-content: center;
  margin-bottom: 2.5rem;
}
.progress-track {
  display: flex; align-items: center; gap: 1.5rem;
  position: relative;
  padding: 0.5rem 0;
}
.progress-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  position: relative; z-index: 2;
  transition: background 0.4s var(--ease-out);
}
.progress-dot.reached { background: var(--white); }
.progress-fill {
  position: absolute;
  left: -4px; top: 50%;
  transform: translateY(-50%);
  height: 16px;
  background: var(--success);
  border-radius: 980px;
  z-index: 1;
  transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 16px;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  transition: all 0.3s var(--ease);
  background: var(--white);
  color: var(--navy);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,113,227,0.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group .error-msg {
  color: var(--danger);
  font-size: 0.78rem;
  margin-top: 0.35rem;
  display: none;
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: var(--danger); }
.form-group.error .error-msg { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-buttons {
  display: flex; gap: 0.4rem;
  margin-top: 2rem;
}
.form-btn-back {
  padding: 0.85rem 1.5rem;
  border-radius: 980px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 0.88rem;
  cursor: pointer;
  border: none;
  background: var(--gray-50);
  color: var(--navy);
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  padding-left: 0; padding-right: 0;
  opacity: 0;
}
.form-btn-back.visible {
  width: 80px;
  padding: 0.85rem 1.5rem;
  opacity: 1;
}
.form-btn-back:hover { background: var(--gray-100); }
.form-btn-back:active { transform: scale(0.96); }
.form-btn-continue {
  flex: 1;
  padding: 0.85rem 1.5rem;
  border-radius: 980px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 0.88rem;
  cursor: pointer;
  border: none;
  background: var(--blue);
  color: var(--white);
  transition: all 0.35s var(--ease-out);
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.form-btn-continue:hover { background: var(--blue-dark); }
.form-btn-continue:active { transform: scale(0.97); }
.form-btn-continue i {
  font-size: 0.8rem;
  animation: checkPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes checkPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.form-success { text-align: center; padding: 3rem 1rem; display: none; }
.form-success.show { display: block; animation: fadeSlideUp 0.6s var(--ease-out); }
.success-check {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--success);
  color: white;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  animation: scaleIn 0.5s var(--ease-spring);
}
@keyframes scaleIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ── Benefits Grid ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.benefit-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all 0.5s var(--ease-out);
}
.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.benefit-icon {
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.benefit-item h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.benefit-item p { font-size: 0.88rem; color: var(--gray-400); }

/* ── Footer ── */
.footer {
  background: var(--gray-50);
  color: var(--gray-500);
  padding: 5rem clamp(1.5rem, 6vw, 6rem) 2.5rem;
  border-top: 1px solid var(--gray-100);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.7fr 1.3fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer h4 {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 1rem;
}
.footer-links a {
  display: block;
  color: var(--gray-400);
  padding: 0.3rem 0;
  font-size: 0.85rem;
  transition: all 0.3s var(--ease);
}
.footer-links a:hover { color: var(--navy); }
.footer-contact p {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  color: var(--gray-400);
}
.footer-contact i { font-size: 0.75rem; color: var(--gray-300); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-300);
}
.footer-bottom a { color: var(--gray-400); }
.footer-bottom a:hover { color: var(--navy); }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Page Header (inner pages) ── */
.page-header {
  padding: 9rem clamp(1.5rem, 6vw, 6rem) 5rem;
  background: var(--gray-50);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gray-100);
}
.page-header h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 520px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.82rem;
}
.breadcrumb a { color: var(--blue); font-weight: 500; }
.breadcrumb span { color: var(--gray-300); }

/* ── Blog Post (single) ── */
.blog-post-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem clamp(1.5rem, 4vw, 2rem);
}
.blog-post-content h2 {
  font-size: 1.6rem;
  margin: 3rem 0 1rem;
  color: var(--navy);
}
.blog-post-content h3 {
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
  color: var(--navy);
}
.blog-post-content p {
  margin-bottom: 1.5rem;
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 1.02rem;
}
.blog-post-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid, .blog-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navbar {
    top: 0.75rem;
    padding: 0.4rem 0.5rem 0.4rem 1rem;
    border-radius: 980px;
  }
  .dock-separator { display: none; }
  .nav-links {
    position: fixed; inset: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center; align-items: center;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a {
    font-size: 1.4rem; padding: 0.8rem 2rem;
    font-weight: 500; border-radius: 16px;
    color: var(--navy);
  }
  .nav-links a i { display: none; }
  /* Mobile dropdown styles */
  .nav-dropdown { width: 100%; text-align: center; }
  .nav-dropdown > .nav-dropdown-toggle {
    font-size: 1.4rem;
    padding: 0.8rem 2rem;
    font-weight: 500;
    color: var(--navy);
    border-radius: 16px;
    width: 100%;
    justify-content: center;
  }
  .nav-dropdown > .nav-dropdown-toggle .dropdown-arrow {
    font-size: 0.7rem;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: var(--gray-50);
    border-radius: 12px;
    padding: 0.25rem 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease), padding 0.35s var(--ease), opacity 0.25s var(--ease);
    opacity: 0;
    margin: 0 auto;
    width: 80%;
    columns: 1;
  }
  .nav-dropdown.open > .nav-dropdown-menu {
    max-height: 800px;
    padding: 0.5rem;
    opacity: 1;
  }
  .nav-dropdown.open > .nav-dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg);
  }
  .nav-dropdown:hover > .nav-dropdown-menu {
    opacity: 0;
    transform: none;
    max-height: 0;
  }
  .nav-dropdown.open:hover > .nav-dropdown-menu {
    opacity: 1;
    max-height: 800px;
  }
  .nav-dropdown-menu a {
    font-size: 1.1rem !important;
    padding: 0.6rem 1rem;
    color: var(--gray-600) !important;
  }
  .nav-cta { font-size: 1rem !important; padding: 0.8rem 2rem !important; border-radius: 980px !important; }
  .hero-layered-content { grid-template-columns: 1fr; text-align: center; }
  .hero-layered-desc { margin: 0 auto 2.5rem; }
  .hero-layered-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-layered-cards { height: 350px; margin-top: 1rem; }
  .hero-card-1 { width: 65%; height: 80%; }
  .hero-card-2 { width: 50%; height: 60%; }
  .hero-card-3 { width: 45%; height: 45%; }
  .services-grid, .blog-grid, .benefits-grid, .projects-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; padding: 1.25rem; }
  .review-card { flex: 0 0 280px; padding: 1.5rem; }
  .btn-review { align-self: stretch; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item::after { display: none !important; }
  .form-row { grid-template-columns: 1fr; }
  .form-container { padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(odd) { flex-direction: row; padding-left: 50px; }
  .timeline-content { width: 100%; }
  .timeline-dot { left: 20px; }
}
@media (max-width: 480px) {
  .hero { padding: 0 1.25rem; }
  .section { padding: 4rem 1.25rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
