/* ============================================================
   MANTOLA OF MOTORS — CORE DESIGN SYSTEM
   Premium Blue × White Luxury Theme | style.css
   ============================================================ */

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* ── Blue-White Luxury Palette ── */
  --clr-white:       #ffffff;
  --clr-bg:          #f7fbff;
  --clr-surface:     #eef6ff;
  --clr-blue-light:  #dff4ff;
  --clr-blue-mid:    #58b7ff;
  --clr-blue-deep:   #0f5fa8;
  --clr-blue-navy:   #0b2f52;
  --clr-accent-red:  #d62b45;   /* use sparingly */
  --clr-border:      rgba(88,183,255,0.2);
  --clr-border-strong: rgba(15,95,168,0.3);
  --clr-text:        #0b2f52;
  --clr-text-mid:    rgba(11,47,82,0.7);
  --clr-text-muted:  rgba(11,47,82,0.45);
  --clr-shadow:      rgba(11,47,82,0.12);

  /* ── Typography (Maruti Suzuki Style / Corporate Clean) ── */
  --font-display:    "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body:       "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-serif:      "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  /* ── Spacing ── */
  --section-pad:     110px;
  --section-pad-sm:  65px;

  /* ── Transitions ── */
  --ease-premium:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-expo:       cubic-bezier(0.16, 1, 0.3, 1);
  --trans-base:      0.4s var(--ease-premium);

  /* ── Hero Gradient ── */
  --hero-gradient:   linear-gradient(135deg, #0b2f52 0%, #0f5fa8 40%, #58b7ff 100%);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { background-color: var(--clr-white); color: var(--clr-text); font-family: var(--font-body); font-weight: 400; line-height: 1.7; overflow-x: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Page Loader ──────────────────────────────────────────── */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--clr-blue-navy);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 24px;
  transition: opacity 0.8s var(--ease-premium), visibility 0.8s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { font-family: var(--font-display); font-size: 24px; letter-spacing: 4px; color: var(--clr-white); font-weight: 300; opacity: 0; animation: loaderFadeIn 0.6s var(--ease-expo) 0.2s forwards; }
.loader-bar-wrap { width: 200px; height: 2px; background: rgba(255,255,255,0.15); overflow: hidden; border-radius: 2px; }
.loader-bar { height: 100%; width: 0%; background: var(--clr-blue-mid); animation: loaderBar 1.6s var(--ease-expo) 0.4s forwards; }
@keyframes loaderFadeIn { to { opacity: 1; } }
@keyframes loaderBar    { to { width: 100%; } }

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 60px; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s var(--ease-premium), backdrop-filter 0.5s, box-shadow 0.5s;
}
/* Over hero: transparent */
.navbar { background: transparent; }

.navbar.nav-scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--clr-border), 0 4px 30px var(--clr-shadow);
}
/* Inner pages always scrolled */
.navbar.nav-scrolled .nav-links a { color: var(--clr-text-mid); }
.navbar.nav-scrolled .nav-links a:hover,
.navbar.nav-scrolled .nav-links a.active { color: var(--clr-blue-deep); }

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 38px; width: auto;
  object-fit: contain; flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 16px; letter-spacing: 2px;
  color: var(--clr-white);
  transition: color var(--trans-base);
  font-weight: 600;
}
.navbar.nav-scrolled .nav-logo-text { color: var(--clr-blue-navy); }

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative; transition: color var(--trans-base);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--clr-blue-mid);
  transition: width 0.4s var(--ease-expo);
}
.nav-links a:hover, .nav-links a.active { color: var(--clr-white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--clr-blue-mid) !important;
  color: var(--clr-white) !important;
  padding: 10px 22px;
  font-weight: 500;
  border-radius: 4px;
  transition: background var(--trans-base), transform var(--trans-base), box-shadow var(--trans-base) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--clr-blue-deep) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(88,183,255,0.35) !important; }
.navbar.nav-scrolled .nav-cta { color: var(--clr-white) !important; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 26px; height: 2px; background: var(--clr-white); transition: all 0.4s var(--ease-premium); border-radius: 2px; }
.navbar.nav-scrolled .nav-hamburger span { background: var(--clr-blue-navy); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: var(--clr-blue-navy); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease-premium), visibility 0.4s;
}
.nav-mobile.open { opacity: 1; visibility: visible; display: flex; }
.nav-mobile a { font-family: var(--font-display); font-size: 24px; letter-spacing: 2px; color: var(--clr-white); transition: color var(--trans-base); text-transform: uppercase; }
.nav-mobile a:hover { color: var(--clr-blue-mid); }

