/* ============================================================================
 * style.css — Core design system for Shri Shri Amit Agarwal
 * ----------------------------------------------------------------------------
 * Sections:
 *   1. Design tokens (CSS variables)
 *   2. Reset & base
 *   3. Typography & utilities
 *   4. Layout primitives
 *   5. Buttons
 *   6. Navigation
 *   7. Starfield / cosmic background
 *   8. Hero
 *   9. Section headers
 *  10. Cards (service, package, testimonial, award, video, gallery)
 *  11. Counters & stats
 *  12. Timeline
 *  13. FAQ accordion
 *  14. Contact / forms
 *  15. Footer
 *  16. Floating WhatsApp + scroll-to-top
 * ==========================================================================*/

/* ------------------------------------------------------------------ */
/* 1. DESIGN TOKENS                                                    */
/* ------------------------------------------------------------------ */
/* Metric-adjusted fallback fonts — minimise layout shift (CLS) when the web
   fonts swap in. The fallbacks are scaled to match Inter/Playfair metrics so
   text barely reflows once the real fonts load. */
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  ascent-override: 90.44%;
  descent-override: 22.52%;
  line-gap-override: 0%;
  size-adjust: 107.12%;
}
@font-face {
  font-family: 'Playfair Fallback';
  src: local('Georgia');
  ascent-override: 97%;
  descent-override: 24%;
  line-gap-override: 0%;
  size-adjust: 104%;
}

:root {
  /* Core palette — deep cosmic dark */
  --navy-900: #05081c;
  --navy-850: #070b24;
  --navy-800: #0a0e27;
  --navy-700: #0f1533;
  --navy-600: #161d45;
  --purple-700: #2b1a4d;
  --purple-600: #3d2470;
  --purple-500: #5b3ca0;

  /* Gold & accents */
  --gold-400: #f7e08a;
  --gold-500: #d4af37;
  --gold-600: #b8860b;
  --saffron: #ff9933;
  --warm-orange: #ff7a3d;

  /* Neutrals / text */
  --white: #ffffff;
  --soft-white: #f4f1ea;
  --text: #e8e6f0;
  --text-muted: #a7a7c4;
  --text-dim: #7d7ea3;
  --line: rgba(212, 175, 55, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);

  /* Gradients */
  --grad-gold: linear-gradient(135deg, var(--gold-400), var(--gold-500) 55%, var(--gold-600));
  --grad-cosmic: linear-gradient(135deg, #1a1145 0%, #0a0e27 55%, #05081c 100%);
  --grad-purple: linear-gradient(135deg, #3d2470, #1a1145);
  --grad-hero: radial-gradient(1200px 700px at 75% 15%, rgba(91, 60, 160, 0.35), transparent 60%),
               radial-gradient(900px 600px at 10% 80%, rgba(255, 122, 61, 0.12), transparent 55%),
               var(--navy-800);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.045);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-blur: blur(14px);

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.28);

  /* Typography */
  --font-display: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
  --font-body: 'Inter', 'Inter Fallback', system-ui, -apple-system, sans-serif;
  --font-hindi: 'Tiro Devanagari Hindi', 'Playfair Display', serif;

  /* Spacing & shape */
  --container: 1200px;
  --container-wide: 1360px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --section-y: clamp(4rem, 9vw, 8rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;

  --nav-h: 76px;
}

/* ------------------------------------------------------------------ */
/* 2. RESET & BASE                                                    */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--navy-800);
  line-height: 1.7;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection */
::selection { background: rgba(212, 175, 55, 0.35); color: var(--white); }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: var(--purple-600); border-radius: 10px; border: 2px solid var(--navy-900); }
::-webkit-scrollbar-thumb:hover { background: var(--purple-500); }

