/* =========================================================================
   HALLANDALE AIR & DUCT CARE — "COASTAL COMFORT" DESIGN SYSTEM
   Shared stylesheet for every page. Do not fork per-page — extend here.
   ========================================================================= */

:root{
  /* --- surfaces --- */
  --navy:#0F2A3D;          /* deep ocean navy — primary dark surface */
  --navy-deep:#0A1E2C;     /* darker shade for gradients/footer */
  --navy-tint:rgba(15,42,61,.06);
  --sand:#F0E4D0;          /* warm sand — secondary surface */
  --sand-soft:#F7EFE1;
  --cream:#FAF6EE;         /* warm cream — light section background */
  --white:#FFFFFF;

  /* --- accents --- */
  --coral:#C15330;         /* coral-orange, darkened for WCAG AA contrast (4.6:1 on white, was 3.1:1) — primary accent/CTA */
  --coral-hover:#AE441F;
  --coral-tint:rgba(242,104,60,.10);
  --aqua:#4FB8B0;          /* soft aqua — secondary accent */
  --aqua-tint:rgba(79,184,176,.12);
  --aqua-deep:#3A928C;

  /* --- text --- */
  --ink:#122534;
  --muted:#5B6B74;
  --muted-on-dark:#BFD3D9;
  --on-dark:#F5F1E8;

  /* --- system --- */
  --rule:rgba(15,42,61,.10);
  --rule-on-dark:rgba(255,255,255,.14);
  --radius:14px;
  --radius-sm:8px;
  --radius-lg:22px;
  --maxw:1200px;
  --pad-x:2rem;

  /* --- shadows (depth system) --- */
  --shadow-xs:0 1px 3px rgba(15,42,61,.08);
  --shadow-sm:0 4px 14px -4px rgba(15,42,61,.14);
  --shadow-md:0 12px 28px -10px rgba(15,42,61,.22);
  --shadow-lg:0 24px 48px -16px rgba(15,42,61,.30);
  --shadow-coral:0 12px 26px -10px rgba(242,104,60,.55);
  --shadow-aqua:0 12px 26px -10px rgba(79,184,176,.45);

  /* --- type --- */
  --font-display:'Fraunces',Georgia,'Times New Roman',serif;
  --font-body:'Work Sans',system-ui,-apple-system,Arial,sans-serif;
  --font-mono:'JetBrains Mono',ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;

  /* legacy variable names kept so any un-migrated inline reference still resolves */
  --primary:var(--navy);
  --accent:var(--coral);
  --accent-hover:var(--coral-hover);
  --bg:var(--cream);
  --text:var(--ink);
  --success:#2E9E5B;
}

*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;padding:0;
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.65;
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:600;
  letter-spacing:-.01em;
  line-height:1.15;
  margin:0 0 .6rem;
  color:var(--navy);
}
h1{font-weight:900;font-optical-sizing:auto;font-size:clamp(2.1rem,4.6vw,3.4rem);line-height:1.06}
h2{font-weight:900;font-size:clamp(1.7rem,3.2vw,2.4rem)}
h3{font-weight:600;font-size:clamp(1.15rem,2vw,1.4rem)}
h4{font-weight:600;font-size:1rem;letter-spacing:.02em}
p{margin:0 0 1rem}
a{color:var(--navy);text-decoration:none;transition:color .18s ease}
a:hover{color:var(--coral)}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,details summary:focus-visible{
  outline:2px solid var(--coral);outline-offset:2px;border-radius:4px;
}
img{max-width:100%;height:auto}
ul{padding-left:1.15rem}
.num{font-family:var(--font-mono);font-variant-numeric:tabular-nums}

/* ---------- kicker / eyebrow label ---------- */
.kicker{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-mono);
  font-weight:600;font-size:.72rem;
  letter-spacing:.16em;text-transform:uppercase;
  color:var(--coral);
  margin-bottom:.6rem;
}
.kicker::before{
  content:"";width:16px;height:2px;background:var(--coral);display:inline-block;border-radius:2px;
}
.hero .kicker,.hero-content .kicker{color:var(--aqua)}
.hero .kicker::before{background:var(--aqua)}
.on-dark .kicker,section.rescue-hero .kicker{color:var(--aqua)}

