/* ============================================
   FIRST CALL HANDYMAN — style.css
   Navy / Gold / White — Bold Industrial Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;600;700&family=Barlow:ital,wght@0,400;0,600;1,400&display=swap');

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0b1830;
  --navy-mid:   #132044;
  --navy-light: #1a2e5e;
  --blue:       #1e3a8a;
  --gold:       #f5c518;
  --gold-dark:  #c9a010;
  --silver:     #bdd0e8;
  --white:      #ffffff;
  --off-white:  #f0f4fa;
  --text-muted: #7a90b5;

  --font-display: 'Oswald', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --nav-h: 68px;
  --radius: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.35);
  --glow:   0 0 24px rgba(245,197,24,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── UTILITY ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold    { color: var(--gold); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(245,197,24,0); }
}
@keyframes stripeSlide {
  from { background-position: 0 0; }
  to   { background-position: 40px 0; }
}

.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-2 { animation: fadeUp 0.7s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.7s 0.3s ease both; }
.fade-up-4 { animation: fadeUp 0.7s 0.45s ease both; }

/* ── NAVIGATION ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(11,24,48,0.97);
  border-bottom: 2px solid var(--gold);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo img { height: 80px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver);
  padding: 6px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); background: rgba(245,197,24,0.08); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
  animation: pulse-gold 2.5s infinite;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy-mid);
  border-bottom: 2px solid var(--gold);
  z-index: 199;
  flex-direction: column;
  padding: 20px 24px;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-cta {
  margin-top: 8px;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 700;
}

/* ── PAGE WRAPPER ── */
.page { padding-top: var(--nav-h); }

/* ── HERO (index) ── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.hero-diagonal {
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
  background: linear-gradient(160deg, var(--blue) 0%, var(--navy-light) 50%, transparent 90%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px,
    var(--gold) 20px,
    transparent 20px,
    transparent 40px
  );
  animation: stripeSlide 1.5s linear infinite;
  z-index: 3;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 24px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(245,197,24,0.5);
  background: rgba(245,197,24,0.1);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.7;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 28px;
  max-width: 420px;
}

.hero-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-services li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.hero-services .chk {
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(245,197,24,0.3);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,197,24,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(245,197,24,0.5);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(245,197,24,0.08);
  transform: translateY(-2px);
}

/* Hero image panel */
.hero-image-panel {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(245,197,24,0.3);
  border-radius: 16px;
  z-index: 0;
}

.hero-img-frame img,
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.hero-img-placeholder {
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(245,197,24,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(245,197,24,0.5);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s;
}
.hero-img-placeholder:hover { border-color: var(--gold); }
.hero-img-placeholder .ph-icon { font-size: 48px; margin-bottom: 4px; }

.hero-stat-strip {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}

/* ── SECTION STYLES ── */
.section {
  padding: 80px 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.7;
  max-width: 560px;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0;
}

/* ── WHY CHOOSE US (index) ── */
.why-section {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,138,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.why-card:hover {
  border-color: rgba(245,197,24,0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--gold);
}

.why-card p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,0.25);
  box-shadow: var(--shadow);
}
.service-card:hover::before { transform: scaleY(1); }

.svc-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 16px;
}

.svc-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-items li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.svc-items li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px; height: 48px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item p, .contact-item a {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 36px 32px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  padding: 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0 50px;
  position: relative;
  border-bottom: 2px solid var(--gold);
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(150deg, transparent 0%, rgba(30,58,138,0.3) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.05;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 16px;
  color: var(--silver);
  margin-top: 12px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--gold);
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(0,0,0,0.04) 10px,
    rgba(0,0,0,0.04) 20px
  );
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 8px;
}
.cta-band p {
  font-size: 15px;
  color: var(--navy-light);
  margin-bottom: 24px;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); }

/* ── FOOTER ── */
.site-footer {
  background: #060d1c;
  border-top: 1px solid rgba(245,197,24,0.15);
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  list-style: none;
}
.footer-links a {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 8px 0;
}

.powered-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.powered-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.derby-link {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.derby-link:hover { opacity: 0.75; }
.derby-link img { height: 26px; width: auto; }

.footer-copy {
  font-size: 12px;
  color: rgba(122,144,181,0.5);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 20px;
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(245,197,24,0.1);
  line-height: 1;
  pointer-events: none;
}

.stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-size: 14px; color: var(--silver); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 1px; color: var(--gold); text-transform: uppercase; }

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.about-img {
  position: relative;
}
.about-img::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(245,197,24,0.25);
  border-radius: 16px;
}
.about-img img, .about-img-ph {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.about-img-ph {
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(245,197,24,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(245,197,24,0.5);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-item h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.value-item p { font-size: 13px; color: var(--silver); line-height: 1.6; }

/* Stats bar */
.stats-bar {
  background: var(--gold);
  padding: 36px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-top: 4px;
}

/* ── FAQ ── */
.faq-section { background: var(--navy-mid); }

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(245,197,24,0.15);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(245,197,24,0.12);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255,255,255,0.02);
  border: none;
  cursor: pointer;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white);
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.faq-question:hover {
  background: rgba(245,197,24,0.06);
  color: var(--gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(245,197,24,0.4);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.2s, background 0.2s, transform 0.3s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: opacity 0.25s, transform 0.25s;
}
.faq-icon::before {
  width: 10px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px; height: 10px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-question { color: var(--gold); background: rgba(245,197,24,0.06); }
.faq-item.open .faq-icon { border-color: var(--gold); background: rgba(245,197,24,0.1); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 4px 28px 24px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.75;
}
.faq-answer a { color: var(--gold); text-decoration: underline; }
.faq-answer a:hover { color: var(--gold-dark); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 30px 20px 40px;
    gap: 32px;
  }
  .hero-image-panel { order: -1; }
  .hero-img-frame { max-width: 100%; }
  .hero-img-placeholder { aspect-ratio: 4/3; }
  .hero-diagonal { width: 100%; clip-path: polygon(0 65%, 100% 50%, 100% 100%, 0% 100%); opacity: 0.4; }

  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .section { padding: 56px 0; }
  .contact-form { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
#purchase-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); 
    z-index: 9999; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .overlay-content {
    background-color: #042f6e;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    font-family: sans-serif;
  }

  .overlay-content h2 {
    margin-top: 0;
    color: #000000;
    font-size: 26px;
  }

  .overlay-content p {
    color: #000000;
    font-size: 18px;
    line-height: 1.5;
  }

  .contact-info {
    font-size: 22px;
    margin: 25px 0;
  }

  .contact-info a {
    color: #00b35c;
    text-decoration: none;
    font-weight: bold;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }

  .overlay-content button {
    background-color: #222;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
  }

  .overlay-content button:hover {
    background-color: #444;
  }
  .purchasehorse{
    justify-content: center;
    align-items: center;
  }