/* ============================================================
   Louisville Fair Offer — Global Stylesheet
   Colors: Navy #0B1F3A | Gold #C9A84C | White #FFFFFF | Light #F7F8FA
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Merriweather:wght@700;900&display=swap');

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

:root {
  --navy: #0B1F3A;
  --navy-light: #162d54;
  --gold: #C9A84C;
  --gold-light: #e8c96e;
  --white: #FFFFFF;
  --light: #F7F8FA;
  --mid: #E8ECF0;
  --text: #1A2B40;
  --muted: #5C6E82;
  --radius: 6px;
  --max: 1100px;
  --shadow: 0 4px 24px rgba(11,31,58,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  background: var(--navy);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.logo span { color: var(--gold); }

.nav-phone {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.nav-phone:hover { color: var(--gold-light); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.2px;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-secondary:hover { border-color: var(--white); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('hero-bg.jpg') center/cover no-repeat;
  opacity: 0.08;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── FORM CARD ───────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.form-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--mid);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-card .btn-primary { width: 100%; text-align: center; padding: 14px; font-size: 1rem; }

.form-fine {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

/* ── TRUST BADGES ────────────────────────────────────── */
.trust-bar {
  background: var(--light);
  border-top: 3px solid var(--gold);
  padding: 32px 24px;
}

.trust-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item .icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.trust-item strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── SECTIONS ────────────────────────────────────────── */
.section { padding: 72px 24px; }
.section-dark { background: var(--navy); }
.section-light { background: var(--light); }

.section-inner { max-width: var(--max); margin: 0 auto; }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}

.section-dark h2 { color: var(--white); }

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 48px;
}

.section-dark .section-lead { color: rgba(255,255,255,0.7); }

/* ── STEP CARDS ──────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(11,31,58,0.06);
}

.step-num {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-card p { font-size: 0.9rem; color: var(--muted); }

/* ── SITUATION CARDS ─────────────────────────────────── */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sit-icon { font-size: 1.5rem; flex-shrink: 0; }

.sit-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.sit-card p { font-size: 0.83rem; color: rgba(255,255,255,0.6); }

/* ── COMPARISON TABLE ────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.compare-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
}

.compare-table th:first-child { border-radius: 8px 0 0 0; }
.compare-table th:last-child { border-radius: 0 8px 0 0; }

.compare-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--mid);
  color: var(--text);
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--light); }

.check { color: #22a745; font-weight: 700; }
.cross { color: #dc3545; font-weight: 700; }

/* ── CTA STRIP ───────────────────────────────────────── */
.cta-strip {
  background: var(--gold);
  padding: 56px 24px;
  text-align: center;
}

.cta-strip h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.cta-strip p { color: var(--navy); opacity: 0.8; margin-bottom: 28px; font-size: 1.05rem; }

.cta-strip .btn-primary {
  background: var(--navy);
  color: var(--white);
}

.cta-strip .btn-primary:hover { background: var(--navy-light); }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 48px 24px 28px;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

footer .logo { font-size: 1rem; display: block; margin-bottom: 12px; }

.footer-desc { color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 16px; }

.footer-phone { color: var(--gold); font-weight: 700; font-size: 1rem; text-decoration: none; }

.footer-col h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 60px 24px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { max-width: 760px; }

.faq-item {
  border-bottom: 1px solid var(--mid);
  padding: 22px 0;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  cursor: pointer;
}

.faq-item p { font-size: 0.93rem; color: var(--muted); line-height: 1.7; }

/* ── ABOUT ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-placeholder {
  background: var(--mid);
  border-radius: 8px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-text h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.about-text p { color: var(--muted); margin-bottom: 16px; font-size: 0.97rem; line-height: 1.75; }

.value-list { list-style: none; margin-top: 20px; }
.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.93rem;
  color: var(--text);
}

.value-list li::before {
  content: '✓';
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── FORM PAGE ───────────────────────────────────────── */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

.offer-benefits h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.benefit-icon {
  background: var(--gold);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-item h4 { font-weight: 700; color: var(--navy); margin-bottom: 3px; font-size: 0.95rem; }
.benefit-item p { font-size: 0.85rem; color: var(--muted); }

/* ── THANK YOU ───────────────────────────────────────── */
.thankyou-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 24px;
}

.thankyou-icon { font-size: 4rem; margin-bottom: 24px; }

.thankyou-center h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.thankyou-center p { color: var(--muted); font-size: 1.05rem; margin-bottom: 32px; }

/* ── MAIL LANDING ────────────────────────────────────── */
.mail-hero {
  background: var(--navy);
  padding: 80px 24px;
  text-align: center;
}

.mail-hero .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.mail-hero h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.mail-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .form-card { margin-top: 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .situations-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr; gap: 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .situations-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
