/* =====================================================
   SATA CONSTRUCTION – SHARED STYLES
   ===================================================== */

:root {
  --navy: #080e5a;
  --navy-soft: #0e1a88;
  --navy-deep: #050838;
  --accent: #2563eb;
  --accent-glow: rgba(59, 130, 246, 0.45);
  --bg: #f5f7fb;
  --bg-soft: #eef2fb;
  --surface: #ffffff;
  --text-main: #0f172a;
  --text-muted: #6b7280;
  --line: #e5e7eb;

  --card-radius: 20px;
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 14px 34px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 28px 60px rgba(15, 23, 42, 0.18);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--surface);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.section { padding: 90px 20px; }
.section-inner { max-width: 1180px; margin: 0 auto; }

.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 12px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto 50px;
}

.center { text-align: center; }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: #ffffff;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.navbar.scrolled {
  padding: 12px 60px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
}

.logo {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 12px;
  background: #f5f1e8;                          /* matches the cream of the logo */
  border: 1px solid rgba(8, 14, 90, 0.08);
  box-shadow: 0 4px 14px rgba(8, 14, 90, 0.08);
  transition: all 0.25s var(--ease);
}
.logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(8, 14, 90, 0.15);
  border-color: rgba(8, 14, 90, 0.18);
}
.logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  filter: contrast(1.05);                       /* slightly sharper edges */
}
.logo-text {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  position: relative;
  font-size: 0.98rem;
  font-weight: 500;
  color: #111827;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 2px;
  background: var(--navy);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); font-weight: 600; }

.book-now {
  background: var(--navy);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
  box-shadow: 0 6px 16px rgba(8, 14, 90, 0.25);
}
.book-now:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.4);
}

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--navy);
}

@media (max-width: 900px) {
  .navbar, .navbar.scrolled { padding: 14px 18px; }
  .nav-links {
    position: fixed;
    inset: 70px 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 18px 0 24px;
    gap: 14px;
    transform: translateY(-130%);
    transition: transform 0.35s var(--ease);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  }
  .nav-links.active { transform: translateY(0); }
  .nav-links a { width: 100%; text-align: center; padding: 10px 0; }
  .book-container { display: none; }
  .menu-toggle { display: block; }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary, .btn-outline, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
}
.btn-primary {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(255,255,255,0.28); }
.btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-ghost {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 24px rgba(8, 14, 90, 0.25);
}
.btn-ghost:hover { background: var(--accent); transform: translateY(-2px); }

/* =====================================================
   HERO BASE
   ===================================================== */
.hero {
  position: relative;
  padding: 70px 20px 90px;
  background:
    radial-gradient(circle at 15% 10%, rgba(59, 130, 246, 0.25), transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(99, 102, 241, 0.25), transparent 40%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-soft) 55%, #1e293b 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 50%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 80%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 1180px; margin: 0 auto; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cbd5e1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.25);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

/* =====================================================
   PAGE HEADER (used on subpages)
   ===================================================== */
.page-header {
  position: relative;
  padding: 90px 20px 80px;
  background:
    radial-gradient(circle at 20% 0%, rgba(59, 130, 246, 0.22), transparent 45%),
    radial-gradient(circle at 80% 100%, rgba(99, 102, 241, 0.22), transparent 45%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-soft) 60%, #1e293b 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 50%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 80%);
  pointer-events: none;
}
.page-header-inner { position: relative; max-width: 880px; margin: 0 auto; }
.page-header h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  margin: 14px 0 14px;
  letter-spacing: -0.02em;
}
.page-header p {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 640px;
  margin: 0 auto;
}
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #94a3b8;
}
.breadcrumbs a { color: #cbd5e1; }
.breadcrumbs a:hover { color: #fff; }

/* =====================================================
   STATS STRIP (counters)
   ===================================================== */
.stats-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
  color: #fff;
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.18), transparent 35%),
    radial-gradient(circle at 90% 50%, rgba(255,255,255,0.12), transparent 35%);
  pointer-events: none;
}
.stats-grid {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-item .stat-value {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-item .stat-label {
  display: block;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================
   BRAND PARTNERS STRIP
   ===================================================== */
.brands {
  background: var(--bg-soft);
  padding: 60px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brands h3 {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin: 0 0 30px;
}
.brand-marquee {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.brand-track {
  display: flex;
  gap: 70px;
  width: max-content;
  animation: scroll-x 28s linear infinite;
}
.brands:hover .brand-track { animation-play-state: paused; }
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-width: 160px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #475569;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.3s ease;
}
.brand-item:hover { filter: none; opacity: 1; color: var(--navy); }
.brand-item img { max-height: 50px; width: auto; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: #0b1023;
  color: #cbd5e1;
  padding: 60px 20px 30px;
  font-size: 0.92rem;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.footer-col p, .footer-col li { margin: 6px 0; line-height: 1.6; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  display: block;
}
.footer-tag { color: #94a3b8; font-size: 0.92rem; max-width: 280px; }
.social-icons { display: flex; gap: 10px; margin-top: 14px; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
  color: #cbd5e1;
}
.social-icons a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-bottom {
  max-width: 1180px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: #94a3b8;
}
@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
}

/* =====================================================
   FLOATING BUTTONS
   ===================================================== */
.whatsapp-btn {
  position: fixed; right: 20px; bottom: 78px;
  width: 52px; height: 52px;
  border-radius: 999px;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 22px rgba(37,211,102,0.4);
  z-index: 70;
  transition: transform 0.25s ease;
}
.whatsapp-btn:hover { transform: scale(1.08); }

.back-to-top {
  position: fixed; right: 20px; bottom: 20px;
  width: 46px; height: 46px;
  border-radius: 999px;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 10px 22px rgba(8,14,90,0.35);
  opacity: 0; pointer-events: none;
  transition: all 0.3s ease;
  z-index: 70;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--accent); transform: translateY(-3px); }

/* =====================================================
   REVEAL ON SCROLL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* =====================================================
   ANGLED DIVIDER
   ===================================================== */
.section-divider-angled { background: #fff; height: 80px; overflow: hidden; }
.section-divider-angled svg { display: block; width: 100%; height: 100%; }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-soft) 100%);
  border-radius: 28px;
  padding: 60px 50px;
  color: #fff;
  text-align: center;
  margin: 60px auto;
  max-width: 1180px;
  box-shadow: var(--shadow-lg);
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(59,130,246,0.4), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(168,85,247,0.3), transparent 40%);
  pointer-events: none;
}
.cta-banner h2 {
  position: relative;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cta-banner p { position: relative; color: #cbd5e1; max-width: 580px; margin: 0 auto 24px; }
.cta-banner .btn-primary,
.cta-banner .btn-outline { position: relative; }
@media (max-width: 600px) {
  .cta-banner { padding: 44px 24px; border-radius: 20px; }
}

