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

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

:root {
  --navy:          #0A1628;
  --navy-mid:      #1A3A5C;
  --crimson:       #C0392B;
  --crimson-dark:  #922B21;
  --crimson-bg:    rgba(192, 57, 43, 0.08);
  --gold:          #F5B800;
  --gold-light:    #FFD966;
  --white:         #FFFFFF;
  --off-white:     #F7F9FB;
  --light:         #EEF2F7;
  --text-dark:     #0A1628;
  --text-body:     #374151;
  --text-muted:    #6B7280;
  --border:        #E2E8F0;
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.07), 0 2px 10px rgba(0,0,0,0.05);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.09), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg:     0 10px 40px rgba(0,0,0,0.12), 0 4px 14px rgba(0,0,0,0.07);
  --radius:        14px;
  --radius-sm:     8px;
  --ease:          0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; }
ul  { list-style: none; }

/* ── NAVBAR ───────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: box-shadow var(--ease);
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.22); }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 46px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.09);
}
.nav-cta {
  background: var(--crimson) !important;
  color: #fff !important;
  padding: 10px 26px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(192,57,43,0.38) !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--crimson-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.55) !important;
}
.nav-cta.active { background: var(--crimson-dark) !important; }
.nav-links a.nav-login {
  color: #F5B800 !important;
  border: 2px solid #F5B800 !important;
  border-radius: 8px !important;
  padding: 8px 18px !important;
  font-weight: 600 !important;
  margin-left: 4px;
  background: transparent !important;
}
.nav-links a.nav-login:hover {
  background: rgba(245,184,0,0.15) !important;
  color: #F5B800 !important;
  transform: translateY(-1px);
  box-shadow: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 16px;
  border-radius: 8px;
  transition: all var(--ease);
}
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.08); }

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--ease);
  border: 2px solid transparent;
  letter-spacing: 0.1px;
}
.btn-primary {
  background: var(--crimson);
  color: #fff;
  box-shadow: 0 4px 16px rgba(192,57,43,0.32);
}
.btn-primary:hover {
  background: var(--crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.48);
}
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--off-white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.70);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--crimson);
  font-weight: 700;
  border-color: #fff;
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 40px; font-size: 16px; }
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ── LAYOUT ───────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
section { padding: 96px 0; }
.bg-light { background: var(--off-white); }
.bg-navy  { background: var(--navy); }

/* ── SECTION HEADER ───────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--crimson-bg);
  color: var(--crimson);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(192,57,43,0.18);
}
.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-subtitle { margin: 0 auto; }
.text-crimson { color: var(--crimson); }
.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy); }

/* ── CARDS ────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-icon {
  width: 54px; height: 54px;
  background: var(--crimson-bg);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--crimson);
  margin-bottom: 20px;
}
.card h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.card p  { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* ── PAGE HERO (inner pages) ──────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 150px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero .section-label { color: var(--gold); background: rgba(245,184,0,0.12); border-color: rgba(245,184,0,0.25); }
.page-hero h1 { font-size: 52px; font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 18px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p  { font-size: 18px; color: rgba(255,255,255,0.70); max-width: 600px; margin: 0 auto; }

/* ── FOOTER ───────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  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 img { height: 46px; width: auto; margin-bottom: 18px; }
.footer-brand p   { font-size: 14px; line-height: 1.85; max-width: 270px; margin-bottom: 24px; }
.footer-socials   { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: all var(--ease);
}
.social-btn:hover { background: var(--crimson); color: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a, .footer-col span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  padding: 6px 0;
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--gold); }
.footer-col i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  flex-wrap: wrap;
  gap: 10px;
}

/* ── ANIMATIONS ───────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* Mobile CTA link in hamburger menu */
.mobile-cta-link {
  color: var(--crimson) !important;
  font-weight: 700 !important;
}

/* Why-us subtitle spacing utility */
.mb-32 { margin-bottom: 32px; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .container      { padding: 0 28px; }
  .nav-inner      { padding: 0 28px; }
  .section-title  { font-size: 34px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 28px 48px; }
  .footer-bottom  { padding: 24px 28px; }
}
@media (max-width: 768px) {
  .nav-links      { display: none; }
  .hamburger      { display: flex; }
  section         { padding: 64px 0; }
  .container      { padding: 0 20px; }
  .section-title  { font-size: 28px; }
  .page-hero      { padding: 120px 0 70px; }
  .page-hero h1   { font-size: 34px; }
  .footer-grid    { grid-template-columns: 1fr; gap: 32px; padding: 0 20px 48px; }
  .footer-bottom  { padding: 20px 20px; flex-direction: column; text-align: center; }
}
