/* ═══════════════════════════════════════════════════════════════
   TIMBERLINE SPRINKLER REPAIR — Design System
   ═══════════════════════════════════════════════════════════════ */
:root {
  --navy:        #0c2340;
  --navy-mid:    #153660;
  --navy-light:  #1e4d8c;
  --green:       #15783a;
  --green-light: #1a9044;
  --amber:       #c97a00;
  --amber-light: #e8910a;
  --white:    #ffffff;
  --gray-50:  #f9fafb;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --text:       var(--gray-900);
  --text-muted: var(--gray-600);
  --text-light: var(--gray-400);
  --bg:         var(--white);
  --bg-subtle:  var(--gray-50);
  --border:     var(--gray-200);
  --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 6px rgba(0,0,0,.04);
  --shadow:    0 2px 8px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 8px 24px rgba(0,0,0,.05);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.09), 0 16px 40px rgba(0,0,0,.06);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.11), 0 32px 64px rgba(0,0,0,.07);
  --r-xs: 3px; --r-sm: 6px; --r: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px;
  --nav-h: 84px;
  --section-y: 5rem;
}
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem; line-height: 1.65; color: var(--text); background: var(--white);
  margin: 0; -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--navy-light); }
h1,h2,h3,h4,h5,h6 { font-family: 'Inter',sans-serif; line-height:1.15; letter-spacing:-.025em; color:var(--navy); margin:0; }
h1 { font-size:clamp(1.85rem,4vw,2.75rem); font-weight:800; }
h2 { font-size:clamp(1.4rem,3vw,2rem); font-weight:800; }
h3 { font-size:1.15rem; font-weight:700; }
h4 { font-size:1rem; font-weight:700; }
@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.fade-in-first  { opacity:0; animation:fadeUp .7s ease-out forwards; }
.fade-in-second { opacity:0; animation:fadeUp .7s ease-out .18s forwards; }
.fade-in-third  { opacity:0; animation:fadeUp .7s ease-out .36s forwards; }
/* NAVBAR */
.sm-navbar {
  background:rgba(255,255,255,.98); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border); box-shadow:0 1px 0 var(--border),0 2px 16px rgba(0,0,0,.06);
  min-height:var(--nav-h); padding:0; transition:box-shadow .2s;
}
.sm-navbar .container { min-height:var(--nav-h); max-width:1180px; }
.sm-navbar .navbar-brand { display:flex; align-items:center; gap:.7rem; padding:0; text-decoration:none; }
.sm-navbar .brand-logo { height:50px; width:50px; object-fit:contain; border-radius:50%; flex-shrink:0; }
.sm-navbar .brand-name { display:block; font-family:"Inter",sans-serif; font-weight:800; font-size:1.4rem; line-height:1.1; letter-spacing:-0.035em; color:var(--navy); }
.sm-navbar .brand-tagline { display:block; font-family:"Inter",sans-serif; font-size:0.58rem; font-weight:700; letter-spacing:0.15em; text-transform:uppercase; color:var(--green); line-height:1.1; margin-top:.15rem; }
.sm-navbar .nav-link { font-size:1.04rem; font-weight:500; color:var(--gray-700)!important; padding:.48rem .9rem!important; border-radius:var(--r-sm); transition:color .15s,background .15s; letter-spacing:-.015em; }
.sm-navbar .nav-link:hover { color:var(--navy)!important; background:var(--gray-100); }
.sm-navbar .navbar-toggler { border:1px solid var(--gray-300); border-radius:var(--r-sm); padding:.35rem .5rem; }
.sm-navbar .navbar-toggler:focus { box-shadow:none; }
.svc-menu { min-width:250px; padding:.55rem; border-radius:var(--r-lg)!important; border:1px solid var(--border)!important; box-shadow:0 8px 28px rgba(0,0,0,.11)!important; margin-top:6px!important; }
.svc-menu-item { display:flex; align-items:center; gap:.65rem; padding:.7rem .85rem; border-radius:var(--r); font-size:1.02rem; font-weight:500; color:var(--gray-800); text-decoration:none; transition:background .1s,color .1s; }
.svc-menu-item:hover { background:var(--gray-50); color:var(--navy); }
.svc-menu-icon { width:28px; height:28px; flex-shrink:0; display:flex; align-items:center; justify-content:center; background:var(--gray-100); border-radius:var(--r-sm); color:var(--navy); font-size:.82rem; transition:background .1s,color .1s; }
.svc-menu-item:hover .svc-menu-icon { background:var(--navy); color:#fff; }
.svc-menu-footer { display:flex; align-items:center; padding:.55rem .8rem; font-size:.9rem; font-weight:600; color:var(--green); text-decoration:none; border-radius:var(--r); }
.svc-menu-footer:hover { color:var(--navy); }
.nav-phone-btn { display:inline-flex; align-items:center; gap:.45rem; background:var(--green); color:#fff!important; font-size:.95rem; font-weight:700; padding:.6rem 1.35rem; border-radius:var(--r); text-decoration:none; letter-spacing:-.01em; white-space:nowrap; transition:background .15s,transform .1s,box-shadow .15s; box-shadow:0 2px 8px rgba(21,120,58,.3); }
.nav-phone-btn:hover { background:var(--green-light); color:#fff!important; transform:translateY(-1px); box-shadow:0 4px 14px rgba(21,120,58,.4); }
.below-nav { padding-top:calc(var(--nav-h) + 2rem); }
/* SECTIONS */
.section-white { background:var(--white); }
.section-slate { background:var(--gray-50); }
.section-navy { background:var(--navy); }
.py-section { padding-top:var(--section-y); padding-bottom:var(--section-y); }
.section-label { display:inline-flex; align-items:center; gap:.3rem; font-size:.68rem; font-weight:700; letter-spacing:.13em; text-transform:uppercase; color:var(--green); margin-bottom:.5rem; }
.section-heading { font-size:clamp(1.7rem,3.5vw,2.4rem); font-weight:800; color:var(--navy); letter-spacing:-.03em; line-height:1.12; }
.section-subheading { font-size:1.05rem; color:var(--text-muted); max-width:560px; line-height:1.65; }
/* HERO */
.hero { position:relative; min-height:92vh; display:flex; align-items:center; overflow:hidden; background:var(--navy); }
.hero-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 30%; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(108deg,rgba(0,0,0,.48) 0%,rgba(0,0,0,.25) 48%,rgba(0,0,0,.06) 100%); }
.hero-body { position:relative; z-index:2; padding-top:6rem; padding-bottom:5rem; }
.hero-eyebrow { display:inline-flex; align-items:center; gap:.45rem; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18); backdrop-filter:blur(4px); color:rgba(255,255,255,.88); font-size:.75rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:.35rem .85rem; border-radius:999px; margin-bottom:1.25rem; }
.hero-title { font-size:clamp(2.5rem,6vw,4.2rem); font-weight:900; color:#fff; letter-spacing:-.04em; line-height:1.05; margin-bottom:1.1rem; }
.hero-title em { font-style:normal; color:#6ee7b7; }
.hero-subtitle { font-size:clamp(1rem,2vw,1.15rem); color:rgba(255,255,255,.75); line-height:1.7; max-width:480px; margin-bottom:2rem; }
.hero-ctas { display:flex; flex-wrap:wrap; gap:.75rem; margin-bottom:2rem; }
.btn-hero-call { display:inline-flex; align-items:center; gap:.6rem; background:var(--green); color:#fff; font-size:1.05rem; font-weight:800; padding:.9rem 2rem; border-radius:var(--r-lg); text-decoration:none; box-shadow:0 8px 28px rgba(21,120,58,.45); transition:transform .15s,box-shadow .15s; }
.btn-hero-call:hover { color:#fff; transform:translateY(-2px); box-shadow:0 12px 36px rgba(21,120,58,.55); }
.btn-hero-secondary { display:inline-flex; align-items:center; gap:.5rem; background:rgba(255,255,255,.12); border:1.5px solid rgba(255,255,255,.3); color:#fff; font-size:1rem; font-weight:600; padding:.85rem 1.7rem; border-radius:var(--r-lg); text-decoration:none; backdrop-filter:blur(4px); transition:background .15s,border-color .15s; }
.btn-hero-secondary:hover { color:#fff; background:rgba(255,255,255,.2); border-color:rgba(255,255,255,.5); }
.hero-badges { display:flex; flex-wrap:wrap; gap:.5rem; }
.hero-badge-pill { display:inline-flex; align-items:center; gap:.35rem; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18); color:rgba(255,255,255,.85); font-size:.78rem; font-weight:600; padding:.3rem .8rem; border-radius:999px; }
/* TRUST BAR */
.trust-bar { background:var(--navy); padding:1.25rem 0; }
.trust-bar-items { display:flex; flex-wrap:wrap; justify-content:center; gap:1.5rem 2.5rem; }
.trust-bar-item { display:flex; align-items:center; gap:.5rem; color:rgba(255,255,255,.8); font-size:.875rem; font-weight:600; }
.trust-bar-item i { color:#6ee7b7; }
/* SERVICE CARDS */
.service-photo-card { display:flex; flex-direction:column; background:var(--white); border:1px solid var(--border); border-radius:var(--r-xl); overflow:hidden; text-decoration:none; color:inherit; transition:transform .2s,box-shadow .2s; }
.service-photo-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-xl); color:inherit; }
.card-photo { aspect-ratio:4/3; overflow:hidden; }
.card-photo img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.service-photo-card:hover .card-photo img { transform:scale(1.04); }
.card-content { padding:1.5rem; flex:1; display:flex; flex-direction:column; }
.card-icon { width:40px; height:40px; background:var(--navy); border-radius:var(--r); display:flex; align-items:center; justify-content:center; color:#6ee7b7; font-size:1rem; margin-bottom:1rem; }
.card-content h3 { font-size:1.15rem; font-weight:700; color:var(--navy); margin-bottom:.5rem; }
.card-content p { font-size:.88rem; color:var(--text-muted); line-height:1.65; flex:1; margin-bottom:1rem; }
.card-arrow { font-size:.83rem; font-weight:700; color:var(--green); display:flex; align-items:center; gap:.35rem; }
/* PROCESS STEPS */
.process-step { text-align:center; padding:0 2rem; }
.process-number { width:56px; height:56px; background:var(--navy); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#6ee7b7; font-size:1.4rem; font-weight:800; margin:0 auto 1rem; }
.process-step h3 { font-size:1.05rem; font-weight:700; color:var(--navy); margin-bottom:.5rem; }
.process-step p { font-size:.88rem; color:var(--text-muted); line-height:1.65; }
/* SEASON CARDS */
.season-card { display:block; background:var(--white); border:1px solid var(--border); border-radius:var(--r-xl); overflow:hidden; text-decoration:none; color:inherit; transition:transform .2s,box-shadow .2s; }
.season-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); color:inherit; }
.season-card-header { display:flex; align-items:center; gap:.85rem; padding:1.25rem 1.4rem 0; }
.season-icon { width:42px; height:42px; border-radius:var(--r); display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; }
.season-badge { font-size:.67rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }
.season-title { font-size:1.05rem; font-weight:700; color:var(--navy); }
.season-card-body { padding:.85rem 1.4rem 1.4rem; }
.season-desc { font-size:.86rem; color:var(--text-muted); line-height:1.65; margin-bottom:.85rem; }
.season-link { font-size:.83rem; font-weight:700; color:var(--green); display:inline-flex; align-items:center; gap:.3rem; }
/* BLOG CARDS */
.blog-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-xl); overflow:hidden; transition:transform .2s,box-shadow .2s; }
.blog-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.blog-card-body { padding:1.5rem; }
.blog-tag { display:inline-block; background:var(--gray-100); color:var(--gray-600); font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:.25rem .65rem; border-radius:999px; margin-bottom:.75rem; }
.blog-card-body h3 { font-size:1.05rem; font-weight:700; color:var(--navy); margin-bottom:.5rem; line-height:1.35; }
.blog-card-body p { font-size:.875rem; color:var(--text-muted); line-height:1.65; margin-bottom:.5rem; }
.blog-meta { font-size:.78rem; color:var(--text-light); }
.blog-read-link { font-size:.83rem; font-weight:700; color:var(--green); text-decoration:none; display:inline-flex; align-items:center; gap:.3rem; }
/* CITY CHIPS */
.city-chip { display:inline-flex; align-items:center; background:var(--white); border:1px solid var(--border); color:var(--gray-700); font-size:.855rem; font-weight:500; padding:.42rem 1rem; border-radius:999px; text-decoration:none; transition:background .15s,border-color .15s,color .15s; }
.city-chip:hover { background:var(--navy); color:#fff; border-color:var(--navy); }
/* CTA SECTION */
.cta-section { background:var(--navy); padding:5rem 0; text-align:center; }
.cta-phone-number { display:inline-block; color:#fff; font-size:clamp(2rem,5vw,3.5rem); font-weight:900; letter-spacing:-.04em; text-decoration:none; margin:1rem 0; transition:color .15s; }
.cta-phone-number:hover { color:#6ee7b7; }
/* BUTTONS */
.btn-amber { display:inline-flex; align-items:center; gap:.45rem; background:var(--amber); color:#fff; font-size:.92rem; font-weight:700; padding:.6rem 1.35rem; border-radius:var(--r); text-decoration:none; box-shadow:0 3px 12px rgba(201,122,0,.35); transition:background .15s,transform .1s; }
.btn-amber:hover { background:var(--amber-light); color:#fff; transform:translateY(-1px); }
.btn-navy { display:inline-flex; align-items:center; gap:.45rem; background:var(--navy); color:#fff; font-size:.92rem; font-weight:700; padding:.6rem 1.35rem; border-radius:var(--r); text-decoration:none; transition:background .15s,transform .1s; }
.btn-navy:hover { background:var(--navy-mid); color:#fff; transform:translateY(-1px); }
.btn-navy-outline { display:inline-flex; align-items:center; gap:.45rem; background:transparent; border:1.5px solid var(--navy); color:var(--navy); font-size:.92rem; font-weight:700; padding:.55rem 1.25rem; border-radius:var(--r); text-decoration:none; transition:background .15s,color .15s; }
.btn-navy-outline:hover { background:var(--navy); color:#fff; }
.btn-white { display:inline-flex; align-items:center; gap:.45rem; background:#fff; color:var(--navy); font-size:.92rem; font-weight:700; padding:.6rem 1.35rem; border-radius:var(--r); text-decoration:none; transition:background .15s; }
.btn-white:hover { background:var(--gray-100); color:var(--navy); }
.btn-white-outline { display:inline-flex; align-items:center; gap:.45rem; background:transparent; border:1.5px solid rgba(255,255,255,.4); color:#fff; font-size:.92rem; font-weight:700; padding:.55rem 1.25rem; border-radius:var(--r); text-decoration:none; transition:background .15s,border-color .15s; }
.btn-white-outline:hover { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.7); color:#fff; }
/* FOOTER */
.site-footer { background:var(--navy); color:rgba(255,255,255,.7); padding:4rem 0 0; }
.site-footer h6 { color:rgba(255,255,255,.5); font-size:.67rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; margin-bottom:.85rem; }
.site-footer ul { list-style:none; padding:0; margin:0; }
.site-footer ul li { margin-bottom:.45rem; }
.site-footer ul li a { color:rgba(255,255,255,.65); font-size:.875rem; text-decoration:none; transition:color .15s; }
.site-footer ul li a:hover { color:#fff; }
.footer-brand-name { font-size:1.25rem; font-weight:800; color:#fff; letter-spacing:-.025em; margin-bottom:.5rem; }
.footer-tagline { color:rgba(255,255,255,.5); font-size:.875rem; line-height:1.6; margin-bottom:1rem; }
.footer-phone { display:inline-flex; align-items:center; gap:.5rem; color:#6ee7b7; font-size:1.15rem; font-weight:800; text-decoration:none; letter-spacing:-.02em; }
.footer-phone:hover { color:#fff; }
.footer-phone-note { font-size:.72rem; color:rgba(255,255,255,.35); margin-top:.25rem; }
.footer-divider { display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:.75rem; border-top:1px solid rgba(255,255,255,.1); padding:1.5rem 0; margin-top:3rem; font-size:.78rem; color:rgba(255,255,255,.35); }
.footer-divider a { color:rgba(255,255,255,.4); text-decoration:none; }
.footer-divider a:hover { color:#fff; }
/* MOBILE CALL BAR */
.mobile-call-bar { position:fixed; bottom:0; left:0; right:0; z-index:1000; background:var(--green); display:none; }
.mobile-call-bar a { display:flex; align-items:center; justify-content:center; gap:.6rem; color:#fff; font-size:1rem; font-weight:700; padding:.9rem 1rem; text-decoration:none; }
.mobile-bar-inner { display:flex; }
.mobile-bar-call { flex:1; display:flex; align-items:center; justify-content:center; gap:.5rem; color:#fff; font-size:.95rem; font-weight:700; padding:.85rem .5rem; text-decoration:none; border-right:1px solid rgba(255,255,255,.25); }
.mobile-bar-text  { flex:1; display:flex; align-items:center; justify-content:center; gap:.5rem; color:#fff; font-size:.95rem; font-weight:700; padding:.85rem .5rem; text-decoration:none; background:rgba(0,0,0,.12); }
.mobile-bar-call:hover { background:rgba(0,0,0,.08); color:#fff; }
.mobile-bar-text:hover  { background:rgba(0,0,0,.2);  color:#fff; }
@media(max-width:991px) { .mobile-call-bar { display:block; } body { padding-bottom:60px; } }
/* PAGE HEADER */
.page-header { background:var(--navy); padding-top:var(--nav-h); }
.page-header .container { padding:4rem 1rem 3rem; }
.page-header h1 { color:#fff; }
.page-header p { color:rgba(255,255,255,.6); font-size:1.05rem; margin-top:.5rem; }
/* HOVER CONTAINER */
.hover-container { position:relative; overflow:hidden; }
.hover-container img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:opacity .5s; }
.hover-container img.fade-out { opacity:0; }
.hover-container:hover img.fade-out { opacity:1; }
.hover-container:hover img:not(.fade-out) { opacity:0; }
/* FAQ */
.faq-layout { display:grid; grid-template-columns:200px 1fr; gap:3rem; align-items:start; }
.faq-sidebar { position:sticky; top:calc(var(--nav-h) + 1.5rem); z-index:2; background:var(--white); }
.faq-sidebar-label { display:block; font-size:.67rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--text-light); margin-bottom:.65rem; }
.faq-sidebar-link { display:block; font-size:.875rem; font-weight:500; color:var(--text-muted); text-decoration:none; padding:.4rem .75rem; border-radius:var(--r-sm); margin-bottom:.15rem; transition:background .1s,color .1s; }
.faq-sidebar-link:hover,.faq-sidebar-link.faq-active { background:var(--gray-100); color:var(--navy); }
.faq-sidebar-divider { border-top:1px solid var(--border); margin:.75rem 0; }
@media(max-width:767px) { .faq-layout { grid-template-columns:1fr; } .faq-sidebar { position:static; display:none; } }
/* SERVICE PAGE */
.service-hero { background:var(--navy); padding-top:var(--nav-h); }
.accordion-item { border:1px solid var(--border)!important; border-radius:var(--r-md)!important; margin-bottom:.5rem; overflow:hidden; }
.accordion-button { font-weight:600; font-size:.925rem; color:var(--navy)!important; background:var(--white)!important; }
.accordion-button:not(.collapsed) { color:var(--navy)!important; background:var(--gray-50)!important; box-shadow:none!important; }
.accordion-button:focus { box-shadow:none!important; }

/* SHOW BRAND NAME ON ALL SCREEN SIZES */
.sm-navbar .brand-text { display:inline !important; }

/* HAMBURGER ICON — explicit so it renders without navbar-light/dark class */
.sm-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2812%2C35%2C64%2C0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* HERO BOOK BUTTON */
.btn-hero-book { display:inline-flex; align-items:center; gap:.6rem; background:rgba(255,255,255,.15); border:1.5px solid rgba(255,255,255,.4); color:#fff; font-size:1.05rem; font-weight:800; padding:.9rem 2rem; border-radius:var(--r-lg); text-decoration:none; backdrop-filter:blur(4px); transition:transform .15s,background .15s,border-color .15s; }
.btn-hero-book:hover { color:#fff; background:rgba(255,255,255,.25); border-color:rgba(255,255,255,.65); transform:translateY(-2px); }

/* NAV BOOK BUTTON */
.nav-book-btn { display:inline-flex; align-items:center; gap:.4rem; background:var(--navy); color:#fff!important; font-size:.88rem; font-weight:700; padding:.52rem 1.1rem; border-radius:var(--r); text-decoration:none; white-space:nowrap; transition:background .15s,transform .1s; border:1.5px solid var(--navy-mid); margin-right:.5rem; }
.nav-book-btn:hover { background:var(--navy-mid); color:#fff!important; transform:translateY(-1px); }
@media (max-width:991px) { .nav-book-btn { margin-right:0; margin-bottom:.5rem; align-self:flex-start; } }

/* BOOKING PAGE — availability checkboxes */
.booking-avail-grid { display:grid; grid-template-columns:1fr 1fr; gap:.6rem; }
.avail-check { display:flex; align-items:center; gap:.75rem; background:var(--gray-50); border:1.5px solid var(--border); border-radius:var(--r); padding:.75rem 1rem; cursor:pointer; transition:border-color .15s,background .15s; }
.avail-check:hover { border-color:var(--navy); background:var(--white); }
.avail-check input[type="checkbox"] { width:17px; height:17px; accent-color:var(--navy); flex-shrink:0; cursor:pointer; }
.avail-check input[type="checkbox"]:checked ~ span { color:var(--navy); font-weight:600; }
.avail-check:has(input:checked) { border-color:var(--navy); background:var(--white); box-shadow:0 0 0 3px rgba(12,35,64,.07); }
.avail-check span { display:flex; flex-direction:column; font-size:.875rem; font-weight:500; color:var(--gray-700); line-height:1.3; }
.avail-check span small { font-size:.72rem; font-weight:400; color:var(--text-light); margin-top:.1rem; }
.avail-check-any { grid-column:1/-1; }
@media (max-width:480px) { .booking-avail-grid { grid-template-columns:1fr; } .avail-check-any { grid-column:1; } }

/* BOOKING PAGE — sidebar */
.booking-sidebar { position:sticky; top:calc(var(--nav-h) + 1.5rem); }
.booking-sidebar h3 { font-size:1.05rem; font-weight:800; color:var(--navy); margin-bottom:1.25rem; letter-spacing:-.02em; }
.booking-step { display:flex; gap:.9rem; align-items:flex-start; margin-bottom:1.25rem; }
.booking-step-num { width:32px; height:32px; min-width:32px; background:var(--navy); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#6ee7b7; font-size:.85rem; font-weight:800; }
.booking-step-title { font-size:.9rem; font-weight:700; color:var(--navy); margin-bottom:.2rem; }
.booking-step-desc { font-size:.82rem; color:var(--text-muted); line-height:1.6; }

/* HERO SMS LINE + AVAILABILITY */
.hero-alt-contact { display:flex; flex-wrap:wrap; align-items:center; gap:.4rem .75rem; margin-top:.6rem; margin-bottom:1.5rem; font-size:.82rem; }
.hero-sms-link { display:inline-flex; align-items:center; gap:.35rem; color:rgba(255,255,255,.8); text-decoration:none; font-weight:600; transition:color .15s; }
.hero-sms-link:hover { color:#6ee7b7; }
.hero-sms-link i { font-size:.78rem; }
.hero-avail-dot { color:rgba(255,255,255,.3); }
.hero-avail { color:rgba(255,255,255,.55); font-weight:500; }
@media (max-width:991px) { .hero-avail-dot, .hero-avail { display:none; } }

/* MOBILE HERO HEIGHT */
@media (max-width:767px) { .hero { min-height:78vh; } }

/* FAQ CALLOUT */
.faq-callout { display:flex; align-items:center; justify-content:center; gap:.6rem; margin-top:2.5rem; padding:1rem 1.5rem; background:var(--gray-100); border:1px solid var(--border); border-radius:var(--r-lg); font-size:.88rem; color:var(--text-muted); }
.faq-callout i { color:var(--navy); font-size:1rem; flex-shrink:0; }
.faq-callout a { color:var(--navy); font-weight:700; text-decoration:none; }
.faq-callout a:hover { color:var(--green); }

/* CONTACT FORM */
.contact-form-wrap { background:var(--white); border:1px solid var(--border); border-radius:var(--r-xl); padding:2.5rem; box-shadow:var(--shadow-md); }
.contact-form label { display:block; font-size:.8rem; font-weight:700; color:var(--navy); letter-spacing:.03em; text-transform:uppercase; margin-bottom:.4rem; }
.contact-form input,
.contact-form textarea,
.contact-form select { width:100%; border:1.5px solid var(--gray-300); border-radius:var(--r); padding:.65rem .9rem; font-family:inherit; font-size:.925rem; color:var(--text); background:var(--white); transition:border-color .15s,box-shadow .15s; outline:none; -webkit-appearance:none; appearance:none; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color:var(--navy); box-shadow:0 0 0 3px rgba(12,35,64,.08); }
.contact-form textarea { min-height:110px; resize:vertical; }
.contact-form select { background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23475569' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); background-repeat:no-repeat; background-position:right .75rem center; background-size:14px; padding-right:2.25rem; }
.form-submit-btn { display:inline-flex; align-items:center; gap:.5rem; background:var(--green); color:#fff; font-size:1rem; font-weight:700; padding:.75rem 1.75rem; border-radius:var(--r-lg); border:none; cursor:pointer; transition:background .15s,transform .1s; box-shadow:0 4px 14px rgba(21,120,58,.35); }
.form-submit-btn:hover:not(:disabled) { background:var(--green-light); transform:translateY(-1px); }
.form-submit-btn:disabled { opacity:.7; cursor:not-allowed; }
@media (max-width:575px) { .contact-form-wrap { padding:1.5rem; } }

/* WARRANTY SUBTLE LINKS */
.warranty-link { color:inherit; text-decoration:underline; text-decoration-style:dotted; text-underline-offset:3px; text-decoration-thickness:1px; transition:color .15s,text-decoration-color .15s; }
.warranty-link:hover { color:#6ee7b7; text-decoration-color:#6ee7b7; }
.warranty-link-light { color:var(--navy); font-weight:inherit; text-decoration:underline; text-decoration-style:dotted; text-underline-offset:3px; text-decoration-thickness:1px; transition:color .15s; }
.warranty-link-light:hover { color:var(--green); }

/* ACTIVE NAV LINK */
.sm-navbar .nav-link.active { color:var(--navy)!important; font-weight:700; }

/* NAVBAR SCROLL STATE */
.sm-navbar.scrolled { box-shadow:0 2px 24px rgba(0,0,0,.13); }

/* SCROLL ANIMATIONS */
.anim-ready { opacity:0; transform:translateY(22px); transition:opacity .5s ease, transform .5s ease; }
.anim-done  { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) {
  .anim-ready { opacity:1; transform:none; transition:none; }
}

/* SCROLL-TO-TOP BUTTON */
.scroll-top-btn {
  position:fixed; bottom:80px; right:1.25rem; z-index:998;
  width:42px; height:42px; border-radius:50%;
  background:var(--navy); color:#fff; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center; font-size:1rem;
  box-shadow:var(--shadow-md);
  opacity:0; transform:translateY(8px);
  transition:opacity .2s, transform .2s, background .15s;
  pointer-events:none;
}
.scroll-top-btn.visible { opacity:1; transform:none; pointer-events:auto; }
.scroll-top-btn:hover { background:var(--navy-mid); }
@media (max-width:991px) { .scroll-top-btn { bottom:72px; } }
