/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #f0f7ff;
  color: #1a2d3e;
  overflow-x: hidden;
}

/* ── CSS VARIABLES ── */
:root {
  --blue:        #0063AC;
  --blue-mid:    #0078cc;
  --blue-light:  #e8f3fb;
  --blue-xlight: #f0f7ff;
  --blue-dark:   #004f8a;
  --blue-deep:   #003d6b;
  --accent:      #00a8e8;
  --white:       #ffffff;
  --text:        #1a2d3e;
  --text-mid:    #2c4a62;
  --text-muted:  #5a7a96;
  --green:       #16a34a;
  --red-bar:     #cc0000;
  --border:      #c8dff0;
  --shadow:      0 4px 24px rgba(0,99,172,0.12);
  --radius:      10px;
  /* legacy compat */
  --gold:        #0063AC;
  --gold-dark:   #004f8a;
  --cyan:        #0078cc;
  --navy:        #003d6b;
  --navy-mid:    #004f8a;
  --navy-deep:   #003060;
  --muted:       #5a7a96;
  --blue-hero:   #0063AC;
}

/* ── TOP RED BAR ── */
.top-bar { background: var(--red-bar); height: 6px; width: 100%; }

/* ── NAV ── */
nav {
  background: var(--blue);
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 20px 20px;
  background-color: var(--blue);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo span { color: rgba(255,255,255,0.80); }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; flex-wrap: wrap; }
.nav-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(255,255,255,0.15); }

.nav-cta {
  background: #fff;
  color: var(--blue);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-cta:hover { background: #e8f3fb; transform: translateY(-1px); }
.nav-cta .chk { color: var(--green); font-size: 15px; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--blue);
  background-image: radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 20px 20px;
  background-color: var(--blue);
  border-top: 3px solid rgba(255,255,255,0.25);
  padding: 20px;
  z-index: 998;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 20px 40px rgba(0,99,172,0.35);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: background 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.14); color: #fff; }
.mobile-menu a.active { color: #fff; font-weight: 700; }
.mobile-menu .mob-cta {
  margin-top: 12px;
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  text-decoration: none;
  display: block;
}

/* ── SECTION UTILITIES ── */
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  text-align: center;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  text-align: center;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title .gold  { color: var(--blue); }
.section-title .cyan  { color: var(--blue-mid); }
.section-desc {
  text-align: center;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: 15px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 30px rgba(0,99,172,0.30);
  transition: all 0.25s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,99,172,0.40); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-outline:hover { background: var(--blue); color: #fff; }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: var(--blue);
  background-image: radial-gradient(circle, rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  background-color: var(--blue);
  padding: 70px 5% 70px;
  text-align: center;
  border-bottom: 3px solid rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #fff;
}
.page-hero h1 .gold { color: rgba(255,255,255,0.85); }
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── CONTENT SECTION ── */
.content-section {
  padding: 70px 5%;
  max-width: 900px;
  margin: 0 auto;
}
.content-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  color: var(--blue);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.content-section h2:first-child { margin-top: 0; }
.content-section p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}
.content-section ul { list-style: none; margin: 0 0 16px; padding: 0; }
.content-section ul li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  padding: 6px 0 6px 28px;
  position: relative;
}
.content-section ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 50px;
}
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-5px); border-color: var(--blue); box-shadow: var(--shadow); }
.card-icon { font-size: 38px; margin-bottom: 16px; }
.card h3 { font-family: 'Oswald', sans-serif; font-size: 20px; color: var(--blue); margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── FAQ ACCORDION ── */
.faq-wrap { max-width: 780px; margin: 50px auto 0; }
.faq-item {
  margin-bottom: 8px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: #fff;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  gap: 16px;
  user-select: none;
  letter-spacing: 0.02em;
}
.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--blue-light);
  border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 20px 18px; }

/* ── CONTACT FORM ── */
.form-wrap {
  max-width: 620px;
  margin: 50px auto 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--blue-xlight);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,99,172,0.10); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #fff; color: var(--text); }

/* ── FOOTER ── */
footer {
  /* background: var(--blue); */
  background-image: radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 22px 22px;
  background-color: var(--blue);
  padding: 54px 5% 28px;
  border-top: 3px solid rgba(255,255,255,0.18);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 44px;
}
.footer-brand .logo { font-size: 22px; display: block; margin-bottom: 14px; text-decoration: none; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.7; max-width: 260px; }
.footer-col h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.60);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  max-width: 1100px;
  margin: 0 auto;
  line-height: 1.8;
}
.footer-bottom a { color: rgba(255,255,255,0.60); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .form-wrap { padding: 28px 20px; }
  .content-section { padding: 50px 5%; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 50px 5% 40px; }
}