/* ------------------------------------------------------------------ */
/* 3. TYPOGRAPHY & UTILITIES                                          */
/* ------------------------------------------------------------------ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--soft-white); }
h1 { font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 1.4rem + 2.2vw, 3rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { color: var(--text-muted); }

.text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hindi { font-family: var(--font-hindi); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-500);
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px;
  background: var(--grad-gold);
}
.eyebrow.center::before { display: none; }
.lead { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); color: var(--text); }

.u-center { text-align: center; }
.u-mt-1 { margin-top: 1rem; } .u-mt-2 { margin-top: 2rem; } .u-mt-3 { margin-top: 3rem; }
.u-mb-1 { margin-bottom: 1rem; } .u-mb-2 { margin-bottom: 2rem; }
.u-hidden { display: none !important; }
.divider-star {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; color: var(--gold-500); margin: 1.2rem 0;
}
.divider-star::before, .divider-star::after {
  content: ''; height: 1px; width: clamp(40px, 12vw, 120px);
  background: linear-gradient(90deg, transparent, var(--gold-500));
}
.divider-star::after { background: linear-gradient(90deg, var(--gold-500), transparent); }

/* ------------------------------------------------------------------ */
/* 4. LAYOUT PRIMITIVES                                               */
/* ------------------------------------------------------------------ */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container-wide { width: min(100% - 2.5rem, var(--container-wide)); margin-inline: auto; }
section { position: relative; }
.section { padding-block: var(--section-y); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-alt { background:
  radial-gradient(800px 500px at 90% 0%, rgba(91,60,160,0.18), transparent 60%),
  var(--navy-850); }
.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ------------------------------------------------------------------ */
/* 5. BUTTONS                                                         */
/* ------------------------------------------------------------------ */
.btn {
  --btn-bg: var(--grad-gold);
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6rem; padding: 0.95rem 1.9rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  letter-spacing: 0.01em; border-radius: var(--radius-pill);
  color: var(--navy-900); background: var(--btn-bg);
  box-shadow: var(--shadow-gold); overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  will-change: transform;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform 0.7s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 46px rgba(212,175,55,0.4); }
.btn:hover::after { transform: translateX(120%); }
.btn-ghost {
  --btn-bg: transparent; color: var(--soft-white);
  border: 1.5px solid var(--line); box-shadow: none;
  backdrop-filter: var(--glass-blur);
}
.btn-ghost:hover { border-color: var(--gold-500); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.btn-whatsapp { --btn-bg: linear-gradient(135deg, #25d366, #128c4b); color: #fff; box-shadow: 0 10px 34px rgba(37,211,102,0.32); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }
.btn-sm { padding: 0.7rem 1.4rem; font-size: 0.9rem; }
.btn-block { display: flex; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ------------------------------------------------------------------ */
/* 6. NAVIGATION                                                      */
/* ------------------------------------------------------------------ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7, 11, 36, 0.82);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
.nav {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
  width: min(100% - 2.5rem, var(--container-wide)); margin-inline: auto;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand img { width: 42px; height: 42px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--soft-white); }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-500); }
.nav-links { display: flex; align-items: center; gap: 0.35rem; }
.nav-links a {
  position: relative; padding: 0.55rem 0.85rem; font-size: 0.92rem; font-weight: 500;
  color: var(--text-muted); border-radius: var(--radius-sm);
  transition: color var(--dur) var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.35rem;
  height: 1.5px; background: var(--grad-gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--soft-white); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { margin-left: 0.6rem; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line-soft); align-items: center; justify-content: center;
}
.nav-toggle span { position: relative; width: 22px; height: 2px; background: var(--soft-white); border-radius: 2px; transition: 0.3s var(--ease); }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--soft-white); border-radius: 2px; transition: 0.3s var(--ease);
}
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ------------------------------------------------------------------ */
/* 7. STARFIELD / COSMIC BACKGROUND                                   */
/* ------------------------------------------------------------------ */
.starfield {
  position: fixed; inset: 0; z-index: -2;
  background: var(--grad-hero);
}
#stars-canvas { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.cosmic-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; z-index: 0;
  pointer-events: none;
}

/* ------------------------------------------------------------------ */
/* 8. HERO                                                            */
/* ------------------------------------------------------------------ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 3rem; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center;
  gap: clamp(2rem, 5vw, 4rem); width: 100%;
}
.hero-content { max-width: 620px; }
.hero h1 { margin: 1.1rem 0 0.4rem; }
.hero-tagline {
  font-family: var(--font-hindi); font-size: clamp(1.4rem, 1rem + 1.6vw, 2.1rem);
  color: var(--gold-400); margin-bottom: 0.5rem; font-weight: 500;
}
.hero-roles {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.4rem 0 1.6rem;
}
.role-chip {
  font-size: 0.78rem; letter-spacing: 0.04em; padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill); border: 1px solid var(--line);
  color: var(--text); background: var(--glass-bg); backdrop-filter: var(--glass-blur);
}
.hero-portrait { position: relative; display: flex; justify-content: center; }
.hero-portrait .halo {
  position: absolute; inset: -6% -6% -6% -6%; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(212,175,55,0.35), rgba(91,60,160,0.25) 45%, transparent 70%);
  filter: blur(20px); z-index: 0;
}
.portrait-frame {
  position: relative; z-index: 1; width: min(100%, 440px);
  border-radius: 300px 300px 32px 32px; overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(91,60,160,0.15), rgba(5,8,28,0.6));
  box-shadow: var(--shadow-lg), inset 0 0 60px rgba(91,60,160,0.2);
}
.portrait-frame img { width: 100%; object-fit: cover; object-position: top center; }
.portrait-ring {
  position: absolute; z-index: 2; inset: auto; width: 108%; aspect-ratio: 1;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border: 1px dashed rgba(212,175,55,0.35); border-radius: 50%;
  pointer-events: none;
}
.hero-badge {
  position: absolute; z-index: 3; bottom: 8%; left: -4%;
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.8rem 1.1rem; border-radius: var(--radius);
  background: rgba(10,14,39,0.75); border: 1px solid var(--line);
  backdrop-filter: var(--glass-blur); box-shadow: var(--shadow-md);
}
.hero-badge .stars { color: var(--gold-500); font-size: 0.9rem; letter-spacing: 2px; }
.hero-badge b { color: var(--soft-white); font-size: 1.1rem; font-family: var(--font-display); }
.hero-badge small { color: var(--text-dim); font-size: 0.72rem; }
.scroll-cue {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: var(--text-dim); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-cue .mouse {
  width: 22px; height: 36px; border: 1.5px solid var(--line); border-radius: 12px;
  position: relative;
}
.scroll-cue .mouse::after {
  content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 3px; background: var(--gold-500);
  animation: scrollWheel 1.6s var(--ease) infinite;
}

/* Page hero (interior pages) */
.page-hero {
  position: relative; padding-top: calc(var(--nav-h) + clamp(3rem, 7vw, 5.5rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem); text-align: center; overflow: hidden;
}
.page-hero .breadcrumb { justify-content: center; margin-top: 1rem; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold-500); }
.breadcrumb span { opacity: 0.5; }

/* ------------------------------------------------------------------ */
/* 9. SECTION HEADERS                                                 */
/* ------------------------------------------------------------------ */
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 0.8rem 0 0.6rem; }
.section-head p { font-size: 1.05rem; }

/* ------------------------------------------------------------------ */
/* 10. CARDS                                                          */
/* ------------------------------------------------------------------ */
.card {
  position: relative; border-radius: var(--radius);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 0%), rgba(212,175,55,0.1), transparent 60%);
  opacity: 0; transition: opacity var(--dur) var(--ease); pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow-md); }
