/* ============================================================
   JAYSAN ACADEMY — Enterprise Design System
   Aesthetic: Refined Corporate · Deep Navy × Warm Gold
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

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

:root {
  /* Color Palette */
  --navy:        #0A1628;
  --navy-mid:    #0E2044;
  --navy-light:  #152B5E;
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #A8841F;
  --cream:       #F9F6F0;
  --surface:     #F3F0EA;
  --white:       #FFFFFF;
  --text:        #1A1A2E;
  --text-mid:    #3D3D5C;
  --text-muted:  #7A7A9A;
  --border:      #E2DDD5;
  --shadow:      rgba(10,22,40,0.12);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-py: 5rem;
  --container-max: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
}

/* ── BASE ─────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CONTAINER ────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── TOPBAR ───────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  padding: 0.5rem 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.topbar-cta:hover { background: var(--gold-light); }

/* ── NAVBAR ───────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 30px var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.logo-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.logo-light .logo-name { color: var(--white); }
.logo-light .logo-tagline { color: rgba(255,255,255,0.5); }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.25s;
}
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
}
.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}
.btn-full { width: 100%; justify-content: center; }

/* ── HAMBURGER (MOBILE) ───────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  gap: 0.25rem;
}
.mobile-menu a {
  padding: 0.7rem 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }

/* ── SECTIONS ─────────────────────────────────────── */
.section { padding: var(--section-py) 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.1);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-tag.light {
  color: var(--gold-light);
  background: rgba(232,201,122,0.15);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0D1B3E 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  min-height: 100vh;
}
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 1rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.globe-ring {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-slow 30s linear infinite;
  position: relative;
}
.globe-ring::before {
  content: '';
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  border: 1px dashed rgba(201,168,76,0.1);
}
.globe-core {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  animation: spin-slow 30s linear reverse infinite;
}
.globe-emoji { font-size: 3.5rem; }
.globe-label {
  font-size: 0.7rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  min-width: 180px;
  animation: float 4s ease-in-out infinite;
}
.card-1 { top: 20px; left: -10px; animation-delay: 0s; }
.card-2 { bottom: 20px; right: -10px; animation-delay: 2s; }
.card-icon { font-size: 1.6rem; flex-shrink: 0; }
.floating-card strong { display: block; font-size: 0.85rem; font-weight: 600; }
.floating-card p { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin: 0; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* SCROLL INDICATOR */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent);
  animation: pulse-line 2s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── TRUST STRIP ──────────────────────────────────── */
.trust-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-items {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-items span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
  padding: 0.3rem 0.8rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: border-color 0.2s, color 0.2s;
}
.trust-items span:hover {
  border-color: var(--gold);
  color: var(--navy);
}

/* ── SERVICES GRID ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  box-shadow: 0 12px 40px var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(10,22,40,0.05);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  user-select: none;
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.service-link:hover { gap: 0.6rem; }

/* ── WHY SECTION ──────────────────────────────────── */
.why-section {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(21,43,94,0.8) 0%, transparent 50%);
}
.why-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-text { color: var(--white); }
.why-text > p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.why-pillars { display: flex; flex-direction: column; gap: 1.5rem; }
.pillar { display: flex; gap: 1.25rem; align-items: flex-start; }
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.pillar h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.pillar p { font-size: 0.9rem; color: rgba(255,255,255,0.55); }

.why-numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-num-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.3s;
}
.why-num-card:hover { background: rgba(255,255,255,0.08); }
.why-num-card.accent {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: transparent;
}
.why-num-card.accent2 {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.2);
}
.big-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.why-num-card.accent .big-num { color: var(--navy); }
.why-num-card span:last-child {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.why-num-card.accent span:last-child { color: rgba(10,22,40,0.7); }

/* ── INDUSTRIES ───────────────────────────────────── */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.industry-chip {
  padding: 0.6rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all 0.25s;
  cursor: default;
}
.industry-chip:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* ── CTA BANNER ───────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  padding: 4rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.cta-inner p {
  color: rgba(10,22,40,0.7);
  font-size: 1rem;
}

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { max-width: 300px; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 1.25rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-col p {
  font-size: 0.85rem;
  line-height: 1.6;
}
.footer-bottom {
  padding: 1.25rem 0;
  background: rgba(0,0,0,0.15);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ── PAGE HERO (inner pages) ──────────────────────── */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 6rem 0 5rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.page-hero-inner {
  position: relative;
  color: var(--white);
  max-width: 700px;
}
.page-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0.75rem 0;
}
.page-hero-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--gold); }

/* ── TWO COLUMN LAYOUT ────────────────────────────── */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col-section.reverse { direction: rtl; }
.two-col-section.reverse > * { direction: ltr; }
.two-col-text { display: flex; flex-direction: column; gap: 0; }
.two-col-text .section-title { margin-top: 0.5rem; }
.two-col-text p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1rem; }

/* ABOUT VISUAL */
.about-visual-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-badge-row { display: flex; gap: 1rem; }
.about-badge {
  flex: 1;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.ab-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ab-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; }
.about-mission {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.about-mission h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.about-mission p { font-size: 0.92rem; color: var(--text-mid); font-style: italic; margin: 0; }
.about-location {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.about-location span { font-size: 1.2rem; flex-shrink: 0; }
.about-location strong { display: block; color: var(--navy); margin-bottom: 0.2rem; font-size: 0.9rem; }

/* ── STATS SECTION ────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-block:last-child { border-right: none; }
.stat-big {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.stat-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ── VALUES GRID ──────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.value-card:hover {
  box-shadow: 0 8px 30px var(--shadow);
  transform: translateY(-3px);
}
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.value-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── SERVICE DETAIL ───────────────────────────────── */
.service-detail { overflow: hidden; }
.service-detail-visual {
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.accent-bg  { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.accent-bg2 { background: linear-gradient(135deg, #1a3a6e, #0d2040); }
.accent-bg3 { background: linear-gradient(135deg, #162d55, #0f1e3d); }
.accent-bg4 { background: linear-gradient(135deg, var(--navy-mid), var(--navy)); }

.svc-icon-big {
  font-size: 6rem;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}
.svc-num-watermark {
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 700;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  user-select: none;
  z-index: 0;
}
.svc-features { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.25rem; }
.svc-feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-mid);
}
.svc-feat span {
  color: var(--gold-dark);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── PROCESS STEPS ────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.step-connector {
  position: absolute;
  top: calc(1.5rem + 26px);
  left: calc(50% + 26px);
  right: calc(-50% + 26px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.2));
}
.process-step:last-child .step-connector { display: none; }
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.process-step p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ── CONTACT ──────────────────────────────────────── */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap .section-title { margin-top: 0.5rem; }
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,22,40,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { cursor: pointer; }

.form-success {
  display: none;
  background: rgba(40,167,69,0.1);
  border: 1px solid rgba(40,167,69,0.3);
  color: #155724;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success.visible { display: block; }

.contact-info-wrap { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.contact-card-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-card a { color: var(--gold-dark); font-weight: 500; }
.contact-card a:hover { color: var(--navy); }
.highlight-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-color: transparent;
}
.highlight-card .contact-card-icon { color: var(--white); }
.highlight-card h4 { color: var(--white); }
.destinations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.destinations-list span {
  padding: 0.25rem 0.7rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
}

/* MAP */
.map-section { height: 360px; }
.map-placeholder {
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-overlay {
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.map-overlay span { font-size: 2.5rem; }
.map-overlay strong { font-size: 1.2rem; }
.map-overlay p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 0.5rem; }

/* ── AOS ANIMATIONS ───────────────────────────────── */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos="fade-left"] { transform: translateX(24px); }
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos].aos-animate { opacity: 1; transform: translate(0); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; min-height: auto; padding-top: 3rem; }
  .hero-visual { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-numbers-grid { grid-template-columns: repeat(4, 1fr); }
  .two-col-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col-section.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }
  .topbar { display: none; }
  .nav-links { display: none; }
  .navbar .btn-primary { display: none; }
  .hamburger { display: flex; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-block:nth-child(2n) { border-right: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hero-stats { gap: 0.75rem; }
  .stat-div { display: none; }
  .why-numbers-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
}