/* ---------- status strip (availability / coverage banner) ---------- */
.status-strip{
  background:var(--navy-deep);color:var(--on-dark);
  font-family:var(--font-body);font-size:.85rem;font-weight:500;
  text-align:center;padding:.55rem 1rem;
  border-bottom:1px solid var(--rule-on-dark);
  letter-spacing:.01em;
}
.status-strip b{color:var(--aqua);font-family:var(--font-mono);font-weight:600}
.status-strip a{color:var(--on-dark);text-decoration:underline;text-underline-offset:2px}
.status-strip a:hover{color:var(--coral)}

/* ---------- header / nav ---------- */
header{
  position:sticky;top:0;z-index:200;
  background:var(--navy);
  color:#fff;
  padding:.85rem 1.5rem;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:1rem;
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow-sm);
}
.logo{
  font-family:var(--font-display);
  font-weight:900;
  font-size:1.3rem;
  letter-spacing:-.01em;
  color:#fff;
  display:flex;align-items:center;gap:10px;
}
.logo::before{
  content:"";
  width:30px;height:30px;flex:none;border-radius:9px;
  background:linear-gradient(135deg,var(--coral),var(--aqua));
  box-shadow:0 0 0 2px rgba(255,255,255,.18) inset;
}
header nav{display:flex;align-items:center;gap:.3rem;flex-wrap:wrap;flex:1;justify-content:center}
nav a{
  color:#fff;margin:0 .1rem;padding:.45rem .8rem;border-radius:999px;
  font-weight:500;font-size:.92rem;letter-spacing:.01em;
  opacity:.86;transition:opacity .18s ease,background .18s ease;
}
nav a:hover{background:rgba(255,255,255,.12);color:#fff;opacity:1}

.cta-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  background:var(--coral);color:#fff!important;
  padding:.75rem 1.4rem;border-radius:999px;
  font-family:var(--font-body);font-weight:600;font-size:.98rem;
  text-align:center;text-decoration:none;border:none;cursor:pointer;
  box-shadow:var(--shadow-coral);
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
  min-height:44px;
}
.cta-btn:hover{background:var(--coral-hover);color:#fff!important;transform:translateY(-2px);box-shadow:0 16px 32px -10px rgba(242,104,60,.6)}
.cta-btn:active{transform:translateY(0)}

/* hamburger (injected by shared script; hidden on desktop) */
.menu-toggle{
  display:none;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.22);
  color:#fff;width:44px;height:44px;border-radius:10px;
  font-size:1.2rem;cursor:pointer;align-items:center;justify-content:center;
  flex:none;
}
.menu-toggle:hover{background:rgba(255,255,255,.16)}