/* ── Section System ───────────────────────────────────────── */
.section { padding: var(--section-pad) 0; }
.section-sm { padding: var(--section-pad-sm) 0; }
.container { max-width: 1360px; margin: 0 auto; padding: 0 60px; }
.container-wide { max-width: 100%; padding: 0 60px; }

/* Section Labels */
.section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.section-label span { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--clr-blue-deep); font-weight: 600; }
.section-label::before { content: ''; display: block; width: 36px; height: 2px; background: var(--clr-blue-mid); flex-shrink: 0; }

.section-title { font-family: var(--font-display); font-size: clamp(34px, 4vw, 56px); color: var(--clr-blue-navy); line-height: 1.1; letter-spacing: 0; font-weight: 300; }
.section-subtitle { font-size: 15px; color: var(--clr-text-muted); max-width: 520px; line-height: 1.8; margin-top: 18px; font-weight: 400; }

/* ── Divider ──────────────────────────────────────────────── */
.divider { width: 100%; height: 1px; background: var(--clr-border); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  padding: 12px 28px; font-family: var(--font-body); font-weight: 500;
  border: 1.5px solid; border-radius: 4px;
  transition: all 0.3s var(--ease-premium);
  position: relative; overflow: hidden; cursor: pointer;
}
/* Primary: blue bg, white text */
.btn-blue {
  background: var(--clr-blue-deep); color: var(--clr-white);
  border-color: var(--clr-blue-deep);
}
.btn-blue:hover {
  background: var(--clr-blue-navy); border-color: var(--clr-blue-navy);
  box-shadow: 0 8px 20px rgba(15,95,168,0.25); transform: translateY(-2px);
}
/* Secondary: white bg, blue border, blue text */
.btn-white {
  background: var(--clr-white); color: var(--clr-blue-deep);
  border-color: var(--clr-blue-deep);
}
.btn-white:hover {
  background: var(--clr-blue-light); border-color: var(--clr-blue-navy);
  color: var(--clr-blue-navy); box-shadow: 0 8px 20px rgba(15,95,168,0.1); transform: translateY(-2px);
}
/* Gold → now mid-blue (legacy support) */
.btn-gold { background: var(--clr-blue-mid); color: var(--clr-white); border-color: var(--clr-blue-mid); }
.btn-gold:hover { background: var(--clr-blue-deep); border-color: var(--clr-blue-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(88,183,255,0.25); }
.btn-arrow::after { content: '→'; transition: transform 0.3s; }
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(4px); }

/* ── Marquee ──────────────────────────────────────────────── */
.marquee-section { border-top: 1px solid var(--clr-border); border-bottom: 1px solid var(--clr-border); padding: 16px 0; overflow: hidden; background: var(--clr-blue-navy); }
.marquee-track { display: flex; animation: marqueeScroll 28s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 36px; padding-right: 36px; white-space: nowrap; flex-shrink: 0; }
.marquee-item span { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.7); font-weight: 500; }
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--clr-blue-mid); flex-shrink: 0; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ── About Preview ────────────────────────────────────────── */
.about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 580px; }
.about-preview-image { position: relative; overflow: hidden; }
.about-preview-image img { transition: transform 1.2s var(--ease-premium); }
.about-preview:hover .about-preview-image img { transform: scale(1.04); }
.about-preview-content { background: var(--clr-blue-light); padding: 80px; display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.about-stats-row { display: flex; gap: 44px; margin-top: 16px; }
.about-stat-num { font-family: var(--font-display); font-size: 36px; color: var(--clr-blue-deep); line-height: 1; letter-spacing: 0; font-weight: 300; }
.about-stat-num em { color: var(--clr-blue-mid); font-style: normal; }
.about-stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--clr-text-muted); margin-top: 6px; font-weight: 500; }

/* ── Pricing Cards (Services) ─────────────────────────────── */
.pricing-section { background: var(--clr-white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.price-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-blue-light);
  border-radius: 18px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 6px 20px rgba(15,95,168,0.08);
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s, border-color 0.4s;
  position: relative; overflow: hidden;
}
.price-card:hover { transform: translateY(-10px); box-shadow: 0 16px 48px rgba(15,95,168,0.18); border-color: var(--clr-blue-mid); }
.price-card.featured { border-color: var(--clr-blue-deep); }
.price-card.free-card { border-color: rgba(88,183,255,0.5); }
.price-card-icon { font-size: 36px; }
.price-card-title { font-family: var(--font-display); font-size: 17px; color: var(--clr-blue-navy); letter-spacing: 0; font-weight: 600; text-transform: uppercase; }
.price-card-desc { font-size: 14px; color: var(--clr-text-muted); line-height: 1.6; flex: 1; }
.price-card-price { font-family: var(--font-display); font-size: 40px; color: var(--clr-blue-deep); line-height: 1; letter-spacing: 0; font-weight: 300; margin: 8px 0; }
.price-card-price small { font-size: 14px; color: var(--clr-text-muted); font-family: var(--font-body); font-weight: 400; letter-spacing: 0; text-transform: none; }
.price-card-price.free { color: var(--clr-accent-red); font-weight: 600; font-size: 32px; }
.price-card-cta { margin-top: 8px; }

