/* ── ASPIRE OZ — Shared Stylesheet ── */
:root {
  --navy: #0c1a3a;
  --navy-mid: #142047;
  --gold: #c9981f;
  --gold-light: #e5b430;
  --gold-pale: #f5e9c8;
  --bg-light: #eef2f8;
  --white: #ffffff;
  --text-dark: #0c1a3a;
  --text-mid: #3a4a6b;
  --text-light: #6b7a99;
  --border: rgba(12,26,58,0.1);
  --shadow: 0 4px 30px rgba(12,26,58,0.12);
  --radius: 16px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--white); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.btn-nav { background: var(--gold); color: var(--navy); padding: 10px 22px; border-radius: 50px; font-weight: 700; font-size: 13px; letter-spacing: 0.5px; text-decoration: none; transition: background .2s, transform .2s; white-space: nowrap; }
.btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { width: 24px; height: 2px; background: white; display: block; }

/* ── MOBILE NAV ── */
.mobile-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy-mid); padding: 20px 8%; gap: 16px; z-index: 99; }
.mobile-nav a { color: rgba(255,255,255,.85); text-decoration: none; font-size: 15px; font-weight: 500; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav a.btn-nav { border-bottom: none; text-align: center; margin-top: 8px; }
.mobile-nav.open { display: flex; }

/* ── BUTTONS ── */
.btn-primary { display: inline-block; background: var(--gold); color: var(--navy); padding: 16px 36px; border-radius: 50px; font-weight: 700; font-size: 15px; text-decoration: none; transition: all .25s; box-shadow: 0 4px 20px rgba(201,152,31,.4); cursor: pointer; border: none; font-family: inherit; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,152,31,.5); }
.btn-dark { display: inline-block; background: var(--navy); color: var(--white); padding: 16px 36px; border-radius: 50px; font-weight: 700; font-size: 15px; text-decoration: none; transition: all .25s; cursor: pointer; border: none; font-family: inherit; }
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-outline { display: inline-block; background: transparent; color: var(--gold); padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 15px; text-decoration: none; border: 2px solid var(--gold); transition: all .25s; cursor: pointer; font-family: inherit; }
.btn-outline:hover { background: var(--gold); color: var(--navy); }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy); padding: 80px 8%; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 50% 100%, rgba(201,152,31,.1) 0%, transparent 60%); pointer-events:none; }
.page-hero .eyebrow { display: inline-block; background: rgba(201,152,31,.15); color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 50px; border: 1px solid rgba(201,152,31,.3); margin-bottom: 20px; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: var(--white); line-height: 1.2; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.7); margin-top: 16px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ── SECTION COMMON ── */
section { padding: 88px 8%; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: var(--navy); line-height: 1.2; }
.section-title.gold { color: var(--gold); }
.section-intro { font-size: 16px; color: var(--text-mid); line-height: 1.8; max-width: 720px; margin: 16px auto 0; }
.text-center { text-align: center; }

/* ── CARDS ── */
.card { background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* ── CHECKLIST ── */
.checklist { list-style: none; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-mid); line-height: 1.6; padding: 12px 0; border-bottom: 1px solid var(--border); }
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: '✔'; color: var(--gold); font-size: 14px; flex-shrink: 0; margin-top: 2px; }

/* ── CTA BAND ── */
.cta-band { background: var(--gold); padding: 100px 8%; text-align: center; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: var(--navy); margin-bottom: 20px; }
.cta-band p { font-size: 18px; color: rgba(12,26,58,.8); margin-bottom: 40px; line-height: 1.6; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 60px 8%; display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.footer-left {}
.footer-logo img { height: 52px; width: auto; object-fit: contain; margin-bottom: 12px; }
.footer-tag { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.35); margin-top: 8px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-links h4 { color: var(--gold-light); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.social-links { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.social-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; text-decoration: none; transition: transform .2s, opacity .2s; opacity: .85; }
.social-btn:hover { transform: scale(1.15); opacity: 1; }
.social-btn.fb { background: #1877F2; color: white; }
.social-btn.ig { background: linear-gradient(135deg,#f9ce34,#ee2a7b,#6228d7); color: white; }
.social-btn.yt { background: #FF0000; color: white; }
.social-btn.tw { background: #000; color: white; }
.social-btn.li { background: #0A66C2; color: white; }
.social-btn.tk { background: #000; color: white; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--text-dark); background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,152,31,.15); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--navy); user-select: none; }
.faq-q .icon { width: 28px; height: 28px; border-radius: 50%; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; color: var(--gold); transition: transform .3s; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 0 22px; font-size: 15px; color: var(--text-mid); line-height: 1.8; }
.faq-a-inner ul { padding-left: 18px; margin-top: 8px; }
.faq-a-inner ul li { margin-bottom: 6px; }
.faq-item.open .faq-a { max-height: 600px; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, nav > .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}
@media (max-width: 540px) {
  section { padding: 60px 6%; }
  .page-hero { padding: 60px 6%; }
}