/* ---------- hero ---------- */
.hero,.rescue-hero{
  position:relative;
  overflow:hidden;
  min-height:64vh;
  background-color:var(--navy);
  background-image:
    radial-gradient(ellipse 60% 55% at 78% 18%,rgba(242,104,60,.32),transparent 60%),
    linear-gradient(150deg,var(--navy) 0%,var(--navy-deep) 100%);
  background-size:cover;background-repeat:no-repeat;background-position:center;
  color:#fff;
  display:flex;align-items:center;justify-content:center;text-align:center;
  padding:4.5rem 2rem;
}
.rescue-hero{min-height:auto;padding:4rem 2rem;text-align:center}
/* soft wave-line texture, drawn once via SVG data-uri, tiled low-opacity */
.hero::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  opacity:.16;mix-blend-mode:screen;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='90' viewBox='0 0 180 90'%3E%3Cpath d='M0 20 Q 45 0 90 20 T 180 20' fill='none' stroke='%234FB8B0' stroke-width='1.4'/%3E%3Cpath d='M0 50 Q 45 30 90 50 T 180 50' fill='none' stroke='%23F2683C' stroke-width='1.4'/%3E%3Cpath d='M0 80 Q 45 60 90 80 T 180 80' fill='none' stroke='%234FB8B0' stroke-width='1.4'/%3E%3C/svg%3E");
  background-size:220px 110px;
}
.hero::after{
  content:"";position:absolute;inset:auto 0 0 0;height:45%;pointer-events:none;
  background:linear-gradient(180deg,transparent,rgba(10,30,44,.55));
}
.hero-content{max-width:780px;position:relative;z-index:1}
.hero h1{color:#fff;margin-bottom:.75rem}
.hero p{font-size:1.14rem;color:var(--muted-on-dark);margin-bottom:1.4rem;max-width:620px;margin-left:auto;margin-right:auto}
.hero .cta-btn + .cta-btn,.hero-content .cta-btn + .cta-btn{margin-left:.6rem}
.rescue-hero h1{color:#fff;font-size:clamp(1.9rem,4vw,2.6rem);margin-bottom:1rem}
.rescue-hero p{font-size:1.12rem;color:var(--muted-on-dark);max-width:760px;margin:0 auto 1.4rem}

.trust-bar{
  display:flex;flex-wrap:wrap;justify-content:center;gap:.9rem;margin-top:1.3rem;
}
.trust-bar div,.trust-bar span{
  display:inline-flex;align-items:center;gap:7px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  padding:.42rem .9rem;border-radius:999px;
  font-size:.85rem;color:var(--on-dark);font-weight:500;
}
.trust-bar div::before,.trust-bar span::before{
  content:"";width:6px;height:6px;border-radius:50%;background:var(--aqua);flex:none;
}

/* hero stat row (used on bespoke flagship rebuilds) */
.stat-row{display:flex;flex-wrap:wrap;gap:0;margin-top:1.6rem;border:1px solid rgba(255,255,255,.16);border-radius:var(--radius);overflow:hidden}
.stat-row > div{flex:1 1 0;min-width:120px;padding:.9rem 1rem;background:rgba(255,255,255,.05);border-right:1px solid rgba(255,255,255,.12)}
.stat-row > div:last-child{border-right:0}
.stat-row b{display:block;font-family:var(--font-mono);font-weight:600;color:var(--aqua);font-size:1.15rem}
.stat-row small{color:var(--muted-on-dark);font-size:.76rem;letter-spacing:.02em}

.showcase-img{display:block;width:100%;max-width:1100px;margin:2.5rem auto;border-radius:var(--radius-lg);box-shadow:var(--shadow-md);height:auto}
.placeholder-img{width:100%;height:100%;object-fit:cover;border-radius:var(--radius);display:block}

/* ---------- layout helpers ---------- */
section{padding:4.5rem 2rem;max-width:var(--maxw);margin:auto}
.section-title{
  font-size:clamp(1.6rem,3vw,2.15rem);
  margin:0 auto 2.6rem;color:var(--navy);text-align:center;max-width:680px;
}

/* ---------- video demo wrap (index.html) ---------- */
.video-wrap{box-shadow:var(--shadow-lg);border-radius:var(--radius-lg)!important}

/* ---------- generic split layout utility (bespoke flagship pages) ---------- */
.split-2col{display:grid;grid-template-columns:1.1fr .9fr;gap:2.4rem;align-items:center}
.split-2col img{border-radius:var(--radius-lg);box-shadow:var(--shadow-md)}
@media(max-width:760px){.split-2col{grid-template-columns:1fr}}

/* ---------- service / how-step icon badge ---------- */
.service-icon,.icon-badge{
  width:54px;height:54px;border-radius:16px;
  display:inline-flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--coral-tint),var(--aqua-tint));
  color:var(--coral);margin:0 auto 1rem;
}
.service-icon svg,.icon-badge svg{width:26px;height:26px}