/* ── Stats ────────────────────────────────────────────────── */
.stats-section { background: var(--clr-blue-navy); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 60px 40px; border-right: 1px solid rgba(255,255,255,0.1); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 52px; color: var(--clr-white); line-height: 1; letter-spacing: 0; font-weight: 300; }
.stat-number em { color: var(--clr-blue-mid); font-style: normal; font-weight: 300; }
.stat-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 12px; font-weight: 500; }

/* ── Projects Grid ────────────────────────────────────────── */
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.project-card { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; }
.project-card:first-child { grid-row: span 2; aspect-ratio: auto; min-height: 600px; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-premium); filter: brightness(0.75); }
.project-card:hover img { transform: scale(1.06); filter: brightness(0.5); }
.project-card-info { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; background: linear-gradient(to top, rgba(11,47,82,0.85) 0%, transparent 60%); }
.project-card-num { font-size: 11px; letter-spacing: 3px; color: var(--clr-blue-mid); margin-bottom: 8px; font-weight: 500; }
.project-card-title { font-family: var(--font-display); font-size: clamp(20px, 2vw, 28px); color: var(--clr-white); letter-spacing: 0; font-weight: 400; }
.project-card-tag { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.6); margin-top: 8px; text-transform: uppercase; font-weight: 500;}
.project-card-arrow { position: absolute; top: 32px; right: 32px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; color: var(--clr-white); font-size: 18px; opacity: 0; transform: translateY(10px); transition: opacity 0.4s, transform 0.4s var(--ease-expo); border-radius: 50%; }
.project-card:hover .project-card-arrow { opacity: 1; transform: translateY(0); }

