/* ═══ CheckMyIHT — Shared Styles ═══ */

:root {
  --nv: #1B2B3A;
  --gd: #8C7A5E;
  --gd-light: #A89478;
  --gn: #3C6E47;
  --rd: #B5453A;
  --bg: #F8F6F3;
  --bg-warm: #FDFCFA;
  --tx: #1C1E21;
  --md: #5A5C63;
  --lt: #8C8E94;
  --bd: #E3E0DB;
  --white: #FFFFFF;
}

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--nv);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.serif { font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif; font-weight: 400; }

/* ─── NAVIGATION ─── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--nv);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 54px;
}
.nav-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 18px; color: var(--white); letter-spacing: 0.3px;
  text-decoration: none;
}
.nav-logo span { color: var(--gd); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500; text-decoration: none;
  color: rgba(255,255,255,0.65); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gd); font-weight: 600; }
.nav-hamburger {
  display: none; cursor: pointer; padding: 8px 0;
  flex-direction: column; gap: 5px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--gd); border-radius: 1px; transition: all 0.25s;
}
.nav-mobile { display: none; padding: 12px 24px 16px; border-top: 1px solid rgba(255,255,255,0.08); background: var(--nv); }
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 13px 0;
  font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--gd); font-weight: 600; }

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ─── FOOTER ─── */
.footer {
  background: var(--nv);
  padding: 36px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 24px;
}
.footer-disclaimer {
  font-size: 11px; color: rgba(255,255,255,0.3);
  line-height: 1.7; max-width: 580px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 11px; color: rgba(255,255,255,0.35);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gd); }
.footer-copy {
  width: 100%; font-size: 10px;
  color: rgba(255,255,255,0.18); margin-top: 8px;
}

/* ─── HERO (reusable across pages) ─── */
.page-hero {
  background: var(--nv);
  padding: 72px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(140,122,94,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(24px, 5vw, 32px);
  color: var(--white); margin-bottom: 12px;
  letter-spacing: -0.3px; position: relative;
}
.page-hero p {
  font-size: clamp(13px, 2.5vw, 15px);
  color: rgba(255,255,255,0.55);
  max-width: 520px; margin: 0 auto;
  line-height: 1.75; position: relative;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--gd); color: var(--white);
  border: none; padding: 16px 36px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 2px 12px rgba(140,122,94,0.25);
  transition: all 0.2s ease;
  max-width: 380px; width: 100%; text-align: center;
}
.btn-primary:hover {
  background: var(--gd-light);
  box-shadow: 0 4px 16px rgba(140,122,94,0.35);
  transform: translateY(-1px);
}
.btn-primary:active { transform: scale(0.98); opacity: 0.9; }
.btn-primary:disabled, .btn-primary.disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

/* ─── CARDS ─── */
.card {
  border-radius: 10px; padding: 32px 26px;
  position: relative; overflow: hidden;
  transition: all 0.25s ease;
}
.card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.card-gold { background: var(--bg-warm); border: 2px solid var(--gd); }
.card-gold::before { background: var(--gd); }
.card-green { background: #F0F8F2; border: 2px solid var(--gn); }
.card-green::before { background: var(--gn); }
.card-navy { background: var(--white); border: 1.5px solid var(--bd); }
.card-navy::before { background: var(--nv); }

/* ─── FORM INPUTS ─── */
.form-label {
  display: block; margin-bottom: 6px;
  font-size: 13px; font-weight: 600; color: var(--tx);
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px;
  font-size: 15px; font-family: 'DM Sans', sans-serif;
  border: 1.5px solid var(--bd); border-radius: 8px;
  background: var(--white); outline: none;
  transition: all 0.2s ease; box-sizing: border-box;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--nv);
  box-shadow: 0 0 0 3px rgba(27,43,58,0.06);
}
.form-textarea { resize: vertical; line-height: 1.65; }
.form-hint { font-size: 11px; color: var(--lt); margin-top: 4px; line-height: 1.45; }
.required { color: var(--rd); }

/* ─── ICON CIRCLES ─── */
.icon-circle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  font-size: 16px; color: var(--gd);
}

/* ─── SECTION HEADINGS ─── */
.section-label {
  font-size: 11px; font-weight: 700;
  color: var(--gd); letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 12px;
}

/* ─── FCA NOTE ─── */
.fca-note {
  background: var(--nv); border-radius: 10px;
  padding: 20px 22px;
  font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.7;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease-out both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
  .page-hero { padding: 56px 20px 44px; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 480px) {
  .page-hero h1 { font-size: 22px; }
}