.card:hover::before { opacity: 1; }

/* Service card */
.service-card .icon-badge {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(91,60,160,0.18));
  border: 1px solid var(--line); margin-bottom: 1.2rem; color: var(--gold-400);
}
.service-card .icon-badge svg { width: 30px; height: 30px; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { font-size: 0.95rem; }
.service-benefits { margin-top: 1.1rem; display: grid; gap: 0.5rem; }
.service-benefits li { display: flex; gap: 0.55rem; font-size: 0.9rem; color: var(--text); }
.service-benefits li::before { content: '✦'; color: var(--gold-500); }
.service-card .card-link {
  margin-top: 1.3rem; display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--gold-400); font-weight: 600; font-size: 0.9rem;
}
.service-card .card-link svg { transition: transform var(--dur) var(--ease); }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* Package card */
.package-card { display: flex; flex-direction: column; }
.package-card.is-featured {
  border-color: rgba(212,175,55,0.5);
  background: linear-gradient(180deg, rgba(212,175,55,0.1), var(--glass-bg));
  box-shadow: var(--shadow-gold);
}
.pkg-badge {
  position: absolute; top: 1.2rem; right: 1.2rem; font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.35rem 0.75rem; border-radius: var(--radius-pill);
  background: rgba(91,60,160,0.4); border: 1px solid var(--line-soft); color: var(--text);
}
.package-card.is-featured .pkg-badge { background: var(--grad-gold); color: var(--navy-900); border: none; font-weight: 700; }
.pkg-ribbon {
  position: absolute; top: 0; left: 0; padding: 0.35rem 1rem; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy-900);
  background: var(--grad-gold); border-radius: var(--radius) 0 var(--radius) 0;
}
.package-card h3 { margin: 1.6rem 0 0.4rem; }
.package-card > p { font-size: 0.92rem; min-height: 3.2em; }
.pkg-tiers { margin: 1.2rem 0; display: grid; gap: 0.6rem; }
.pkg-tier {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 0.75rem 0.9rem; border-radius: 12px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-soft);
}
.pkg-tier .label { font-size: 0.82rem; color: var(--text-muted); }
.pkg-tier .price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--gold-400); white-space: nowrap; }
.pkg-features { display: grid; gap: 0.55rem; margin-bottom: 1.4rem; }
.pkg-features li { display: flex; gap: 0.55rem; font-size: 0.88rem; color: var(--text); }
.pkg-features li::before { content: '✓'; color: var(--gold-500); font-weight: 700; }
.package-card .btn { margin-top: auto; }

