@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600&family=DM+Sans:wght@400;500;600&display=swap');

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

:root {
  --navy:      #1E3A5F;
  --navy-mid:  #254878;
  --teal:      #5BA6A6;
  --teal-light:#7BBFBF;
  --teal-pale: #EBF4F4;
  --cream:     #FAF8F5;
  --beige:     #F2EDE6;
  --sand:      #E8DFD3;
  --white:     #FFFFFF;
  --text:      #1A2A3A;
  --text-mid:  #4A5568;
  --text-light:#718096;
  --border:    #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(30,58,95,0.08);
  --shadow:    0 6px 24px rgba(30,58,95,0.11);
  --shadow-lg: 0 16px 56px rgba(30,58,95,0.16);
  --r:         14px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }

/* ── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 90px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: var(--shadow); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 80px; width: auto; display: block; }
.nav-brand { line-height: 1.2; }
.nav-brand-name { font-family: 'DM Serif Display', serif; font-size: 1rem; color: var(--navy); display: block; }
.nav-brand-sub  { font-size: 0.65rem; color: var(--teal); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 0.875rem; font-weight: 500;
  color: var(--text-mid); padding: 8px 14px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--navy); background: var(--cream); }
.nav-links a.active { color: var(--navy); font-weight: 600; background: var(--cream); }
.nav-cta-btn {
  background: var(--navy); color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 8px !important;
  font-weight: 600 !important;
  transition: background .2s, transform .2s, box-shadow .2s !important;
}
.nav-cta-btn:hover { background: var(--navy-mid) !important; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(30,58,95,0.25) !important; }
.nav-cta-btn.active { background: var(--navy) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

.mob-drawer {
  display: none; position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
  background: white; z-index: 999; padding: 24px 5% 40px;
  flex-direction: column; gap: 4px;
  border-top: 1px solid var(--border);
}
.mob-drawer.open { display: flex; }
.mob-drawer a { display: block; padding: 14px 16px; color: var(--text-mid); text-decoration: none; font-weight: 500; font-size: 1rem; border-radius: 10px; transition: background .2s; }
.mob-drawer a:hover { background: var(--cream); color: var(--navy); }
.mob-cta { margin-top: 12px; background: var(--navy); color: white !important; border-radius: 10px; text-align: center; }
.mob-cta:hover { background: var(--navy-mid) !important; }

/* ── BUTTONS ─────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; border-radius: 8px; padding: 13px 26px; text-decoration: none; border: none; cursor: pointer; transition: all .22s; font-family: 'Inter', sans-serif; }
.btn-teal   { background: var(--teal); color: white; }
.btn-teal:hover   { background: #4a9191; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(91,166,166,.35); }
.btn-navy   { background: var(--navy); color: white; }
.btn-navy:hover   { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,58,95,.3); }
.btn-ghost  { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.5); }
.btn-ghost:hover  { background: rgba(255,255,255,.1); border-color: white; transform: translateY(-2px); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: white; transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── PAGE HERO (inner pages) ──────────────── */
.page-hero {
  background: linear-gradient(140deg, var(--navy) 0%, #1a4a6e 60%, #225f7a 100%);
  padding: 140px 5% 90px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
  background: var(--white); clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-inner { max-width: 700px; position: relative; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(91,166,166,.18); border: 1px solid rgba(91,166,166,.35); color: #8fd4d4; padding: 5px 14px; border-radius: 20px; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
.page-hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(2.2rem,4.5vw,3.4rem); color: white; line-height: 1.12; margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--teal-light); }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.72); max-width: 540px; line-height: 1.75; }

/* ── TRUST BAR ───────────────────────────── */
.trust-bar { background: var(--beige); border-bottom: 1px solid var(--sand); padding: 20px 5%; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: .84rem; font-weight: 600; color: var(--navy); }
.trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* ── SECTION UTILS ───────────────────────── */
.sec { padding: 96px 5%; }
.sec-sm { padding: 64px 5%; }
.wrap { max-width: 1200px; margin: 0 auto; }
.sec-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; display: block; }
.sec-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.9rem,3.2vw,2.7rem); color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.sec-title em { font-style: italic; color: var(--teal); }
.sec-desc { font-size: 1rem; color: var(--text-mid); line-height: 1.78; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-560 { max-width: 560px; }

/* ── CARDS ───────────────────────────────── */
.card { background: white; border-radius: var(--r); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* ── FORMS ───────────────────────────────── */
.form-wrap { background: var(--cream); border-radius: 20px; padding: 44px 40px; border: 1px solid var(--sand); }
.form-wrap h3 { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 6px; }
.form-wrap > p { font-size: .88rem; color: var(--text-light); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 4px; }
.fg.full { grid-column: 1/-1; }
.fg label { display: block; font-size: .78rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: .02em; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: .9rem; font-family: 'Inter', sans-serif;
  color: var(--text); background: white;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(91,166,166,.13); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 15px; background: var(--navy); color: white; border: none; border-radius: 8px; font-size: .95rem; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; margin-top: 6px; transition: background .2s, transform .2s; }
.form-submit:hover { background: var(--navy-mid); transform: translateY(-1px); }
.form-note { font-size: .73rem; color: var(--text-light); text-align: center; margin-top: 10px; }
.success-msg { display: none; text-align: center; padding: 40px 16px; }
.success-msg.show { display: block; }
.success-msg .ck { font-size: 3rem; display: block; margin-bottom: 14px; }
.success-msg h3 { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 8px; }
.success-msg p { color: var(--text-mid); }

/* ── FOOTER ──────────────────────────────── */
footer { background: #111C28; color: rgba(255,255,255,.58); padding: 72px 5% 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; max-width: 1200px; margin: 0 auto 52px; }
.footer-brand img { height: 80px; width: auto; margin-bottom: 20px; display: block; }
.footer-brand p { font-size: .84rem; line-height: 1.8; }
.footer-col h5 { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .84rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-col p { font-size: .84rem; line-height: 1.9; }
.footer-col .tel { color: var(--teal-light); text-decoration: none; font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; text-align: center; font-size: .76rem; color: rgba(255,255,255,.28); max-width: 1200px; margin: 0 auto; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .sec { padding: 64px 5%; }
  .sec-sm { padding: 44px 5%; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-bar { gap: 18px; justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } }
