/* ================================================================
   THEME: CITRUS  —  bright airy white, warm amber CTA, teal trim
   A lighter, sunnier evolution of the original navy/orange look.
   Drop-in replacement for styles.css (same class names).
   ================================================================ */
:root {
  --navy: #0f766e;          /* primary text/brand (deep teal) */
  --navy-dark: #0b5850;     /* darker teal */
  --orange: #f59e0b;        /* warm amber CTA */
  --orange-dark: #d97706;   /* amber hover */
  --grey: #fffaf2;          /* warm off-white section bg */
  --text: #1f2a37;
  --muted: #5a6472;
  --white: #fff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(17, 42, 39, .10);
  --hero-grad: linear-gradient(160deg, #fff7ec 0%, #fef1de 55%, #eafaf6 100%);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; color: var(--text); line-height: 1.65; background: var(--white); }
img { max-width: 100%; display: block; }
a { color: var(--orange-dark); }
.container { max-width: 1140px; margin: 0 auto; padding: 0 22px; }

/* Top bar */
.topbar { background: var(--navy); color: #d6f5f0; font-size: .85rem; padding: 7px 0; text-align: center; letter-spacing: .2px; }
.topbar a { color: #fff; font-weight: 700; text-decoration: none; }

/* Header */
header.site { background: rgba(255,255,255,.9); backdrop-filter: saturate(180%) blur(10px); position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 0 rgba(17,42,39,.08); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; gap: 16px; flex-wrap: wrap; }
.logo { color: var(--navy); text-decoration: none; font-size: 1.3rem; font-weight: 800; letter-spacing: -.3px; }
.logo span { color: var(--orange-dark); }
nav.menu { display: flex; gap: 24px; flex-wrap: wrap; }
nav.menu a { color: #2f3a45; text-decoration: none; font-size: .95rem; font-weight: 600; }
nav.menu a:hover { color: var(--navy); }
.call-btn { background: var(--orange); color: #3a2400 !important; padding: 11px 20px; border-radius: 999px; text-decoration: none; font-weight: 800; white-space: nowrap; box-shadow: 0 6px 16px rgba(245,158,11,.38); }
.call-btn:hover { background: var(--orange-dark); color: #fff !important; }

/* Hero */
.hero { background-color: #fff7ec; background-image: var(--hero-grad); background-size: cover; background-position: center; color: var(--text); padding: 84px 0 74px; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; width: 460px; height: 460px; right: -120px; top: -120px; background: radial-gradient(circle, rgba(245,158,11,.28), transparent 68%); pointer-events: none; }

/* Hero WITH a background photo — add class="hero photo" and an inline
   style="background-image: linear-gradient(rgba(12,43,40,.72),rgba(12,43,40,.55)), url('...');"
   The dark overlay keeps text readable; this modifier flips text to white. */
.hero.photo { color: #fff; }
.hero.photo::after { display: none; }
.hero.photo h1 { color: #fff; }
.hero.photo p.lead { color: #eafaf6; }
.hero.photo ul.ticks li { color: #f1fbf9; }
.hero.photo ul.ticks li::before { color: var(--orange); }
.hero.photo .btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.75); }
.hero.photo .btn-ghost:hover { background: rgba(255,255,255,.24); color: #fff; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 44px; align-items: start; position: relative; z-index: 1; }
.hero h1 { font-size: 2.7rem; line-height: 1.12; margin-bottom: 18px; letter-spacing: -.8px; color: #0c2b28; }
.hero p.lead { font-size: 1.18rem; color: #445055; margin-bottom: 24px; }
.hero ul.ticks { list-style: none; margin-bottom: 28px; }
.hero ul.ticks li { padding-left: 30px; position: relative; margin-bottom: 9px; color: #33403f; font-weight: 500; }
.hero ul.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--navy); font-weight: 900; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn { display: inline-block; padding: 15px 30px; border-radius: 999px; font-weight: 800; text-decoration: none; font-size: 1.05rem; border: 0; cursor: pointer; transition: transform .15s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: #3a2400; box-shadow: 0 8px 22px rgba(245,158,11,.4); }
.btn-orange:hover { background: var(--orange-dark); color: #fff; }
.btn-ghost { background: #fff; color: var(--navy); border: 2px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }

/* Quote form card */
.form-card { background: #fff; color: var(--text); border-radius: var(--radius); padding: 28px; box-shadow: 0 22px 55px rgba(17,42,39,.16); border-top: 5px solid var(--orange); }
.form-card h2, .form-card h3 { color: var(--navy); margin-bottom: 4px; font-size: 1.35rem; }
.form-card p.sub { font-size: .9rem; color: var(--muted); margin-bottom: 16px; }
.form-card label { display: block; font-size: .82rem; font-weight: 700; margin: 12px 0 4px; color: var(--navy); }
.form-card input, .form-card select, .form-card textarea { width: 100%; padding: 12px 13px; border: 1.5px solid #e6ddca; border-radius: 12px; font-size: 1rem; font-family: inherit; background: #fffdf8; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,158,11,.18); }
.form-card button { width: 100%; margin-top: 18px; }
.form-note { font-size: .78rem; color: var(--muted); margin-top: 10px; text-align: center; }

/* Sections */
section { padding: 72px 0; }
section.grey { background: var(--grey); }
.kicker { text-transform: uppercase; letter-spacing: 2px; font-size: .78rem; font-weight: 800; color: var(--orange-dark); margin-bottom: 10px; }
h2.section-title { color: var(--navy); font-size: 2.05rem; margin-bottom: 14px; line-height: 1.2; letter-spacing: -.5px; }
.section-intro { max-width: 760px; color: var(--muted); margin-bottom: 40px; font-size: 1.05rem; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); display: flex; flex-direction: column; border: 1px solid #f2ecdd; transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(17,42,39,.16); }
.card .icon { font-size: 2rem; margin-bottom: 14px; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 16px; background: linear-gradient(135deg,#fff2d9,#e6f7f2); }
.card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.22rem; }
.card p { color: var(--muted); font-size: .96rem; flex: 1; }
.card a.more { margin-top: 16px; font-weight: 800; text-decoration: none; }

/* ---- Images (kept from recent builds + modernised) ----
   .card-img   : full-bleed photo at the top of a service card
   .content-img: rounded inline photo inside service-page content
   .gallery     : optional 3-up photo strip (works on any page)      */
.card-img { width: calc(100% + 60px); margin: -30px -30px 18px; height: 190px; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; display: block; }
.content-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); margin: 8px 0 20px; height: auto; object-fit: cover; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.img-round { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); position: relative; border: 1px solid #f2ecdd; }
.step::before { counter-increment: step; content: counter(step); display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; background: var(--orange); color: #3a2400; font-weight: 800; font-size: 1.2rem; border-radius: 14px; margin-bottom: 16px; }
.step h3 { color: var(--navy); font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; }

/* Trust strip */
.trust { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; text-align: center; }
.trust div { flex: 1; min-width: 160px; }
.trust strong { display: block; font-size: 1.7rem; color: var(--navy); }
.trust span { color: var(--muted); font-size: .9rem; }

/* Content pages */
.page-hero { background: var(--hero-grad); color: var(--text); padding: 60px 0 46px; }
.page-hero h1 { font-size: 2.2rem; line-height: 1.2; margin-bottom: 12px; letter-spacing: -.5px; color: #0c2b28; }
.page-hero p { color: #445055; max-width: 760px; font-size: 1.08rem; }
.breadcrumbs { font-size: .85rem; margin-bottom: 14px; color: #7a857f; }
.breadcrumbs a { color: var(--navy); text-decoration: none; }
.two-col { display: grid; grid-template-columns: 1.6fr 1fr; gap: 46px; align-items: start; }
.content h2 { color: var(--navy); font-size: 1.55rem; margin: 36px 0 12px; }
.content h2:first-child { margin-top: 0; }
.content h3 { color: var(--navy); font-size: 1.15rem; margin: 24px 0 8px; }
.content p { margin-bottom: 14px; }
.content ul { margin: 0 0 16px 22px; }
.content ul li { margin-bottom: 8px; }
.sidebar { position: sticky; top: 96px; }

/* CTA band */
.cta-band { background: var(--navy); color: #fff; text-align: center; padding: 60px 0; }
.cta-band h2 { font-size: 1.95rem; margin-bottom: 10px; letter-spacing: -.5px; }
.cta-band p { margin-bottom: 24px; font-size: 1.06rem; color: #d6f5f0; }
.cta-band .btn { background: var(--orange); color: #3a2400; }
.cta-band .btn:hover { background: #fff; color: var(--navy); }

/* FAQ */
.faq details { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 14px; padding: 0 24px; border: 1px solid #f2ecdd; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--navy); padding: 20px 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--orange-dark); font-size: 1.4rem; font-weight: 800; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 20px; color: var(--muted); }

/* Areas */
.areas-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px 24px; list-style: none; }
.areas-list li { background: #fff; border-radius: 12px; padding: 12px 16px; box-shadow: var(--shadow); font-weight: 700; color: var(--navy); border: 1px solid #f2ecdd; }

/* Footer */
footer.site { background: #0c2b28; color: #a9c2bd; padding: 56px 0 30px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 30px; }
footer.site h4 { color: #fff; margin-bottom: 12px; font-size: 1rem; }
footer.site a { color: #cfe4df; text-decoration: none; }
footer.site a:hover { color: var(--orange); }
footer.site ul { list-style: none; }
footer.site ul li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid #1c453f; padding-top: 20px; font-size: .8rem; text-align: center; }

/* Sticky mobile call bar */
.mobile-call { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--orange); text-align: center; padding: 14px; z-index: 100; box-shadow: 0 -4px 18px rgba(245,158,11,.4); }
.mobile-call a { color: #3a2400; font-weight: 800; text-decoration: none; font-size: 1.1rem; }

@media (max-width: 860px) {
  .hero-grid, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .cards, .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .areas-list { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2rem; }
  .sidebar { position: static; }
  .mobile-call { display: block; }
  body { padding-bottom: 60px; }
  nav.menu { display: none; }
}