/* Award card */
.award-card { display: flex; gap: 1rem; align-items: flex-start; }
.award-card .medal {
  flex: none; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-purple); border: 1px solid var(--line); color: var(--gold-400);
}
.award-card h4 { color: var(--soft-white); margin-bottom: 0.3rem; }
.award-card p { font-size: 0.88rem; }

/* Testimonial card */
.testi-card { display: flex; flex-direction: column; gap: 1rem; }
.testi-card .quote-mark { font-family: var(--font-display); font-size: 3rem; line-height: 0.6; color: var(--gold-500); opacity: 0.5; }
.testi-card .stars { color: var(--gold-500); letter-spacing: 3px; }
.testi-card .body { color: var(--text); font-size: 1rem; font-style: italic; }
.testi-foot { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--grad-purple); border: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 700; color: var(--gold-400);
}
.testi-foot .name { color: var(--soft-white); font-weight: 600; font-size: 0.95rem; }
.testi-foot .role { color: var(--text-dim); font-size: 0.8rem; }
.testi-source {
  margin-left: auto; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-dim); padding: 0.25rem 0.6rem; border: 1px solid var(--line-soft); border-radius: var(--radius-pill);
}

/* ------------------------------------------------------------------ */
/* 11. COUNTERS / STATS                                               */
/* ------------------------------------------------------------------ */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.8rem);
}
.stat {
  text-align: center; padding: 1.6rem 1rem; border-radius: var(--radius);
  background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: var(--glass-blur);
}
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 1.4rem + 2vw, 3rem); color: var(--gold-400); line-height: 1; }
.stat .label { margin-top: 0.6rem; font-size: 0.85rem; letter-spacing: 0.04em; color: var(--text-muted); }

/* ------------------------------------------------------------------ */
/* 12. TIMELINE                                                       */
/* ------------------------------------------------------------------ */
.timeline { position: relative; margin-top: 2rem; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--gold-500), var(--purple-500), transparent);
}
.timeline-item { position: relative; padding-bottom: 2.2rem; }
.timeline-item::before {
  content: ''; position: absolute; left: -2rem; top: 4px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--navy-800); border: 3px solid var(--gold-500);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.12);
}
.timeline-item .year { font-family: var(--font-display); color: var(--gold-400); font-weight: 700; }
.timeline-item h4 { color: var(--soft-white); margin: 0.2rem 0 0.4rem; }
.timeline-item p { font-size: 0.92rem; }