/* ---------- service cards ---------- */
.services{display:grid;gap:1.6rem;grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.service-card{
  background:var(--white);border-radius:var(--radius);padding:1.9rem 1.6rem;
  box-shadow:var(--shadow-sm);text-align:center;border:1px solid var(--rule);
  transition:transform .22s ease,box-shadow .22s ease;
}
.service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md)}
.service-card img{border-radius:var(--radius-sm)}
.service-card h3{margin-bottom:.6rem;color:var(--navy);font-size:1.2rem}
.service-card p{margin-bottom:.9rem;color:var(--muted)}
.service-card .price{font-weight:600;color:var(--coral);display:block;font-family:var(--font-mono);letter-spacing:.01em}

/* ---------- pricing ---------- */
.pricing{background:var(--sand-soft)}
.pricing-grid{display:grid;gap:1.6rem;grid-template-columns:repeat(auto-fit,minmax(270px,1fr))}
.price-card{
  background:var(--white);border-radius:var(--radius);padding:2rem 1.7rem;text-align:center;
  border:1px solid var(--rule);box-shadow:var(--shadow-sm);position:relative;
  transition:transform .22s ease,box-shadow .22s ease;
}
.price-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md)}
.price-card h3{color:var(--navy);margin-bottom:.3rem}
.price-card .price{
  font-family:var(--font-mono);font-weight:600;font-size:2rem;margin:.7rem 0;color:var(--coral);letter-spacing:-.01em;
}
.price-card ul{text-align:left;margin-top:1rem;padding-left:1.1rem;color:var(--muted)}
.price-card ul li{margin-bottom:.5rem}
.price-card.featured{
  border:2px solid var(--coral);box-shadow:var(--shadow-coral);transform:scale(1.02);
}
.price-card.featured::before{
  content:"Most Popular";position:absolute;top:-13px;left:50%;transform:translateX(-50%);
  background:var(--coral);color:#fff;font-family:var(--font-mono);font-size:.66rem;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;padding:.3rem .8rem;border-radius:999px;
}
.pricing-box{background:var(--aqua-tint);border:1px solid rgba(79,184,176,.35);border-radius:var(--radius);padding:1.6rem;margin:1.6rem 0}
.pricing-box h3{color:var(--aqua-deep)}
.pricing-box li{margin-bottom:.4rem}

/* ---------- how it works / process steps ---------- */
.how,.process-steps{display:grid;gap:2.2rem;grid-template-columns:repeat(auto-fit,minmax(230px,1fr))}
.how-step,.step{text-align:center;position:relative}
.how-step svg,.step svg{width:56px;height:56px;margin-bottom:.9rem;color:var(--coral);fill:none;stroke:currentColor}
.how-step img,.step img{border-radius:14px;margin-bottom:.9rem;width:60px;height:60px;object-fit:cover;box-shadow:var(--shadow-xs)}
.how-step h3,.step h3{margin-bottom:.5rem}
.how-step p,.step p{color:var(--muted)}

/* ---------- service areas / map ---------- */
.service-areas{display:flex;flex-wrap:wrap;gap:2.2rem;align-items:center}
.map-placeholder{
  flex:1 1 300px;min-width:260px;aspect-ratio:1/1;border-radius:var(--radius-lg);
  background:linear-gradient(135deg,var(--navy),var(--aqua-deep));
  display:flex;align-items:center;justify-content:center;color:var(--on-dark);font-style:italic;
  box-shadow:var(--shadow-md);overflow:hidden;position:relative;
}
.map-placeholder::before{
  content:"";position:absolute;inset:0;opacity:.25;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='70' viewBox='0 0 140 70'%3E%3Cpath d='M0 15 Q 35 0 70 15 T 140 15' fill='none' stroke='%23ffffff' stroke-width='1.2'/%3E%3Cpath d='M0 40 Q 35 25 70 40 T 140 40' fill='none' stroke='%23ffffff' stroke-width='1.2'/%3E%3Cpath d='M0 62 Q 35 47 70 62 T 140 62' fill='none' stroke='%23ffffff' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size:180px 90px;
}
.map-placeholder img.placeholder-img{position:relative;z-index:1}
.areas-info{flex:1 1 260px}
.areas-info h3{margin-bottom:.6rem;color:var(--navy)}
.areas-info p{margin-bottom:.9rem;color:var(--muted)}
.areas-info ul{color:var(--muted)}
.areas-info li{margin-bottom:.35rem}