/* ── Gallery ──────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 260px); gap: 3px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item img { transition: transform 0.8s var(--ease-premium); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(11,47,82,0); display: flex; align-items: center; justify-content: center; transition: background 0.4s; }
.gallery-item:hover .gallery-item-overlay { background: rgba(11,47,82,0.45); }
.gallery-zoom-icon { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center; color: var(--clr-white); font-size: 20px; opacity: 0; transform: scale(0.8); transition: opacity 0.4s, transform 0.4s var(--ease-expo); border-radius: 50%; }
.gallery-item:hover .gallery-zoom-icon { opacity: 1; transform: scale(1); }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { background: var(--clr-surface); }
.testimonials-track { display: flex; transition: transform 0.7s var(--ease-expo); }
.testimonial-slide { min-width: 100%; padding: 60px 120px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.testimonial-stars { display: flex; gap: 6px; color: var(--clr-blue-mid); font-size: 16px; }
.testimonial-quote { font-family: var(--font-serif); font-size: clamp(20px, 2.2vw, 28px); font-style: italic; color: var(--clr-blue-navy); line-height: 1.6; max-width: 780px; font-weight: 300; }
.testimonial-name { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--clr-blue-navy); font-weight: 600; }
.testimonial-role { font-size: 12px; letter-spacing: 1px; color: var(--clr-text-muted); }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }
.testimonial-btn { width: 46px; height: 46px; border: 1.5px solid var(--clr-border-strong); display: flex; align-items: center; justify-content: center; color: var(--clr-blue-deep); font-size: 18px; border-radius: 50%; transition: all 0.3s; }
.testimonial-btn:hover { background: var(--clr-blue-deep); color: var(--clr-white); border-color: var(--clr-blue-deep); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot { width: 6px; height: 6px; background: var(--clr-border-strong); transition: all 0.3s; cursor: pointer; border-radius: 50%; }
.testimonial-dot.active { width: 24px; background: var(--clr-blue-deep); border-radius: 3px; }

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section { position: relative; min-height: 440px; display: flex; align-items: center; overflow: hidden; background: var(--hero-gradient); }
.cta-content { position: relative; z-index: 1; text-align: center; width: 100%; }
.cta-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); color: var(--clr-white); letter-spacing: 0; line-height: 1.1; margin-bottom: 24px; font-weight: 300; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--clr-blue-navy); border-top: 1px solid rgba(255,255,255,0.08); padding: 80px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand-logo img { width: 32px; height: 32px; object-fit: contain; }
.footer-brand-name { font-family: var(--font-display); font-size: 16px; letter-spacing: 2px; color: var(--clr-white); font-weight: 600; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.5); border-radius: 4px; transition: all 0.3s; }
.footer-social a:hover { border-color: var(--clr-blue-mid); color: var(--clr-blue-mid); }
.footer-col-title { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 22px; font-weight: 600; }
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color var(--trans-base), padding-left var(--trans-base); }
.footer-col-links a:hover { color: var(--clr-blue-mid); padding-left: 6px; }
.footer-bottom { padding-top: 28px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 13px; letter-spacing: 0; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; letter-spacing: 0; color: rgba(255,255,255,0.3); transition: color var(--trans-base); }
.footer-legal a:hover { color: var(--clr-blue-mid); }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero { min-height: 52vh; display: flex; align-items: flex-end; padding-bottom: 70px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { filter: brightness(0.25) saturate(0.6); }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,47,82,0.85) 0%, rgba(15,95,168,0.5) 100%); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--clr-blue-mid); margin-bottom: 14px; display: block; font-weight: 500; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(40px, 6vw, 76px); color: var(--clr-white); letter-spacing: 0; line-height: 1; font-weight: 300; }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.6); margin-top: 18px; letter-spacing: 0; }

/* ── Reveal Animations ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(48px); transition: opacity 0.85s var(--ease-expo), transform 0.85s var(--ease-expo); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-56px); transition: opacity 0.85s var(--ease-expo), transform 0.85s var(--ease-expo); }
.reveal-left.in-view { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(56px); transition: opacity 0.85s var(--ease-expo), transform 0.85s var(--ease-expo); }
.reveal-right.in-view { opacity: 1; transform: translateX(0); }
.img-reveal { overflow: hidden; }
.img-reveal img { transform: scale(1.10); transition: transform 1.4s var(--ease-expo); }
.img-reveal.in-view img { transform: scale(1); }
.stagger-children > * { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo); }
.stagger-children.in-view > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: none; }
.stagger-children.in-view > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: none; }
.stagger-children.in-view > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: none; }
.stagger-children.in-view > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: none; }
.stagger-children.in-view > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: none; }
.stagger-children.in-view > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: none; }
.stagger-children.in-view > *:nth-child(7) { transition-delay: 0.48s; opacity: 1; transform: none; }
.stagger-children.in-view > *:nth-child(8) { transition-delay: 0.56s; opacity: 1; transform: none; }
.stagger-children.in-view > *:nth-child(9) { transition-delay: 0.64s; opacity: 1; transform: none; }
.stagger-children.in-view > *:nth-child(10) { transition-delay: 0.72s; opacity: 1; transform: none; }
.stagger-children.in-view > *:nth-child(11) { transition-delay: 0.80s; opacity: 1; transform: none; }
.line-draw { width: 0; height: 2px; background: var(--clr-blue-mid); transition: width 1s var(--ease-expo); border-radius: 1px; }
.line-draw.in-view { width: 100%; }

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(11,47,82,0.96); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; width: auto; height: auto; }
.lightbox-close { position: absolute; top: 24px; right: 32px; color: var(--clr-white); font-size: 28px; cursor: pointer; opacity: 0.6; transition: opacity 0.3s; }
.lightbox-close:hover { opacity: 1; }

/* ── Utilities ────────────────────────────────────────────── */
.text-blue   { color: var(--clr-blue-deep); }
.text-navy   { color: var(--clr-blue-navy); }
.text-mid    { color: var(--clr-text-mid); }
.text-muted  { color: var(--clr-text-muted); }
.text-white  { color: var(--clr-white); }
.bg-blue     { background: var(--clr-blue-deep); }
.bg-navy     { background: var(--clr-blue-navy); }
.bg-light    { background: var(--clr-blue-light); }
.mt-auto     { margin-top: auto; }

#page-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0b2f52 0%, #0f5fa8 40%, #58b7ff 100%);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  color: #fff;
}

.loader-short {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 110px;
  font-weight: 300;
  letter-spacing: 10px;
  line-height: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: loaderMom 1s ease forwards;
}

.loader-full {
  margin-top: 14px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: loaderText 1s ease forwards;
  animation-delay: 0.35s;
}

@keyframes loaderMom {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loaderText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .loader-short {
    font-size: 68px;
    letter-spacing: 6px;
  }

  .loader-full {
    font-size: 14px;
    letter-spacing: 3px;
  }
}





.hero-title {
  font-size: 220px !important;
  line-height: 0.9;
  letter-spacing: 12px;
  font-weight: 300;
}

.hero-subtitle {
  font-size: 42px !important;
  letter-spacing: 6px;
  margin-top: 18px;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 160px !important;
    letter-spacing: 10px;
  }

  .hero-subtitle {
    font-size: 22px !important;
    letter-spacing: 5px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 100px !important;
    letter-spacing: 6px;
    line-height: 1;
  }

  .hero-subtitle {
    font-size: 22px !important;
    letter-spacing: 3px;
    margin-top: 12px;
  }
}
