/* ===================================================================
   Action Irrigation — modern static marketing site (mockup)
   Patriotic navy / red palette. No build step. Plain CSS.
   =================================================================== */

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

/* ─── Design tokens ───────────────────────────────────────────── */
:root {
  --ink:        #20303c;   /* charcoal — matches logo "IRRIGATION" */
  --ink-2:      #2a3d4c;
  --slate:      #51616e;   /* body text muted                     */
  --slate-3:    #788896;
  --line:       #e3ebf2;   /* hairlines                           */
  --bg:         #ffffff;
  --bg-soft:    #f4f8fc;
  --bg-soft-2:  #e8f1f9;
  --navy:       #103a5e;   /* deep ocean — dark sections          */
  --blue:       #2570b0;   /* brand royal blue — PRIMARY          */
  --blue-2:     #2f86b8;   /* lighter water blue                  */
  --blue-d:     #1c5990;
  --red:        #2570b0;   /* alias → brand blue (legacy refs)    */
  --red-d:      #1c5990;
  --amber:      #eaa93a;   /* star ratings                        */
  --grad:       linear-gradient(135deg, #2f86b8 0%, #1f6cae 100%);          /* primary blue */
  --grad-blue:  linear-gradient(135deg, #3a93c4 0%, #2570b0 100%);
  --grad-deep:  linear-gradient(160deg, #0c2a44 0%, #103a5e 48%, #155085 100%); /* ocean */
  --shadow-sm:  0 1px 2px rgba(16,40,62,.06), 0 1px 3px rgba(16,40,62,.09);
  --shadow:     0 10px 30px -10px rgba(16,40,62,.20);
  --shadow-lg:  0 30px 60px -20px rgba(16,40,62,.30);
  --r:          8px;
  --r-lg:       12px;
  --maxw:       1180px;
  --font:       system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head:  "Oswald", "Arial Narrow", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.06; letter-spacing: .01em; font-weight: 600; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  color: var(--red); background: #eaf3fb; border: 1px solid #d3e5f4;
  padding: 7px 13px; border-radius: 5px;
}
.eyebrow.blue { color: var(--blue); background: #eef4fb; border-color: #d4e4f5; }
.h-section { font-size: clamp(28px, 4vw, 44px); margin: 18px 0 14px; }
.lead { font-size: clamp(16px, 1.6vw, 19px); color: var(--slate); max-width: 660px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 16px; letter-spacing: .045em; text-transform: uppercase; cursor: pointer;
  padding: 13px 28px; border-radius: 7px; border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px -6px rgba(31,108,174,.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(31,108,174,.65); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.42); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-light:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 17px; }

/* ─── Top flag/announcement bar ───────────────────────────────── */
.topbar { background: var(--navy); color: #dbe6f3; font-size: 13.5px; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 14px; height: 40px; }
.topbar .stripes { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; }
.topbar .flag { width: 22px; height: 15px; border-radius: 2px; flex: none; box-shadow: 0 1px 2px rgba(0,0,0,.4); }
.topbar a { color: #fff; font-weight: 700; }
.topbar .tb-right { display: inline-flex; align-items: center; gap: 18px; }
.topbar .tb-right .sep { color: #3f5a7d; }
@media (max-width: 720px) { .topbar .stripes span { display: none; } .topbar .tb-right .hrs { display: none; } }

/* ─── Header ──────────────────────────────────────────────────── */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s;
}
header.site.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; white-space: nowrap; }
.brand .mark { width: 44px; height: 44px; flex: none; }
.brand .bt { display: flex; flex-direction: column; line-height: 1.05; }
.brand .bt b { font-size: 19px; font-weight: 800; letter-spacing: -.01em; color: var(--ink); }
.brand .bt small { font-size: 10.5px; font-weight: 700; color: var(--slate-3); letter-spacing: .12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-weight: 600; font-size: 14.5px; color: var(--ink-2);
  padding: 8px 11px; border-radius: 10px; transition: background .15s, color .15s; white-space: nowrap;
}
.nav-links a:hover { background: var(--bg-soft-2); color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--ink); padding: 9px 10px; white-space: nowrap; }
.nav-phone:hover { color: var(--red); }
.nav-phone svg { width: 18px; height: 18px; color: var(--red); }
.nav-login { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 14.5px; color: var(--ink-2); padding: 9px 13px; border-radius: 10px; border: 1px solid var(--line); white-space: nowrap; transition: background .15s, color .15s, border-color .15s; }
.nav-login:hover { border-color: var(--blue); color: var(--blue); background: var(--bg-soft); }
.nav-login svg { width: 16px; height: 16px; }
.hamburger { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.hamburger svg { width: 24px; height: 24px; }

/* ─── Top-nav dropdown menus ──────────────────────────────────── */
.nav-item { position: relative; display: inline-flex; }
.nav-top { font-family: inherit; font-weight: 600; font-size: 14.5px; color: var(--ink-2); background: none; border: 0; cursor: pointer; padding: 8px 11px; border-radius: 10px; display: inline-flex; align-items: center; gap: 6px; transition: background .15s, color .15s; white-space: nowrap; }
.nav-item:hover .nav-top, .nav-item:focus-within .nav-top { background: var(--bg-soft-2); color: var(--red); }
.nav-caret { width: 11px; height: 11px; opacity: .55; transition: transform .2s; }
.nav-item:hover .nav-caret { transform: rotate(180deg); }
.nav-menu { position: absolute; top: 100%; left: 0; min-width: 248px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 9px; margin-top: 9px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .15s ease, transform .15s ease, visibility .15s; z-index: 60; }
.nav-menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 14px; }
.nav-item:hover .nav-menu, .nav-item:focus-within .nav-menu { opacity: 1; visibility: visible; transform: none; }
.nav-menu a { display: block; padding: 9px 12px; border-radius: 9px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.nav-menu a:hover { background: var(--bg-soft-2); color: var(--red); }

/* ─── Hero ────────────────────────────────────────────────────── */
.hero { position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(100deg, rgba(9,30,50,.94) 0%, rgba(13,48,78,.86) 46%, rgba(20,66,104,.66) 100%), url("hero-tech.jpg") center 28%/cover no-repeat; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 440px at 80% -10%, rgba(47,111,176,.40), transparent 60%),
    radial-gradient(720px 520px at 6% 112%, rgba(31,108,174,.26), transparent 55%);
  pointer-events: none;
}
/* faint sprinkler-arc / topo motif */
.hero .arcs { position: absolute; inset: 0; z-index: 0; opacity: .14; pointer-events: none; }
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 50px; align-items: center; padding: clamp(54px, 8vw, 92px) 0 120px; }
.hero h1 { font-size: clamp(34px, 5.2vw, 58px); }
.hero h1 .hl { color: #8fd3f5; }
.hero .tagline { font-size: clamp(16px, 1.9vw, 21px); color: #8fc0ee; font-weight: 600; font-style: italic; margin-top: 16px; }
.hero .sub { font-size: clamp(16px, 1.7vw, 19px); color: #cdd9e7; margin: 14px 0 30px; max-width: 580px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 34px; }
.hero-chips span { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: #e4ecf5; }
.hero-chips svg { width: 19px; height: 19px; color: #6fb0ec; flex: none; }

.rating-pill {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: 8px 14px; border-radius: 6px; font-size: 14px; font-weight: 600;
}
.stars { color: var(--amber); letter-spacing: 2px; }

/* Hero side card */
.quote-card {
  position: relative; background: rgba(255,255,255,.98); color: var(--ink);
  border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.6);
}
.quote-card .ribbon { position: absolute; top: -13px; left: 28px; background: var(--grad); color: #fff; font-size: 11.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow); }
.quote-card h3 { font-size: 21px; margin-top: 4px; }
.quote-card p.k { color: var(--slate); font-size: 14.5px; margin-top: 6px; }
.qrow { display: flex; align-items: center; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.qrow:last-of-type { border-bottom: 0; }
.qrow .ico { width: 42px; height: 42px; border-radius: 12px; background: #eaf3fb; display: flex; align-items: center; justify-content: center; flex: none; }
.qrow .ico svg { width: 22px; height: 22px; color: var(--red); }
.qrow b { font-size: 15px; display: block; } .qrow span { font-size: 13px; color: var(--slate-3); }
.quote-card .btn { width: 100%; margin-top: 18px; }

/* wave divider */
.wave { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 2; line-height: 0; }
.wave svg { width: 100%; height: 64px; display: block; }

/* ─── Trust bar ───────────────────────────────────────────────── */
.trust { background: var(--bg); border-bottom: 1px solid var(--line); }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 30px 0; }
.trust-item { display: flex; align-items: center; gap: 13px; justify-content: center; text-align: left; }
.trust-item svg { width: 30px; height: 30px; color: var(--red); flex: none; }
.trust-item b { display: block; font-size: 15.5px; } .trust-item span { font-size: 13px; color: var(--slate-3); }

/* ─── Specials strip ──────────────────────────────────────────── */
.specials { background: var(--grad); color: #fff; }
.specials .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 22px; flex-wrap: wrap; }
.specials .s-txt { display: flex; align-items: center; gap: 16px; }
.specials .s-txt .tag { background: #fff; color: var(--red); font-weight: 800; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; padding: 7px 12px; border-radius: 8px; flex: none; }
.specials .s-txt b { font-size: clamp(17px,2.2vw,21px); font-weight: 800; }
.specials .s-txt p { color: #ffe1e6; font-size: 14px; }

/* ─── Services ────────────────────────────────────────────────── */
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden; display: flex; flex-direction: column; padding: 30px 28px 28px;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #cfe0f2; }
.card .ico-lg { width: 58px; height: 58px; border-radius: 15px; background: var(--grad-blue); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 22px -8px rgba(30,78,140,.55); margin-bottom: 18px; }
.card .ico-lg.red { background: var(--grad); box-shadow: 0 10px 22px -8px rgba(31,108,174,.5); }
.card .ico-lg svg { width: 30px; height: 30px; color: #fff; }
.card h3 { font-size: 21px; margin-bottom: 9px; }
.card p { color: var(--slate); font-size: 15px; }
.card ul { list-style: none; margin: 14px 0 0; display: flex; flex-direction: column; gap: 8px; }
.card li { display: flex; gap: 9px; font-size: 14px; color: var(--ink-2); }
.card li svg { width: 17px; height: 17px; color: #1a9e54; flex: none; margin-top: 3px; }
.card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-weight: 700; color: var(--red); font-size: 14.5px; }
.card .more svg { width: 16px; height: 16px; transition: transform .15s; }
.card:hover .more svg { transform: translateX(4px); }

/* ─── Why us / stats ──────────────────────────────────────────── */
.why { background: var(--bg-soft); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feat { display: flex; gap: 16px; margin-bottom: 26px; }
.feat .ico { width: 48px; height: 48px; border-radius: 13px; background: #fff; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex: none; box-shadow: var(--shadow-sm); }
.feat .ico svg { width: 24px; height: 24px; color: var(--red); }
.feat h3 { font-size: 18px; margin-bottom: 4px; }
.feat p { color: var(--slate); font-size: 15px; }
.stat-card { background: var(--grad-deep); color: #fff; border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.stat-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 300px at 90% 0, rgba(31,108,174,.28), transparent 60%); }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 24px; position: relative; z-index: 1; }
.stat b { font-size: clamp(32px, 4vw, 44px); font-weight: 800; display: block; color: #fff; }
.stat span { color: #c2d2e4; font-size: 14.5px; }

/* ─── Process ─────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 46px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); }
.step .n { counter-increment: step; width: 44px; height: 44px; border-radius: 12px; background: var(--grad); color: #fff; font-weight: 800; font-size: 19px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step .n::before { content: counter(step); }
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--slate); }

/* ─── Service area ────────────────────────────────────────────── */
.area { background: var(--grad-deep); color: #fff; position: relative; overflow: hidden; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.area h2 { color: #fff; }
.area .lead { color: #c8d6e6; }
.city-tags { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 26px; }
.city-tags span { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: 9px 16px; border-radius: 999px; font-size: 14.5px; font-weight: 600; color: #e6eef7; }
.area .map-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); padding: 22px; text-align: center; display: flex; flex-direction: column; }
.area .map-card .counties { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 18px; }
.area .map-card .cty { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 18px 10px; }
.area .map-card .cty b { font-size: 18px; display: block; }
.area .map-card .cty span { font-size: 12px; color: #aebfd2; }
.area .map-card .map-frame { position: relative; flex: 1 1 auto; min-height: 280px; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04); }
.area .map-card .map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ─── Reviews ─────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 46px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review .stars { font-size: 17px; letter-spacing: 3px; }
.review p { margin: 14px 0 18px; font-size: 15px; color: var(--ink-2); flex: 1; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .av { width: 44px; height: 44px; border-radius: 999px; background: var(--grad-blue); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.review b { font-size: 14.5px; display: block; } .review small { color: var(--slate-3); }

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq { max-width: 820px; margin: 46px auto 0; }
details { background: #fff; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 14px; padding: 4px 22px; box-shadow: var(--shadow-sm); }
summary { font-weight: 700; font-size: 16.5px; cursor: pointer; padding: 18px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary .pm { width: 26px; height: 26px; flex: none; position: relative; }
summary .pm::before, summary .pm::after { content: ""; position: absolute; background: var(--red); border-radius: 2px; }
summary .pm::before { width: 14px; height: 2.5px; top: 12px; left: 6px; }
summary .pm::after { width: 2.5px; height: 14px; top: 6px; left: 12px; transition: opacity .2s; }
details[open] summary .pm::after { opacity: 0; }
details > p { padding: 0 0 20px; color: var(--slate); font-size: 15px; }

/* ─── CTA band ────────────────────────────────────────────────── */
.cta-band { background: var(--grad); color: #fff; border-radius: var(--r-lg); padding: clamp(36px,5vw,60px); text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% -20%, rgba(255,255,255,.18), transparent 60%); pointer-events: none; }
.cta-band h2 { font-size: clamp(26px,3.6vw,40px); position: relative; z-index: 1; }
.cta-band p { color: #ffe1e6; font-size: 18px; margin: 14px auto 28px; max-width: 560px; position: relative; z-index: 1; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; z-index: 1; }
.cta-band .btn-light:hover { color: var(--red); }

/* ─── Footer ──────────────────────────────────────────────────── */
footer.site { background: var(--navy); color: #c2d0e0; padding: 64px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
footer .brand .bt b { color: #fff; }
footer .fdesc { font-size: 14.5px; line-height: 1.7; margin: 16px 0; max-width: 320px; }
footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-links a { font-size: 14.5px; color: #c2d0e0; }
.foot-links a:hover { color: #fff; }
.foot-contact a, .foot-contact div { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; color: #c2d0e0; font-size: 14.5px; }
.foot-contact svg { width: 18px; height: 18px; color: #6fb0ec; flex: none; margin-top: 2px; }
.foot-bottom { border-top: 1px solid #173255; margin-top: 48px; padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13px; color: #8298b3; }
.foot-bottom a { color: #8298b3; }
.foot-bottom a:hover { color: #fff; }

/* ─── Mobile sticky call bar ──────────────────────────────────── */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: #fff; border-top: 1px solid var(--line); padding: 10px 14px; gap: 10px; box-shadow: 0 -8px 24px -12px rgba(11,31,58,.25); }
.mobile-bar .btn { flex: 1; padding: 13px; font-size: 15px; }

/* ─── Mobile drawer ───────────────────────────────────────────── */
.drawer { display: none; }

/* ─── Service detail pages ────────────────────────────────────── */
.svc-hero { position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(100deg, rgba(9,30,50,.93) 0%, rgba(13,48,78,.85) 50%, rgba(20,66,104,.62) 100%), url("sprinkler-adjust.jpg") center 32%/cover no-repeat; }
.svc-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 400px at 85% -10%, rgba(47,111,176,.4), transparent 60%); pointer-events: none; }
.svc-hero .wrap { position: relative; z-index: 2; padding: clamp(34px,5vw,60px) 22px clamp(48px,7vw,80px); }
.breadcrumb { font-size: 14px; color: #c2d0e0; margin-bottom: 16px; }
.breadcrumb a { color: #6fb0ec; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.svc-hero h1 { font-size: clamp(31px,4.6vw,50px); max-width: 800px; }
.svc-hero .sub { font-size: clamp(16px,1.7vw,20px); color: #d6e1ee; margin: 16px 0 26px; max-width: 640px; }
.svc-hero .hero-chips { margin-top: 26px; }
.svc-layout { display: grid; grid-template-columns: 1.55fr .85fr; gap: 48px; align-items: start; }
.prose p { color: var(--slate); font-size: 16px; line-height: 1.7; margin-bottom: 16px; max-width: 700px; }
.prose h2 { font-size: clamp(24px,3vw,32px); margin: 8px 0 14px; }
.prose h3 { font-size: 22px; margin: 30px 0 12px; }
.checklist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 6px 0 22px; }
.checklist li { display: flex; gap: 10px; font-size: 15px; color: var(--ink-2); }
.checklist li svg { width: 19px; height: 19px; color: #1a9e54; flex: none; margin-top: 3px; }
.tile { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-sm); margin: 22px 0; }
.tile h3 { font-size: 19px; margin-bottom: 6px; }
.tile .price { font-size: 34px; font-weight: 800; color: var(--ink); }
.tile .price span { font-size: 15px; font-weight: 600; color: var(--slate-3); }
.aside-cta { position: sticky; top: 130px; background: var(--grad-deep); color: #fff; border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-lg); }
.aside-cta h3 { font-size: 20px; }
.aside-cta p { color: #c8d6e6; font-size: 14.5px; margin: 8px 0 18px; }
.aside-cta .btn { width: 100%; margin-bottom: 10px; }
.aside-cta .lic { font-size: 12.5px; color: #9fb2c8; margin: 14px 0 0; }
.aside-cta .ph { display: block; text-align: center; font-size: 22px; font-weight: 800; color: #fff; margin: 4px 0 6px; }

/* ─── Booking embed page ──────────────────────────────────────── */
.book-intro { padding: clamp(40px,5vw,60px) 0 8px; }
.book-frame { position: relative; max-width: 1080px; margin: 30px auto 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: #fff; }
.book-frame .ph { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 12px; align-items: center; justify-content: center; color: var(--slate-3); font-size: 15px; z-index: 0; text-align: center; padding: 24px; }
.book-frame .ph .spin { width: 30px; height: 30px; border: 3px solid var(--line); border-top-color: var(--red); border-radius: 50%; animation: bspin .9s linear infinite; }
@keyframes bspin { to { transform: rotate(360deg); } }
/* Initial height is a fallback only — main.js sets the exact pixel height
   from the scheduler's postMessage so the frame fits with no inner scroll. */
.book-frame iframe { position: relative; z-index: 1; width: 100%; height: 920px; border: 0; display: block; }
.book-fallback { text-align: center; margin: 18px auto 0; font-size: 14.5px; color: var(--slate); }
.book-fallback a { color: var(--red); font-weight: 700; }
@media (max-width: 720px) { .book-frame iframe { height: 1180px; } }

/* ─── Contact form ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.cf { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow); }
.cf .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink-2); margin: 16px 0 6px; }
.cf input, .cf textarea, .cf select { width: 100%; font-family: inherit; font-size: 15.5px; color: var(--ink); padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; transition: border-color .15s, box-shadow .15s; }
.cf input:focus, .cf textarea:focus, .cf select:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(30,78,140,.12); }
.cf textarea { min-height: 130px; resize: vertical; }
.cf .hp { position: absolute; left: -9999px; }
.cf .btn { width: 100%; margin-top: 22px; }
.cf-status { margin-top: 14px; font-size: 14.5px; font-weight: 600; text-align: center; min-height: 20px; }
.cf-status.ok { color: #1a9e54; } .cf-status.err { color: var(--red); }
.contact-aside .ci { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-aside .ci .ico { width: 46px; height: 46px; border-radius: 13px; background: #eaf3fb; display: flex; align-items: center; justify-content: center; flex: none; }
.contact-aside .ci .ico svg { width: 22px; height: 22px; color: var(--red); }
.contact-aside .ci b { display: block; font-size: 15.5px; }
.contact-aside .ci p, .contact-aside .ci a { color: var(--slate); font-size: 14.5px; }
.contact-aside .ci a:hover { color: var(--red); }

/* ─── Responsive ──────────────────────────────────────────────── */
.brand img.logo { height: 58px; width: auto; display: block; }
@media (max-width: 480px) { .brand img.logo { height: 46px; } }
.topbar .flag { display: none; }   /* real brand isn't patriotic — drop the US-flag placeholder */
.foot-brand { align-items: center; }
.foot-brand .fmark { height: 44px; width: auto; flex: none; }
/* Branded "slate" PNG icons inside the service-card chips */
.card .ico-lg.imgico { background: #e8f1f9; border: 1px solid #d3e5f4; box-shadow: none; }
.card .ico-lg.imgico img { width: 34px; height: 34px; display: block; }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 110px; }
  .quote-card { max-width: 460px; }
  .why-grid, .area-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 22px; }
  .grid-cards, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 1180px) { .nav-phone { display: none; } }   /* keep the sticky header from overflowing — phone stays in topbar + mobile bar */
@media (max-width: 1100px) { .nav-login { display: none; } }
@media (max-width: 1010px) { .nav-links { display: none; } .hamburger { display: flex; }
  .drawer { display: block; position: fixed; inset: 0; z-index: 70; visibility: hidden; }
  .drawer.open { visibility: visible; }
  .drawer .scrim { position: absolute; inset: 0; background: rgba(11,31,58,.5); opacity: 0; transition: opacity .25s; }
  .drawer.open .scrim { opacity: 1; }
  .drawer .panel { position: absolute; top: 0; right: 0; height: 100%; width: min(86%, 360px); background: #fff; padding: 22px; transform: translateX(100%); transition: transform .28s ease; display: flex; flex-direction: column; overflow-y: auto; }
  .drawer.open .panel { transform: translateX(0); }
  .drawer .panel a { padding: 14px 4px; font-weight: 600; font-size: 17px; border-bottom: 1px solid var(--line); color: var(--ink-2); }
  .drawer .close { align-self: flex-end; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; font-size: 22px; cursor: pointer; margin-bottom: 8px; }
  .drawer .panel .btn { margin-top: 18px; }
}
@media (max-width: 860px) {
  .svc-layout { grid-template-columns: 1fr; gap: 30px; }
  .checklist { grid-template-columns: 1fr; }
  .aside-cta { position: static; }
}
@media (max-width: 720px) {
  .nav-phone { display: none; }
  .nav-cta .btn-primary { display: none; }
  .grid-cards, .reviews-grid, .steps, .trust-row, .foot-grid, .cf .row, .area .map-card .counties { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions > .btn { width: 100%; }
  .hero-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; }
  .specials .wrap { flex-direction: column; align-items: flex-start; }
  body { padding-bottom: 70px; }
  footer.site { padding-bottom: 90px; }
}

/* ─── Photo gallery (Our Work) ────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 42px; }
.gallery-grid figure { position: relative; margin: 0; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.07); }
.gallery-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px; color: #fff; font-weight: 600; font-size: 13.5px; background: linear-gradient(transparent, rgba(11,31,58,.82)); }

/* ─── Photo strip (service / location pages) ──────────────────────── */
.svc-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.svc-photos img { width: 100%; height: 230px; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow-sm); }
@media (max-width: 560px) { .svc-photos { grid-template-columns: 1fr; } .svc-photos img { height: 200px; } }

/* ─── Service cards with a photo on top ───────────────────────────── */
.card.has-media { padding: 0; overflow: hidden; }
.card .card-media { height: 190px; overflow: hidden; }
.card .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.card.has-media:hover .card-media img { transform: scale(1.06); }
.card .card-body { padding: 24px 26px 26px; display: flex; flex-direction: column; }

/* 2-up card grid */
.grid-cards.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 720px) { .grid-cards.two { grid-template-columns: 1fr; } }

/* ─── City-tag chips: light by default (service-area + location pages); white inside dark .area ─── */
.city-tags span, .city-tags a { background: #fff; border: 1px solid var(--line); padding: 9px 15px; border-radius: 6px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-sm); display: inline-block; }
.city-tags a { transition: background .15s, transform .15s, border-color .15s, color .15s; }
.city-tags a:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.area .city-tags span, .area .city-tags a { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #e6eef7; box-shadow: none; }
.area .city-tags a:hover { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.3); }

/* ─── Footer social icons ─────────────────────────────────────────── */
.foot-social { display: flex; gap: 11px; margin-top: 18px; }
.foot-social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #c2d0e0; transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease; }
.foot-social a:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-2px); }
.foot-social svg { width: 19px; height: 19px; }

/* ═══ Redesigned hero (photo-forward, angled, no quote-card) ═══════ */
.hero { background: linear-gradient(180deg, rgba(8,26,44,.58) 0%, rgba(8,26,44,.50) 38%, rgba(8,26,44,.88) 100%), url("photos/sprinkler-adjusting-spray.jpg") center 30%/cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 52px), 0 100%); }
.hero::before { display: none; }
.hero-inner { position: relative; z-index: 2; max-width: 770px; padding: clamp(60px,9vw,116px) 0 clamp(86px,11vw,140px); }
.hero h1 { font-size: clamp(38px,6.2vw,72px); text-transform: uppercase; line-height: 1.02; font-weight: 700; letter-spacing: .01em; }
.hero .hl { color: #8fd3f5; }
.hero .sub { font-size: clamp(16px,1.7vw,20px); color: #dbe6f2; margin: 18px 0 28px; max-width: 620px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .rating-pill { margin-bottom: 22px; }

/* Quick "what do you need?" service picker — overlaps the angled hero */
.quickpick { position: relative; z-index: 5; margin-top: -44px; }
.quickpick-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.qp { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--blue); border-radius: 8px; padding: 22px 20px; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease; }
.qp:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-top-color: var(--blue-2); }
.qp-ic { width: 46px; height: 46px; border-radius: 8px; background: var(--bg-soft-2); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.qp-ic svg { width: 24px; height: 24px; color: var(--blue); }
.qp b { font-family: var(--font-head); font-weight: 600; font-size: 18px; letter-spacing: .01em; color: var(--ink); }
.qp .qp-d { font-size: 13px; color: var(--slate-3); margin-top: 2px; }
.qp .qp-go { margin-top: 10px; font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--blue); }
@media (max-width: 820px) { .quickpick-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .quickpick { margin-top: -30px; } .qp { padding: 16px 14px; } .qp b { font-size: 16px; } }

/* ─── Careers: résumé file-drop + perks ───────────────────────────── */
.file-drop { position: relative; border: 1.5px dashed var(--line); border-radius: 8px; padding: 16px; background: var(--bg-soft); display: flex; align-items: center; gap: 12px; cursor: pointer; transition: border-color .15s, background .15s; margin-top: 6px; }
.file-drop:hover { border-color: var(--blue); background: #eef4fb; }
.file-drop svg { width: 26px; height: 26px; color: var(--blue); flex: 0 0 26px; }
.file-drop .ftext { font-size: 14px; color: var(--slate); }
.file-drop .ftext b { color: var(--ink); }
.file-drop input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-name { margin-top: 8px; font-size: 13.5px; color: var(--blue-d); font-weight: 600; display: none; }
.perks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 12px 0 0; }
.perks li { display: flex; gap: 10px; font-size: 15.5px; color: var(--ink-2); }
.perks li svg { width: 20px; height: 20px; color: #1a9e54; flex: none; margin-top: 3px; }

/* ═══ Homepage top redesign (sample): van hero + feature cards + experts band ═══ */
/* New hero photo (branded van + sprinkler) */
.hero { background: linear-gradient(100deg, rgba(8,26,44,.86) 0%, rgba(8,26,44,.60) 42%, rgba(8,26,44,.32) 70%, rgba(8,26,44,.44) 100%), url("photos/hero-van.jpg") center 42%/cover no-repeat; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 18px 30px; margin-top: 26px; }
.hero-badges span { display: inline-flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: #eaf2fb; }
.hero-badges svg { width: 26px; height: 26px; color: #8fd3f5; flex: none; }

/* Service feature cards (icon + photo) overlapping the hero */
.feature-cards { position: relative; z-index: 5; margin-top: -46px; }
.fcards-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fcard { display: flex; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--blue); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease; min-height: 174px; color: var(--ink); }
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-top-color: var(--blue-2); }
.fcard .fc-body { flex: 1 1 58%; padding: 18px 16px; display: flex; flex-direction: column; }
.fcard .fc-ic { width: 38px; height: 38px; margin-bottom: 10px; object-fit: contain; }
.fcard h3 { font-family: var(--font-head); font-weight: 600; font-size: 18px; text-transform: uppercase; letter-spacing: .01em; line-height: 1.05; }
.fcard p { font-size: 13px; color: var(--slate); margin-top: 6px; line-height: 1.45; }
.fcard .more { margin-top: auto; padding-top: 12px; font-family: var(--font-head); font-weight: 600; font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--blue); }
.fcard .fc-photo { flex: 0 0 40%; background-size: cover; background-position: center; }
@media (max-width: 940px) { .fcards-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .fcards-row { grid-template-columns: 1fr; } .feature-cards { margin-top: -30px; } }

/* Local experts band */
.experts { background: var(--grad-deep); color: #fff; }
.experts .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px 30px; padding: 22px; flex-wrap: wrap; }
.experts .ex-tag b { font-family: var(--font-head); font-weight: 600; font-size: clamp(16px,2vw,21px); letter-spacing: .02em; text-transform: uppercase; display: block; }
.experts .ex-tag p { color: #bcd0e6; font-size: 14px; margin-top: 3px; }
.experts .counties { display: flex; flex-wrap: wrap; gap: 14px 26px; }
.experts .counties span { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: #eaf2fb; }
.experts .counties svg { width: 20px; height: 20px; color: #8fd3f5; flex: none; }
@media (max-width: 760px) { .experts .wrap { flex-direction: column; align-items: flex-start; } }
