/* ===================================================
   TWELVE MILE IMMIGRATION — SHARED STYLESHEET
   =================================================== */

:root {
  --navy: #0E2340;
  --navy-mid: #163356;
  --navy-light: #1E4478;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale: #FBF5E6;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --border: #E2E6ED;
  --border-dark: #C8CDD8;
  --text: #1A2540;
  --text-mid: #3D4F6E;
  --text-muted: #6B7A99;
  --text-light: #9AA5BC;
  --green: #1A7A4A;
  --green-pale: #EAF6F0;
  --red-pale: #FDF0F0;
  --red: #B03030;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 4px rgba(14,35,64,0.08), 0 4px 16px rgba(14,35,64,0.06);
  --shadow-sm: 0 1px 3px rgba(14,35,64,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* NAV */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 22px; height: 22px; fill: var(--gold); }
.nav-logo-text { line-height: 1.2; }
.nav-logo-name { font-size: 15px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.nav-logo-tag { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-size: 14px; color: var(--text-mid); font-weight: 500;
  padding: 6px 12px; border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--off-white); color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-links .nav-spe {
  background: var(--gold-pale);
  color: var(--gold) !important;
  border: 1px solid rgba(201,168,76,0.3);
  font-weight: 600 !important;
  font-size: 13px !important;
}
.nav-links .nav-spe:hover { background: #F5EDD0; }
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--navy-light) !important; }
.nav-mobile-btn {
  display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px;
}
.nav-mobile-btn span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

/* PAGE HERO (inner pages) */
.page-hero {
  background: var(--navy);
  padding: 56px 5vw;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.page-hero-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--gold); }
.page-hero h1 {
  font-size: clamp(28px, 4vw, 46px); font-weight: 800;
  color: var(--white); letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 14px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.65; }

/* SECTION */
section { padding: 80px 5vw; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.section-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--gold); flex-shrink: 0; }
.section-title {
  font-size: clamp(26px, 3vw, 38px); font-weight: 800;
  color: var(--navy); letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub { font-size: 16px; color: var(--text-muted); line-height: 1.7; max-width: 580px; }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 15px;
  padding: 13px 26px; border-radius: 50px;
  transition: background 0.15s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: 50px;
  border: 1.5px solid var(--border-dark);
  transition: border-color 0.15s, background 0.15s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--navy); background: var(--off-white); }
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 15px;
  padding: 13px 26px; border-radius: 50px;
  transition: background 0.15s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

/* CARDS */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--border-dark); }

/* DIVIDER */
.gold-divider { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 20px; }

/* CICC BADGE */
.cicc-strip {
  background: var(--navy); color: rgba(255,255,255,0.7);
  padding: 12px 5vw; font-size: 13px;
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  text-align: center;
}
.cicc-strip strong { color: var(--gold); }
.cicc-strip a { color: var(--gold-light); text-decoration: underline; }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.7); }
.footer-main { padding: 56px 5vw 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand-name { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.footer-brand-tag { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-rcic { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.35); }
.rcic-pill { background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 4px; letter-spacing: 0.06em; }

/* FRAUD */
.fraud-banner {
  background: var(--red-pale); border: 1px solid rgba(176,48,48,0.2);
  border-radius: var(--radius); padding: 16px 20px;
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; color: var(--red); line-height: 1.6;
}
.fraud-banner strong { color: var(--red); }
.fraud-banner a { color: var(--red); text-decoration: underline; }

/* REVIEW STARS */
.stars { color: #F5A623; font-size: 15px; letter-spacing: 1px; margin-bottom: 12px; }

/* CHECK LIST */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-mid); line-height: 1.5;
}
.check-list li::before {
  content: '✓'; width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-pale); color: var(--green);
  font-size: 10px; font-weight: 700; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-q {
  font-size: 15px; font-weight: 600; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: flex-start; gap: 16px; user-select: none;
}
.faq-toggle {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--border-dark); background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--navy); flex-shrink: 0; margin-top: 1px;
  transition: all 0.2s;
}
.faq-item.open .faq-toggle { background: var(--navy); color: var(--white); border-color: var(--navy); transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, margin-top 0.2s; }
.faq-item.open .faq-a { max-height: 300px; margin-top: 12px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  section { padding: 56px 5vw; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}