/* ---------- no-spare / rescue-feature style callouts ---------- */
.nospare{background:var(--sand-soft)}
.nospare .content{display:flex;flex-wrap:wrap;gap:2.2rem;align-items:center}
.nospare .text{flex:1 1 260px}
.nospare .illustration{
  flex:1 1 260px;min-width:260px;aspect-ratio:1/1;border-radius:var(--radius-lg);
  background:linear-gradient(135deg,var(--coral-tint),var(--sand));
  display:flex;align-items:center;justify-content:center;color:var(--coral);font-style:italic;
  overflow:hidden;box-shadow:var(--shadow-sm);
}
.nospare .illustration img{width:100%;height:100%;object-fit:cover}

.rescue-features{display:grid;gap:1.8rem;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));margin:2.6rem 0}
.rescue-feature{
  background:var(--white);color:var(--navy);padding:1.9rem;border-radius:var(--radius);text-align:center;
  box-shadow:var(--shadow-sm);border:1px solid var(--rule);transition:transform .22s ease,box-shadow .22s ease;
}
.rescue-feature:hover{transform:translateY(-6px);box-shadow:var(--shadow-md)}
.rescue-feature h3{margin-bottom:.6rem}
.rescue-feature p{margin-bottom:.7rem;color:var(--muted)}
.rescue-feature .price{font-weight:600;color:var(--coral);font-family:var(--font-mono)}

.urgent-section{background:var(--white);text-align:center;padding:3.2rem 2rem;margin:2.6rem 0;border-top:1px solid var(--rule);border-bottom:1px solid var(--rule)}
.urgent-section h2{margin-bottom:.8rem}
.urgent-section p{margin-bottom:1.6rem;color:var(--muted)}
.urgent-section .cta-btn{font-size:1.05rem;padding:1rem 2rem}

.service-detail{background:var(--white);border-radius:var(--radius);padding:2rem;box-shadow:var(--shadow-sm);margin-bottom:2rem;border:1px solid var(--rule)}
.service-detail h2{margin-bottom:1.1rem;color:var(--navy)}
.service-detail p{margin-bottom:1.2rem;color:var(--muted)}
.service-detail img{max-width:100%;height:auto;border-radius:var(--radius)}

