/* OWENSBORO ON DEMAND — style.css */

:root {
  --brand: #1C3560;
  --brand-mid: #264A8C;
  --accent: #DF7B1E;
  --accent-light: #FEF3E6;
  --bg: #F7F6F4;
  --surface: #FFFFFF;
  --text: #0F172A;
  --muted: #64748B;
  --border: #DDE3EC;
  --success: #16A34A;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 36px rgba(0,0,0,.15);
  --nav-height: 68px;
  --max-w: 1100px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.1rem,5vw,3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem,3vw,2.1rem); font-weight: 600; }
h3 { font-size: 1.1rem; font-weight: 600; }
.eyebrow { font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.lead { font-size: 1.05rem; color: var(--muted); max-width: 560px; line-height: 1.7; }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-header { margin-bottom: 48px; }
.section-header .eyebrow { margin-bottom: 8px; }
.section-header h2 { margin-bottom: 12px; }
.text-center { text-align: center; }
.text-center .lead { margin-left: auto; margin-right: auto; }

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--brand);
  height: var(--nav-height);
  display: flex; align-items: center;
  transition: box-shadow .25s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.nav-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.nav-brand img { width: 32px; height: 32px; border-radius: 6px; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { color: rgba(255,255,255,.8); font-size: .875rem; padding: 7px 12px; border-radius: var(--radius-sm); transition: background .15s, color .15s; }
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.12); }
.nav-cta { background: var(--accent) !important; color: #fff !important; border-radius: var(--radius-sm) !important; font-weight: 600 !important; transition: background .15s !important; }
.nav-cta:hover { background: #c96e15 !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; background: #162d52; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: rgba(255,255,255,.85); padding: 14px 24px; font-size: .95rem; border-bottom: 1px solid rgba(255,255,255,.07); transition: background .15s; }
.mobile-menu a:hover { background: rgba(255,255,255,.09); color: #fff; }

/* === HERO === */
.hero { background: var(--brand); color: #fff; padding: 88px 0 80px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 99px; padding: 5px 14px; font-size: .8rem; margin-bottom: 24px; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(22,163,74,.6); } 50% { box-shadow: 0 0 0 6px rgba(22,163,74,0); } }
.hero h1 { max-width: 680px; margin-bottom: 18px; }
.hero h1 span { color: var(--accent); }
.hero .lead { color: rgba(255,255,255,.75); margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 32px; }
.trust-pill { font-size: .82rem; color: rgba(255,255,255,.68); display: flex; align-items: center; gap: 6px; }
.trust-pill svg { color: var(--accent); flex-shrink: 0; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 600; font-size: .93rem; cursor: pointer; border: none; transition: transform .15s, box-shadow .15s, background .15s, color .15s; text-decoration: none; font-family: var(--font-body); }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #c96e15; box-shadow: 0 4px 16px rgba(223,123,30,.35); }
.btn-secondary { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn-secondary:hover { background: rgba(255,255,255,.22); }
.btn-outline { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-ghost { background: var(--accent-light); color: var(--accent); }
.btn-ghost:hover { background: #fde5c5; }

/* === CARDS === */
.card { background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); padding: 28px; transition: box-shadow .2s, transform .2s; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-icon { font-size: 1.75rem; margin-bottom: 14px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* === SERVICES GRID === */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* === STEPS === */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--accent-light); border: 2px solid var(--border); width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--accent); margin-bottom: 16px; background: var(--accent-light); }
.step h3 { margin-bottom: 6px; font-size: 1rem; }
.step p { font-size: .88rem; color: var(--muted); }

/* === REVIEWS === */
.reviews-section { background: var(--brand); color: #fff; }
.reviews-section .eyebrow { color: rgba(255,255,255,.55); }
.reviews-section h2 { color: #fff; }
.review-prompt { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 40px; text-align: center; }
.review-prompt p { color: rgba(255,255,255,.72); margin-bottom: 20px; font-size: .95rem; }
.stars { color: #FBBF24; font-size: 1.4rem; letter-spacing: 3px; margin-bottom: 10px; }
.review-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.review-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 24px; }
.review-card .stars { font-size: 1rem; letter-spacing: 2px; }
.review-card blockquote { color: rgba(255,255,255,.86); font-size: .92rem; line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.review-card cite { color: rgba(255,255,255,.45); font-size: .8rem; font-style: normal; }

/* === PRICING === */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.price-card { background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); padding: 36px; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); position: relative; }
.featured-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 14px; border-radius: 99px; white-space: nowrap; }
.price-amount { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--brand); line-height: 1; }
.price-label { font-size: .82rem; color: var(--muted); margin-top: 4px; margin-bottom: 24px; }
.price-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.price-features { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.price-features li { display: flex; gap: 10px; font-size: .9rem; color: var(--text); }
.price-features li::before { content: "✓"; color: var(--success); font-weight: 700; flex-shrink: 0; }

/* === TERMS === */
.terms-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.terms-card { background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); padding: 24px; }
.terms-card h3 { margin-bottom: 10px; font-size: 1rem; color: var(--brand); }
.terms-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; }
.disclaimer-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; font-size: .85rem; color: var(--muted); line-height: 1.75; margin-top: 24px; }

/* === FAQ ACCORDION === */
.accordion { display: flex; flex-direction: column; gap: 8px; }
.accordion-item { background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: none; border: none; text-align: left; cursor: pointer; font-family: var(--font-body); font-size: .97rem; font-weight: 600; color: var(--text); gap: 14px; }
.accordion-trigger svg { flex-shrink: 0; transition: transform .25s; color: var(--accent); }
.accordion-item.open .accordion-trigger svg { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion-body p { padding: 0 24px 22px; color: var(--muted); font-size: .92rem; line-height: 1.75; }

/* === ABOUT === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-photos img { border-radius: var(--radius); object-fit: cover; width: 100%; height: 260px; }

/* === CONTACT === */
.contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-body); font-size: .93rem;
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: var(--surface);
  color: var(--text); transition: border-color .15s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--brand); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox-wrap { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; }
.checkbox-wrap input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; accent-color: var(--brand); cursor: pointer; }
.checkbox-wrap label { font-size: .82rem; color: var(--muted); line-height: 1.6; cursor: pointer; }
.contact-sidebar { display: flex; flex-direction: column; gap: 16px; }
.contact-info-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.contact-info-box h3 { margin-bottom: 16px; font-size: 1rem; }
.contact-link-row { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--border); color: var(--text); font-size: .9rem; transition: color .15s; }
.contact-link-row:last-child { border-bottom: none; }
.contact-link-row:hover { color: var(--accent); }
.contact-link-row svg { color: var(--accent); flex-shrink: 0; }
.form-status { display: none; padding: 14px; border-radius: var(--radius-sm); font-size: .88rem; margin-top: 12px; }
.form-status.success { background: #DCFCE7; color: #166534; display: block; }
.form-status.error { background: #FEE2E2; color: #991B1B; display: block; }

/* === OUR WORK === */
.work-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.work-card { background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.work-card-img { overflow: hidden; }
.work-card-img img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s; }
.work-card:hover .work-card-img img { transform: scale(1.04); }
.work-card-body { padding: 20px; }
.work-card-body h3 { font-size: .97rem; margin-bottom: 6px; }
.work-card-body p { font-size: .86rem; color: var(--muted); }

/* === REFERRAL MODAL === */
.referral-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity .25s; }
.referral-backdrop.visible { opacity: 1; }
.referral-modal { background: var(--surface); border-radius: var(--radius-lg); padding: 36px; max-width: 440px; width: 100%; box-shadow: var(--shadow-lg); transform: translateY(20px); transition: transform .3s; }
.referral-backdrop.visible .referral-modal { transform: translateY(0); }
.referral-modal h3 { font-size: 1.35rem; margin-bottom: 6px; }
.referral-modal p { color: var(--muted); font-size: .88rem; margin-bottom: 22px; }
.referral-options { display: flex; flex-direction: column; gap: 7px; }
.referral-btn { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; text-align: left; cursor: pointer; font-family: var(--font-body); font-size: .9rem; color: var(--text); transition: border-color .15s, background .15s; }
.referral-btn:hover { border-color: var(--brand); background: var(--surface); }
.referral-skip { background: none; border: none; cursor: pointer; color: var(--muted); font-size: .8rem; margin-top: 14px; display: block; width: 100%; text-align: center; font-family: var(--font-body); transition: color .15s; }
.referral-skip:hover { color: var(--text); }

/* === CTA BAND === */
.cta-band { background: var(--accent); color: #fff; padding: 64px 0; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 28px; font-size: 1rem; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--accent); font-weight: 600; }
.btn-white:hover { background: #f5f5f5; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

/* === PAGE HEADER === */
.page-header { background: var(--brand); color: #fff; padding: 52px 0; }
.page-header .eyebrow { color: rgba(255,255,255,.55); margin-bottom: 8px; }
.page-header h1 { font-size: clamp(1.75rem,3.5vw,2.4rem); color: #fff; }
.page-header p { color: rgba(255,255,255,.7); margin-top: 10px; max-width: 520px; font-size: .97rem; }

/* === FOOTER === */
.footer { background: #0D1F38; color: rgba(255,255,255,.65); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand h4 { font-family: var(--font-display); color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.footer-brand p { font-size: .86rem; line-height: 1.7; }
.footer-col h5 { color: rgba(255,255,255,.88); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; font-family: var(--font-display); }
.footer-col a { display: block; font-size: .86rem; color: rgba(255,255,255,.55); padding: 4px 0; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: underline; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* === UTILITIES === */
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.badge { display: inline-flex; align-items: center; gap: 5px; background: var(--accent-light); color: var(--accent); font-size: .76rem; font-weight: 700; padding: 3px 10px; border-radius: 99px; letter-spacing: .05em; }
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.notice { background: var(--accent-light); border: 1px solid #f5d3aa; border-radius: var(--radius-sm); padding: 14px 18px; font-size: .88rem; color: #8a4a10; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .price-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2,1fr); }
  .terms-grid { grid-template-columns: 1fr; }
  .review-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 52px; }
  .section { padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-photos { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero-trust { gap: 12px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

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