/* ============================================================
   DIAMOND PLUMBING — Master Stylesheet v3
   Primary: #1a5fa8 (Blue)  Accent: #f47920 (Orange)  Dark: #0d1b2e
   ============================================================ */

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

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #1a5fa8;
  --blue-d: #0d3d73;
  --blue-l: #2272c3;
  --orange: #f47920;
  --orange-d: #d4631a;
  --orange-l: #ff9040;
  --navy: #0d1b2e;
  --navy-l: #1a2d4a;
  --white: #fff;
  --gray-bg: #f5f7fa;
  --gray-bd: #e2e8f0;
  --gray: #8a9bb0;
  --text: #2c3e50;
  --text-l: #5a6d82;
  --shadow: 0 4px 24px rgba(13,27,46,.10);
  --shadow-lg: 0 8px 48px rgba(13,27,46,.16);
  --r: 8px;
  --rl: 14px;
  --tr: all .28s ease;
}
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: #fff; line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--tr); }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 { font-family: 'Oswald', sans-serif; line-height: 1.2; color: var(--navy); font-weight: 600; }
h1 { font-size: clamp(1.75rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.65rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; color: var(--text-l); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Oswald', sans-serif; font-size: .95rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .8px; padding: 13px 28px;
  border-radius: var(--r); border: 2px solid transparent; cursor: pointer; transition: var(--tr); }
.btn-orange  { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover  { background: var(--orange-d); border-color: var(--orange-d); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,121,32,.4); color:#fff; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color:#fff; }
.btn-blue    { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-d); border-color: var(--blue-d); color:#fff; transform:translateY(-2px); }
.btn-full    { width: 100%; }

/* ── TOP BAR ── */
.top-bar { background: var(--navy); padding: 8px 0; font-size: .82rem; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.top-bar a, .top-bar span { color: #b8cde0; display: flex; align-items: center; gap: 5px; }
.top-bar a:hover { color: var(--orange); }
.top-bar i { color: var(--orange); font-size: .85rem; }
.top-bar .pill { background: var(--orange); color: #fff; padding: 2px 10px; border-radius: 20px; font-weight: 600; font-size: .75rem; }
.tb-left,.tb-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* ── HEADER ── */
.site-header { background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,.09); position: sticky; top: 0; z-index: 900; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; gap: 16px; }
.logo-wrap img { height: 68px; width: auto; }
.hdr-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hdr-phone { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.hdr-phone i { color: var(--orange); }
.hdr-phone:hover { color: var(--orange); }

/* ── NAV ── */
.main-nav { background: var(--blue); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-list { display: flex; align-items: center; flex-wrap: nowrap; }
.nav-list > li { position: relative; }
.nav-list > li > a { display: flex; align-items: center; gap: 5px; padding: 15px 15px; color: #fff; font-family: 'Oswald', sans-serif; font-size: .93rem; font-weight: 500; text-transform: uppercase; letter-spacing: .4px; white-space: nowrap; }
.nav-list > li > a:hover, .nav-list > li > a.active { background: var(--orange); }
.nav-list > li > a i { font-size: .65rem; }
.nav-cta-btn { background: var(--orange); color: #fff; padding: 9px 18px; border-radius: var(--r); font-family: 'Oswald', sans-serif; font-size: .9rem; font-weight: 600; text-transform: uppercase; margin-left: 6px; white-space: nowrap; }
.nav-cta-btn:hover { background: var(--orange-d); color:#fff; }

/* Dropdown */
.drop { position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff; box-shadow: var(--shadow-lg); border-top: 3px solid var(--orange); opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--tr); z-index: 200; }
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: flex; align-items: center; gap: 9px; padding: 10px 15px; color: var(--text); font-size: .87rem; border-bottom: 1px solid var(--gray-bd); }
.drop a:hover { background: var(--gray-bg); color: var(--blue); }
.drop a i { color: var(--orange); width: 16px; flex-shrink: 0; font-size: .85rem; }

/* Mobile toggle */
.nav-toggle { display: none; background: none; border: 2px solid rgba(255,255,255,.7); color: #fff; padding: 7px 11px; cursor: pointer; border-radius: 4px; font-size: 1.1rem; line-height: 1; transition: var(--tr); }
.nav-toggle:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l, #1a2d4a) 45%, var(--blue-d) 100%); padding: 68px 0 55px; position: relative; overflow: hidden; }
.hero::after { content:''; position:absolute; inset:0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M20 20h4v4h-4zm0-20h4v4h-4zM0 20h4v4H0zM0 0h4v4H0z'/%3E%3C/g%3E%3C/svg%3E"); pointer-events:none; }
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--orange); color: #fff; padding: 5px 14px; border-radius: 20px; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 18px; }
.hero h1 { color: #fff; margin-bottom: 16px; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-sub { color: #b8cde0; font-size: 1rem; margin-bottom: 22px; }
.hero-checks { margin-bottom: 28px; display: flex; flex-direction: column; gap: 7px; }
.hero-checks li { color: #cdd8e5; font-size: .92rem; display: flex; align-items: center; gap: 9px; }
.hero-checks li i { color: var(--orange); flex-shrink: 0; font-size: .85rem; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero form card */
.hero-card { background: #fff; border-radius: var(--rl); padding: 30px 26px; box-shadow: 0 12px 48px rgba(0,0,0,.25); border-top: 5px solid var(--orange); }
.hero-card h3 { color: var(--navy); font-size: 1.35rem; margin-bottom: 4px; }
.hero-card > p { font-size: .84rem; margin-bottom: 16px; }

/* ── FORMS ── */
.fg { margin-bottom: 11px; }
.fg label { display: block; font-size: .8rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 10px 12px; border: 2px solid var(--gray-bd); border-radius: var(--r); font-family: 'Open Sans', sans-serif; font-size: .88rem; color: var(--text); background: #fff; transition: var(--tr); -webkit-appearance: none; appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,95,168,.1); }
.fg textarea { min-height: 72px; resize: vertical; }
.fg select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%238a9bb0' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; background-size: 12px; padding-right: 30px; }
.btn-submit { width: 100%; background: var(--orange); color: #fff; border: none; padding: 13px; border-radius: var(--r); font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; cursor: pointer; transition: var(--tr); display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-submit:hover { background: var(--orange-d); box-shadow: 0 4px 16px rgba(244,121,32,.45); }
.form-note { text-align: center; font-size: .75rem; color: var(--gray); margin-top: 8px; }

/* ── TRUST BAND ── */
.trust-band { background: var(--orange); padding: 16px 0; }
.trust-band .container { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 14px; }
.trust-item { display: flex; align-items: center; gap: 9px; color: #fff; }
.trust-item i { font-size: 1.5rem; opacity: .9; flex-shrink: 0; }
.trust-item b { display: block; font-family: 'Oswald', sans-serif; font-size: .92rem; line-height: 1.2; }
.trust-item span { font-size: .75rem; opacity: .88; display: block; }

/* ── SECTIONS ── */
.sec { padding: 72px 0; }
.sec-gray { background: var(--gray-bg); }
.sec-dark { background: var(--navy); }
.sec-blue { background: var(--blue); }
.sec-hd { text-align: center; margin-bottom: 44px; }
.sec-hd .lbl { display: inline-block; background: rgba(244,121,32,.12); color: var(--orange); padding: 4px 14px; border-radius: 20px; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 10px; }
.sec-hd h2 { margin-bottom: 11px; }
.sec-hd p { max-width: 580px; margin: 0 auto; font-size: .94rem; }
.sec-dark .sec-hd h2 { color: #fff; }
.sec-dark .sec-hd p { color: #8a9bb0; }

/* ── SERVICE CARDS ── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card { background: #fff; border-radius: var(--rl); padding: 28px 22px; box-shadow: var(--shadow); border: 2px solid transparent; transition: var(--tr); position: relative; overflow: hidden; }
.svc-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--orange); transform:scaleX(0); transition:var(--tr); }
.svc-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon { width: 60px; height: 60px; border-radius: 12px; background: linear-gradient(135deg,var(--blue),var(--blue-l)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; margin-bottom: 16px; transition: var(--tr); }
.svc-card:hover .svc-icon { background: linear-gradient(135deg,var(--orange),var(--orange-l)); }
.svc-card h3 { font-size: 1.08rem; margin-bottom: 7px; color: var(--navy); }
.svc-card p { font-size: .85rem; color: var(--text-l); margin-bottom: 14px; line-height: 1.6; }
.svc-card .more { color: var(--blue); font-weight: 600; font-size: .84rem; display: flex; align-items: center; gap: 5px; }
.svc-card:hover .more { color: var(--orange); }

/* ── STATS BAND ── */
.stats-band { background: var(--blue); padding: 44px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat-num { font-family: 'Oswald', sans-serif; font-size: 2.8rem; font-weight: 700; color: var(--orange); line-height: 1; }
.stat-lbl { color: rgba(255,255,255,.8); font-size: .84rem; margin-top: 5px; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 480px 1fr; gap: 55px; align-items: center; }
.why-img-wrap { position: relative; }
.why-img-box { background: var(--navy); border-radius: var(--rl); padding: 36px; box-shadow: var(--shadow-lg); text-align: center; }
.why-img-box img { max-height: 220px; width: auto; margin: 0 auto; }
.why-badge { position: absolute; bottom: -18px; right: -18px; background: var(--orange); color: #fff; padding: 16px 20px; border-radius: var(--rl); text-align: center; box-shadow: var(--shadow); }
.why-badge strong { display: block; font-family: 'Oswald', sans-serif; font-size: 2.4rem; line-height: 1; }
.why-badge span { font-size: .78rem; }
.why-items { display: flex; flex-direction: column; gap: 18px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-ico { min-width: 46px; height: 46px; background: rgba(26,95,168,.1); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 1.2rem; flex-shrink: 0; }
.why-item h4 { margin-bottom: 3px; font-size: 1rem; }
.why-item p { font-size: .86rem; margin: 0; }

/* ── COUNTIES ── */
.county-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 16px; }
.county-card { background: #fff; border-radius: var(--rl); padding: 22px 14px; text-align: center; box-shadow: var(--shadow); border: 2px solid transparent; transition: var(--tr); display: block; }
.county-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.county-card i { font-size: 1.7rem; color: var(--blue); margin-bottom: 9px; display: block; }
.county-card h3 { font-size: .92rem; margin-bottom: 3px; color: var(--navy); }
.county-card span { font-size: .75rem; color: var(--gray); }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card { background: #fff; border-radius: var(--rl); padding: 26px 22px; box-shadow: var(--shadow); position: relative; }
.testi-card::before { content:'\201C'; font-size: 4rem; color: var(--orange); opacity: .2; position: absolute; top: 6px; left: 16px; font-family: Georgia,serif; line-height: 1; }
.stars { color: #fbbf24; font-size: .85rem; margin-bottom: 9px; letter-spacing: 1px; }
.testi-card p { font-style: italic; font-size: .89rem; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.rev-av { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Oswald', sans-serif; font-size: .95rem; flex-shrink: 0; }
.rev-name { font-weight: 700; font-size: .84rem; color: var(--navy); }
.rev-loc { font-size: .75rem; color: var(--gray); }

/* ── VIDEO ── */
.vid-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.vid-wrap { border-radius: var(--rl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/9; }
.vid-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.blog-card { background: #fff; border-radius: var(--rl); overflow: hidden; box-shadow: var(--shadow); transition: var(--tr); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb { height: 168px; background: linear-gradient(135deg, var(--blue-d), var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: rgba(255,255,255,.2); }
.blog-body { padding: 20px 18px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 10px; font-size: .75rem; color: var(--gray); margin-bottom: 7px; flex-wrap: wrap; }
.blog-meta i { color: var(--orange); }
.blog-card h3 { font-size: 1rem; margin-bottom: 7px; color: var(--navy); line-height: 1.35; }
.blog-card h3 a:hover { color: var(--blue); }
.blog-card p { font-size: .83rem; margin-bottom: 12px; flex: 1; }
.more-link { color: var(--blue); font-weight: 600; font-size: .83rem; display: flex; align-items: center; gap: 4px; margin-top: auto; }
.more-link:hover { color: var(--orange); }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--blue-d) 100%); padding: 62px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 50% 50%, rgba(244,121,32,.18) 0%, transparent 65%); pointer-events:none; }
.cta-banner h2 { color: #fff; margin-bottom: 10px; position: relative; }
.cta-banner p { color: #8aadcb; font-size: .96rem; margin-bottom: 26px; position: relative; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 13px; flex-wrap: wrap; position: relative; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); }
.ft-top { padding: 58px 0 42px; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 42px; }

/* Footer logo — white box so the coloured logo shows correctly */
.ft-logo-box { display: inline-block; background: #fff; border-radius: 10px; padding: 10px 16px; margin-bottom: 18px; }
.ft-logo-box img { height: 62px; width: auto; display: block; }

.ft-about p { font-size: .86rem; line-height: 1.8; color: #8a9bb0; margin-bottom: 18px; }
.socials { display: flex; gap: 9px; flex-wrap: wrap; }
.socials a { width: 35px; height: 35px; background: rgba(255,255,255,.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #8a9bb0; font-size: .88rem; transition: var(--tr); }
.socials a:hover { background: var(--orange); color: #fff; }
.ft-col h4 { color: #fff; font-size: .98rem; margin-bottom: 16px; padding-bottom: 10px; position: relative; }
.ft-col h4::after { content:''; position:absolute; bottom:0; left:0; width:26px; height:3px; background: var(--orange); }
.ft-links a { display: block; color: #8a9bb0; font-size: .85rem; padding: 4px 0; transition: var(--tr); }
.ft-links a:hover { color: var(--orange); padding-left: 5px; }
.ft-contact-row { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 12px; font-size: .85rem; color: #8a9bb0; }
.ft-contact-row i { color: var(--orange); margin-top: 3px; flex-shrink: 0; min-width: 14px; }
.ft-contact-row a { color: #8a9bb0; }
.ft-contact-row a:hover { color: var(--orange); }
.ft-bottom { background: rgba(0,0,0,.22); padding: 15px 0; }
.ft-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .8rem; color: #607080; }
.ft-bottom a { color: #607080; }
.ft-bottom a:hover { color: var(--orange); }

/* ── POPUP ── */
.popup-ov { position: fixed; inset: 0; background: rgba(0,0,0,.78); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 16px; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.popup-ov.on { opacity: 1; visibility: visible; }
.popup-box { background: #fff; border-radius: var(--rl); max-width: 500px; width: 100%; max-height: 95vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,.5); transform: scale(.94); transition: transform .3s ease; position: relative; }
.popup-ov.on .popup-box { transform: scale(1); }
.popup-hd { background: linear-gradient(135deg, var(--navy), var(--blue-d)); padding: 26px 30px 20px; text-align: center; position: relative; }
/* Popup logo in white container — key fix */
.popup-logo-box { display: inline-block; background: #fff; border-radius: 9px; padding: 8px 14px; margin: 0 auto 13px; }
.popup-logo-box img { height: 50px; width: auto; display: block; }
.popup-hd h2 { color: #fff; font-size: 1.5rem; margin-bottom: 5px; }
.popup-hd p { color: #8aadcb; font-size: .84rem; margin: 0; }
.popup-x { position: absolute; top: 11px; right: 12px; background: rgba(255,255,255,.15); border: none; color: #fff; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: .88rem; display: flex; align-items: center; justify-content: center; transition: var(--tr); }
.popup-x:hover { background: var(--orange); }
.popup-bd { padding: 22px 28px 26px; }
.popup-badge { background: linear-gradient(90deg,var(--orange),var(--orange-l)); color: #fff; padding: 8px 12px; border-radius: var(--r); text-align: center; font-weight: 700; font-size: .82rem; margin-bottom: 16px; }
.success-msg { display: none; text-align: center; padding: 24px 16px; }
.success-msg i { font-size: 3.2rem; color: #16a34a; margin-bottom: 12px; display: block; }
.success-msg h3 { color: var(--navy); margin-bottom: 8px; }
.success-msg p { font-size: .9rem; }

/* ── FLOAT CALL BTN ── */
.float-call { position: fixed; bottom: 26px; right: 26px; background: var(--orange); color: #fff; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; box-shadow: 0 4px 18px rgba(244,121,32,.55); z-index: 850; }
.float-call:hover { background: var(--orange-d); transform: scale(1.1); color: #fff; }
@keyframes ring { 0%,100%{box-shadow:0 4px 18px rgba(244,121,32,.55)} 50%{box-shadow:0 4px 32px rgba(244,121,32,.85)} }
.float-call { animation: ring 2.2s infinite; }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--blue-d) 100%); padding: 52px 0; text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content:''; position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M20 20h4v4h-4z'/%3E%3C/g%3E%3C/svg%3E"); pointer-events:none; }
.page-hero h1 { color: #fff; position: relative; z-index: 1; margin-bottom: 10px; }
.page-hero p { color: #8aadcb; max-width: 580px; margin: 0 auto 14px; font-size: .93rem; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: .8rem; color: rgba(255,255,255,.5); flex-wrap: wrap; position: relative; z-index: 1; }
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: .6rem; }

/* ── INNER PAGE LAYOUTS ── */
.inner-grid { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
.sidebar { background: var(--gray-bg); border-radius: var(--rl); padding: 24px; position: sticky; top: 96px; }
.sidebar h3 { margin-bottom: 13px; font-size: 1.1rem; }
.svc-list a { display: flex; align-items: center; gap: 9px; padding: 9px 0; border-bottom: 1px solid var(--gray-bd); color: var(--text); font-size: .86rem; }
.svc-list a:hover { color: var(--blue); }
.svc-list a i { color: var(--orange); width: 16px; flex-shrink: 0; }
.city-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.city-tag { background: var(--blue); color: #fff; padding: 4px 11px; border-radius: 20px; font-size: .76rem; display: inline-block; transition: var(--tr); }
.city-tag:hover { background: var(--orange); }

/* Blog layout */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 44px; }
.blog-sidebar { position: sticky; top: 96px; height: fit-content; }
.sw { background: #fff; border-radius: var(--rl); padding: 22px; box-shadow: var(--shadow); margin-bottom: 22px; }
.sw h4 { margin-bottom: 13px; font-size: 1rem; padding-bottom: 9px; border-bottom: 2px solid var(--orange); color: var(--navy); }
.blog-full h2 { font-size: clamp(1.2rem,2.5vw,1.5rem); margin: 26px 0 11px; }
.blog-full h3 { font-size: clamp(1rem,2vw,1.22rem); margin: 20px 0 9px; }
.blog-full ul,
.blog-full ol { margin: 10px 0 18px 22px; }
.blog-full li { color: var(--text-l); margin-bottom: 5px; font-size: .92rem; }
.blog-full ul li { list-style: disc; }
.blog-full ol li { list-style: decimal; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--gray-bd); }
.faq-q { padding: 14px 0; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--navy); font-family: 'Oswald', sans-serif; font-size: .96rem; gap: 12px; }
.faq-q i { flex-shrink: 0; color: var(--orange); }
.faq-a { padding-bottom: 14px; font-size: .88rem; color: var(--text-l); display: none; }
.faq-a.open { display: block; }

/* ── ANIMATIONS — SAFE VERSION ──
   Elements animate IN but are always visible even if JS is slow.
   We use a short CSS-only reveal via animation-delay, no JS dependency. */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
/* Fallback: after 1.5s show everything regardless */
@keyframes showAll { to { opacity:1; transform:translateY(0); } }

/* ── RESPONSIVE ── */

/* Tablet ≤1100 */
@media(max-width:1100px){
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; } /* hero form hidden on tablet; popup handles it */
  .why-grid { grid-template-columns: 1fr; }
  .why-img-wrap { display: none; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .county-grid { grid-template-columns: repeat(4,1fr); }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

/* Mobile ≤768 */
@media(max-width:768px){
  /* top bar */
  .top-bar .container { justify-content: center; }
  .tb-left { justify-content: center; width: 100%; }
  .tb-right { display: none; }

  /* header */
  .logo-wrap img { height: 56px; }
  .hdr-phone { font-size: 1.1rem; }
  .hdr-cta .btn { padding: 9px 14px; font-size: .82rem; }

  /* nav */
  .nav-toggle { display: block; }
  .nav-list { display: none; flex-direction: column; width: 100%; background: var(--blue-d); border-top: 1px solid rgba(255,255,255,.1); }
  .nav-list.open { display: flex; }
  .nav-list > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-list > li > a { padding: 12px 16px; width: 100%; justify-content: space-between; }
  .nav-list > li > a:hover { background: var(--orange); }
  .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: rgba(0,0,0,.22); display: none; }
  .has-drop.open .drop { display: block; }
  .drop a { color: rgba(255,255,255,.82); border-bottom-color: rgba(255,255,255,.07); padding: 9px 22px; font-size: .84rem; }
  .drop a:hover { background: rgba(255,255,255,.07); color: var(--orange); }
  .nav-cta-btn { margin: 8px 14px 10px; border-radius: var(--r); }

  /* hero */
  .hero { padding: 40px 0 35px; }
  .hero-badge { font-size: .72rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }

  /* trust */
  .trust-band .container { gap: 10px; }
  .trust-item i { font-size: 1.2rem; }

  /* sections */
  .sec { padding: 48px 0; }
  .svc-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .svc-card { padding: 20px 16px; }
  .svc-icon { width: 50px; height: 50px; font-size: 1.25rem; }
  .svc-card h3 { font-size: .96rem; }

  .county-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .vid-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }

  /* cta */
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { width: 100%; max-width: 340px; margin: 0 auto; }

  /* inner pages */
  .inner-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }

  /* footer */
  .ft-grid { grid-template-columns: 1fr; gap: 24px; }
  .ft-top { padding: 42px 0 32px; }
  .ft-bottom .container { flex-direction: column; text-align: center; }

  /* popup */
  .popup-hd { padding: 20px 22px 16px; }
  .popup-hd h2 { font-size: 1.3rem; }
  .popup-logo-box img { height: 44px; }
  .popup-bd { padding: 16px 18px 20px; }
  .popup-badge { font-size: .76rem; }

  /* float */
  .float-call { width: 50px; height: 50px; font-size: 1.15rem; bottom: 18px; right: 18px; }
}

/* Small mobile ≤480 */
@media(max-width:480px){
  .container { padding: 0 14px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .county-grid { grid-template-columns: repeat(2,1fr); }
  .trust-band .container { flex-direction: column; align-items: flex-start; padding: 0 20px; }
  .stat-num { font-size: 2.2rem; }
  .sec { padding: 38px 0; }
  .btn { padding: 11px 20px; font-size: .88rem; }
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-6 { margin-bottom: 24px; }
.hl { color: var(--orange); }

/* ── PRINT ── */
@media print {
  .top-bar,.main-nav,.float-call,.popup-ov,.nav-toggle { display: none !important; }
}