.benefits{display:grid;gap:1.6rem;grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.benefit{background:var(--white);border-radius:var(--radius);padding:1.7rem;box-shadow:var(--shadow-sm);border:1px solid var(--rule);transition:transform .22s ease,box-shadow .22s ease}
.benefit:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.benefit h4{margin-bottom:.6rem;color:var(--navy)}
.benefit p{margin-bottom:0;color:var(--muted)}

/* ---------- reviews ---------- */
.reviews{background:var(--white)}
.review{
  background:var(--sand-soft);border-radius:var(--radius);padding:1.4rem 1.5rem;margin-bottom:1.1rem;
  box-shadow:var(--shadow-xs);border:1px solid var(--rule);
}
.review::after{content:"";display:block;clear:both}
.review img{border:3px solid var(--white);box-shadow:var(--shadow-xs)}
.review .name{font-weight:600;color:var(--navy);font-family:var(--font-display);font-size:1.05rem}
.review .loc{color:var(--muted);font-size:.85rem}
.review .text{margin-top:.5rem;color:var(--ink)}

/* ---------- FAQ ---------- */
.faq{background:var(--sand-soft)}
.faq details{
  background:var(--white);border:1px solid var(--rule);border-radius:var(--radius);
  padding:1.1rem 1.3rem;margin-bottom:.7rem;transition:box-shadow .18s ease;
}
.faq details[open]{box-shadow:var(--shadow-sm)}
.faq summary{
  font-weight:600;cursor:pointer;list-style:none;color:var(--navy);
  display:flex;justify-content:space-between;align-items:center;gap:12px;font-size:1.02rem;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";color:var(--coral);font-size:1.3rem;font-weight:700;transition:transform .2s ease;flex:none}
.faq details[open] summary::after{transform:rotate(45deg)}
.faq details p{margin:.8rem 0 0;color:var(--muted)}

/* ---------- blog ---------- */
.blog-posts{display:grid;gap:1.6rem;grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.post-card{
  background:var(--white);border-radius:var(--radius);padding:1.7rem;box-shadow:var(--shadow-sm);
  border:1px solid var(--rule);transition:transform .22s ease,box-shadow .22s ease;
}
.post-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md)}
.post-card h3{margin-bottom:.5rem;color:var(--navy);font-size:1.15rem}
.post-card .date{color:var(--muted);font-size:.85rem;margin-bottom:.7rem;font-family:var(--font-mono)}
.post-card p{margin-bottom:.9rem;color:var(--muted)}
.post-card a{font-weight:600;color:var(--coral)}

.blog-content{display:grid;gap:2.4rem;grid-template-columns:1fr 300px}
.blog-main{flex:1;min-width:0}
.blog-post{margin-bottom:2.6rem}
.blog-post h2{margin-bottom:.9rem;color:var(--navy)}
.blog-post h3{margin:1.2rem 0 .5rem;color:var(--navy)}
.blog-post p{margin-bottom:1.1rem;color:var(--ink)}
.blog-post ul{margin:1rem 0;padding-left:1.4rem;color:var(--ink)}
.blog-post li{margin-bottom:.5rem}
.blog-post img{width:100%;border-radius:var(--radius);margin-bottom:1.3rem;box-shadow:var(--shadow-sm)}
.blog-post strong{color:var(--navy)}
.blog-sidebar{background:var(--white);border-radius:var(--radius);padding:1.6rem;box-shadow:var(--shadow-sm);border:1px solid var(--rule);align-self:start}
.blog-sidebar h4{margin-bottom:.9rem;color:var(--navy)}
.blog-sidebar ul{list-style:none;padding:0}
.blog-sidebar li{margin-bottom:.6rem}

/* ---------- CTA banner ---------- */
.cta-banner{
  background:linear-gradient(135deg,var(--navy),var(--navy-deep));
  color:#fff;text-align:center;padding:3rem 2rem;margin:2.6rem auto;max-width:var(--maxw);
  border-radius:var(--radius-lg);position:relative;overflow:hidden;box-shadow:var(--shadow-lg);
}
.cta-banner::before{
  content:"";position:absolute;inset:0;opacity:.5;pointer-events:none;
  background:radial-gradient(ellipse 55% 70% at 85% 20%,rgba(242,104,60,.35),transparent 60%);
}
.cta-banner h2{color:#fff;margin-bottom:.8rem;position:relative}
.cta-banner p{color:var(--muted-on-dark);position:relative;margin-bottom:1.4rem}
.cta-banner .cta-btn{position:relative}

/* ---------- footer (existing classes/structure, restyled only) ---------- */
.footer{
  background:var(--navy-deep);color:var(--muted-on-dark);
  padding:3.5rem 2rem 2rem;font-size:.94rem;
  display:flex;flex-wrap:wrap;gap:2.4rem;
  border-top:4px solid var(--coral);
}
.footer > div{flex:1 1 200px;max-width:280px}
.footer h4{margin-bottom:1rem;color:#fff;font-size:1.02rem;font-family:var(--font-display);font-weight:600;letter-spacing:.01em}
.footer p{color:var(--muted-on-dark);margin-bottom:.5rem}
.footer a{color:var(--muted-on-dark);display:block;margin-bottom:.5rem;text-decoration:none}
.footer a:hover{color:var(--aqua)}
.footer-bottom{
  margin:2.2rem auto 0;max-width:var(--maxw);padding-top:1.3rem;
  border-top:1px solid var(--rule-on-dark);font-size:.82rem;text-align:center;color:#7E939B;
}
.footer-bottom a{color:inherit}

/* photo attribution line stays untouched in content; keep readable on any background */
.attribution-line{color:#7E939B!important}

/* ---------- mobile sticky call bar ---------- */
.mobile-sticky{
  position:fixed;bottom:0;left:0;right:0;
  background:var(--coral);color:#fff;text-align:center;
  padding:.85rem;display:none;z-index:1000;
  font-weight:600;letter-spacing:.01em;box-shadow:0 -6px 20px rgba(0,0,0,.18);
}
.mobile-sticky a{color:#fff;font-weight:600}

/* ---------- login / worker portal ---------- */
.login-container{display:flex;align-items:center;justify-content:center;padding:4.5rem 2rem;max-width:var(--maxw);margin:auto}
.login-card{
  background:var(--white);border-radius:var(--radius-lg);padding:2.6rem;box-shadow:var(--shadow-lg);
  width:100%;max-width:420px;border:1px solid var(--rule);
}
.login-card h2{text-align:center;margin-bottom:.6rem;color:var(--navy)}
.login-card p{text-align:center;margin-bottom:1.8rem;color:var(--muted)}
.login-form{display:flex;flex-direction:column;gap:1.2rem}
.form-group{margin-bottom:0}
.form-group label{display:block;margin-bottom:.5rem;font-weight:600;color:var(--navy);font-size:.92rem}
.form-group input{width:100%;padding:.75rem .9rem;border:1px solid var(--rule);border-radius:var(--radius-sm);font-size:1rem;font-family:var(--font-body);background:var(--cream)}
.form-group input:focus{border-color:var(--coral);outline:none;background:var(--white)}
.login-btn{
  width:100%;padding:.85rem;margin-top:.4rem;background:var(--coral);color:#fff;border:none;
  border-radius:999px;font-size:1rem;font-weight:600;cursor:pointer;box-shadow:var(--shadow-coral);
  transition:background .18s ease,transform .18s ease;
}
.login-btn:hover{background:var(--coral-hover);transform:translateY(-2px)}
.login-btn:disabled{background:#C7CDD1;cursor:not-allowed;box-shadow:none;transform:none}
.forgot-password{text-align:center;margin-top:1.4rem}
.forgot-password a{color:var(--navy);font-size:.9rem}

/* generic contact/booking form polish (inline-styled inputs on contact/booking pages) */
input,select,textarea{font-family:var(--font-body);color:var(--ink)}
form input[type=text],form input[type=email],form input[type=tel],form input[type=date],form input[type=time],form select,form textarea{
  border-radius:var(--radius-sm)!important;border:1px solid var(--rule)!important;background:var(--white);
}
form input:focus,form select:focus,form textarea:focus{border-color:var(--coral)!important;outline:none}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media(max-width:980px){
  section{padding:3.2rem 1.4rem}
  .hero,.rescue-hero{padding:3.6rem 1.4rem}
  .blog-content{grid-template-columns:1fr}
  .blog-sidebar{order:-1;margin-bottom:1rem}
}
@media(max-width:860px){
  header nav{
    display:none;position:absolute;top:100%;left:0;right:0;
    background:var(--navy);flex-direction:column;align-items:stretch;
    padding:.6rem 1.2rem 1rem;gap:0;border-bottom:1px solid rgba(255,255,255,.1);
    box-shadow:var(--shadow-md);
  }
  header nav.open{display:flex}
  nav a{margin:.15rem 0;padding:.7rem .5rem;border-radius:8px}
  .menu-toggle{display:inline-flex}
  header{position:sticky;flex-wrap:wrap}
}
@media(max-width:600px){
  body{font-size:16px}
  h1{font-size:2rem}
  .mobile-sticky{display:block}
  .footer{padding:2.6rem 1.4rem 1.6rem;gap:1.8rem}
  .footer > div{max-width:100%}
  .price-card.featured{transform:none}
  .stat-row{flex-direction:column}
  .stat-row > div{border-right:0;border-bottom:1px solid rgba(255,255,255,.12)}
  .stat-row > div:last-child{border-bottom:0}
}
@media(prefers-reduced-motion:reduce){*{transition:none!important;animation:none!important;scroll-behavior:auto!important}}