/* ------------------------------------------------------------------ */
/* 13. FAQ ACCORDION                                                 */
/* ------------------------------------------------------------------ */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 0.9rem; }
.faq-item {
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  background: var(--glass-bg); backdrop-filter: var(--glass-blur); overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.faq-item[open] { border-color: var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.08rem; color: var(--soft-white);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .plus { flex: none; width: 26px; height: 26px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--gold-500); transition: transform var(--dur) var(--ease);
}
.faq-q .plus::before { width: 14px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 14px; }
.faq-item[open] .faq-q .plus::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { padding: 0 1.4rem 1.3rem; color: var(--text-muted); font-size: 0.96rem; }

/* ------------------------------------------------------------------ */
/* 14. CONTACT / FORMS                                                */
/* ------------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.field { display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.field input, .field textarea, .field select {
  padding: 0.85rem 1rem; border-radius: 12px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-soft); color: var(--soft-white); transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold-500); background: rgba(255,255,255,0.06);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--text-dim); margin-top: 0.5rem; }
.form-status { margin-top: 1rem; font-size: 0.92rem; padding: 0.8rem 1rem; border-radius: 12px; display: none; }
.form-status.ok { display: block; background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.35); color: #9fe9bd; }
.form-status.err { display: block; background: rgba(255,90,90,0.12); border: 1px solid rgba(255,90,90,0.35); color: #ffb3b3; }

.info-card { display: flex; flex-direction: column; gap: 1.2rem; }
.info-line { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-line .ic {
  flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad-purple); border: 1px solid var(--line); color: var(--gold-400);
}
.info-line .k { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
.info-line .v { color: var(--soft-white); }
.info-line a.v:hover { color: var(--gold-400); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; filter: grayscale(0.2) contrast(1.05); }

/* Social row */
.social-row { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.social-btn {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--text);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.social-btn:hover { transform: translateY(-3px); color: var(--gold-400); border-color: var(--gold-500); }
.social-btn svg { width: 20px; height: 20px; }

/* ------------------------------------------------------------------ */
/* 15. FOOTER                                                         */
/* ------------------------------------------------------------------ */
.site-footer { position: relative; margin-top: var(--section-y); border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, transparent, rgba(5,8,28,0.6)); }
.footer-top { padding-block: clamp(3rem, 5vw, 4.5rem); display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand p { font-size: 0.92rem; margin: 1rem 0; max-width: 34ch; }
.footer-col h5 { font-family: var(--font-display); font-size: 1.1rem; color: var(--soft-white); margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; transition: color var(--dur) var(--ease), padding var(--dur) var(--ease); }
.footer-col a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-contact li { display: flex; gap: 0.6rem; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.footer-contact .ic { color: var(--gold-500); flex: none; }
.footer-bottom {
  border-top: 1px solid var(--line-soft); padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: var(--text-dim);
}
.footer-bottom a:hover { color: var(--gold-400); }
.footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ------------------------------------------------------------------ */
/* 16. FLOATING WHATSAPP + SCROLL TOP                                 */
/* ------------------------------------------------------------------ */
.fab-wa {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, #25d366, #128c4b); color: #fff;
  box-shadow: 0 12px 34px rgba(37,211,102,0.42);
  animation: pulseWA 2.4s ease-in-out infinite;
}
.fab-wa svg { width: 30px; height: 30px; }
.fab-wa:hover { transform: scale(1.08); }
.to-top {
  position: fixed; right: 1.4rem; bottom: 5.6rem; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--gold-400);
  backdrop-filter: var(--glass-blur); opacity: 0; visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { transform: translateY(-3px); border-color: var(--gold-500); }
.to-top svg { width: 20px; height: 20px; transform: rotate(-90deg); }

/* CTA banner */
.cta-banner {
  position: relative; text-align: center; border-radius: var(--radius-lg); overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--grad-purple); border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(212,175,55,0.22), transparent 60%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { margin-bottom: 0.8rem; }
.cta-banner p { max-width: 60ch; margin-inline: auto; margin-bottom: 1.8rem; color: var(--text); }
.cta-banner .btn-row { justify-content: center; }

/* About split */
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-lg); width: 100%; }
.split-media .accent-frame {
  position: absolute; inset: 1.2rem -1.2rem -1.2rem 1.2rem; border: 1px solid var(--gold-500);
  border-radius: var(--radius-lg); z-index: -1; opacity: 0.5;
}

/* Value / mission cards */
.value-card { text-align: center; }
.value-card .icon-badge { margin-inline: auto; }

/* Highlight strip (achievements) */
.highlight-card { display: flex; gap: 1rem; align-items: center; }
.highlight-card .ic {
  flex: none; width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(91,60,160,0.2)); border: 1px solid var(--line);
  color: var(--gold-400);
}
.highlight-card h4 { color: var(--soft-white); margin-bottom: 0.2rem; }
.highlight-card p { font-size: 0.86rem; }

/* Gallery */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2rem; }
.filter-btn {
  padding: 0.55rem 1.2rem; border-radius: var(--radius-pill); font-size: 0.86rem; font-weight: 500;
  border: 1px solid var(--line-soft); color: var(--text-muted); background: var(--glass-bg);
  transition: all var(--dur) var(--ease);
}
.filter-btn.active, .filter-btn:hover { color: var(--navy-900); background: var(--grad-gold); border-color: transparent; }
.masonry { columns: 3; column-gap: 1.2rem; }
.masonry-item {
  break-inside: avoid; margin-bottom: 1.2rem; border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: zoom-in; border: 1px solid var(--glass-border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.masonry-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.masonry-item img { width: 100%; display: block; transition: transform 0.6s var(--ease); }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item .cap {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 1rem 0.9rem; font-size: 0.85rem; color: var(--soft-white);
  background: linear-gradient(transparent, rgba(5,8,28,0.85)); opacity: 0; transition: opacity var(--dur) var(--ease);
}
.masonry-item:hover .cap { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none; place-items: center;
  background: rgba(5,8,28,0.92); backdrop-filter: blur(8px); padding: 2rem;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(92vw, 1000px); max-height: 82vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.lightbox .lb-cap { text-align: center; color: var(--soft-white); margin-top: 1rem; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--soft-white); font-size: 1.4rem;
  transition: background var(--dur) var(--ease);
}
.lb-close { top: 1.5rem; right: 1.5rem; }
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--purple-600); }

/* Video cards */
.video-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-border); background: var(--glass-bg); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--grad-purple); }
.video-thumb img, .video-thumb iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.video-thumb .play {
  position: absolute; inset: 0; display: grid; place-items: center; cursor: pointer;
  background: radial-gradient(circle at center, rgba(5,8,28,0.2), rgba(5,8,28,0.55));
}
.video-thumb .play span {
  width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(212,175,55,0.92); color: var(--navy-900); box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform var(--dur) var(--ease);
}
.video-thumb:hover .play span { transform: scale(1.12); }
.video-meta { padding: 1.2rem 1.3rem 1.5rem; }
.video-meta h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.video-meta p { font-size: 0.9rem; }
.video-featured .video-thumb { aspect-ratio: 16/8; }

/* Marquee (trust logos / roles) */
.trust-strip { border-block: 1px solid var(--line-soft); padding-block: 1.5rem; overflow: hidden; }
.marquee { display: flex; gap: 3rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee span { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--text-dim); font-family: var(--font-display); font-size: 1.15rem; white-space: nowrap; }
.marquee span::before { content: '✦'; color: var(--gold-500); }
.trust-strip:hover .marquee { animation-play-state: paused; }

/* Comparison table (packages) */
.compare-table { width: 100%; border-collapse: collapse; min-width: 620px; background: var(--navy-850); }
.compare-table th, .compare-table td { padding: 1rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: 0.92rem; }
.compare-table thead th {
  font-family: var(--font-display); font-size: 1rem; color: var(--gold-400);
  background: rgba(212,175,55,0.06); border-bottom: 1px solid var(--line);
}
.compare-table td:first-child { color: var(--soft-white); font-weight: 500; }
.compare-table td:nth-child(3), .compare-table td:nth-child(4) { color: var(--gold-400); font-weight: 600; white-space: nowrap; }
.compare-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.compare-table tr.is-featured { background: rgba(212,175,55,0.08); }
.compare-table tr.is-featured td:first-child { color: var(--gold-400); }

/* Testimonial slider */
.slider-viewport { overflow: hidden; }
.slider-track { display: flex; transition: transform 0.65s var(--ease); }
.slide { flex: 0 0 100%; padding: 0 0.7rem; box-sizing: border-box; }
.slide .testi-card { height: 100%; min-height: 260px; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 2rem; }
.slider-btn {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--gold-400);
  transition: all var(--dur) var(--ease);
}
.slider-btn:hover { background: var(--grad-gold); color: var(--navy-900); border-color: transparent; }
.slider-btn svg { transform: rotate(180deg); }
.slider-btn.next svg { transform: none; }
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); transition: all var(--dur) var(--ease); }
.slider-dot.active { background: var(--grad-gold); width: 26px; border-radius: 6px; }

/* noscript nav fallback */
.noscript-note { background: var(--purple-700); color: var(--soft-white); text-align: center; padding: 0.6rem; font-size: 0.9rem; }
