/* Ensure fonts don't block render */
@font-face { font-display: swap; }

/* ============================================================
   CACHE VALLEY FIRE PROTECTION — SHARED STYLESHEET
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #C41E1E;
  --red-dark:   #A01818;
  --red-light:  #E02828;
  --charcoal:   #1A1A1A;
  --dark:       #111111;
  --mid:        #2C2C2C;
  --gray:       #4A4A4A;
  --light-gray: #F5F5F5;
  --white:      #FFFFFF;
  --text:       #222222;
  --text-muted: #666666;
  --border:     #E0E0E0;
  --display:    'Barlow Condensed', sans-serif;
  --body:       'Barlow', sans-serif;
  --radius:     4px;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.16);
}

html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--text); background: var(--white); overflow-x: hidden; }

/* ── UTILITY ─────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--body); font-weight: 600; font-size: 15px;
  padding: 13px 28px; border-radius: var(--radius); cursor: pointer;
  text-decoration: none; border: 2px solid transparent;
  transition: all 0.2s ease; white-space: nowrap; letter-spacing: 0.3px;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,30,30,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-dark:hover { background: var(--red); color: var(--white); }
.btn-white { background: var(--white); color: var(--red); border-color: var(--white); font-weight: 700; }
.btn-white:hover { background: rgba(255,255,255,0.92); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

.section-label {
  font-family: var(--display); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--red);
  display: block; margin-bottom: 12px;
}
.section-title {
  font-family: var(--display); font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; line-height: 1.05; color: var(--charcoal);
  text-transform: uppercase; letter-spacing: -0.5px;
}
.section-title.light { color: var(--white); }

/* ── TOP BAR ─────────────────────────────────────── */
.topbar { background: var(--charcoal); padding: 9px 0; font-size: 13px; color: rgba(255,255,255,0.75); border-bottom: 2px solid var(--red); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: var(--white); }
.topbar-phone { background: var(--red); color: var(--white) !important; font-weight: 700; padding: 5px 14px; border-radius: 3px; font-size: 13px; display: flex; align-items: center; gap: 6px; transition: background 0.2s; }
.topbar-phone:hover { background: var(--red-dark) !important; }

/* ── NAV ─────────────────────────────────────────── */
nav { background: var(--white); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text strong { font-family: var(--display); font-size: 18px; font-weight: 800; color: var(--charcoal); letter-spacing: 0.5px; text-transform: uppercase; }
.nav-logo-text span { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a {
  font-family: var(--display); font-size: 15px; font-weight: 600;
  color: var(--gray); text-decoration: none; padding: 8px 14px;
  border-radius: var(--radius); transition: color 0.2s, background 0.2s;
  letter-spacing: 0.3px; text-transform: uppercase; cursor: pointer;
}
.nav-links > a:hover, .nav-links > a.active { color: var(--red); background: rgba(196,30,30,0.06); }

.dropdown { position: relative; }
.dropdown-btn {
  font-family: var(--display); font-size: 15px; font-weight: 600;
  color: var(--gray); background: none; border: none;
  padding: 8px 14px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 5px; cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.3px; transition: color 0.2s, background 0.2s;
}
.dropdown-btn:hover { color: var(--red); background: rgba(196,30,30,0.06); }
.dropdown-btn svg { transition: transform 0.2s; }
.dropdown:hover .dropdown-btn svg { transform: rotate(180deg); }
.dropdown-btn.active { color: var(--red); }

.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  min-width: 240px; overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.2s ease; z-index: 200;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px; padding: 12px 18px;
  font-size: 14px; font-weight: 500; color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--border); transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--light-gray); color: var(--red); }
.dropdown-menu a .dm-icon { font-size: 16px; width: 22px; text-align: center; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-call { font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--text); text-decoration: none; display: flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: var(--radius); transition: color 0.2s; letter-spacing: 0.3px; }
.nav-call:hover { color: var(--red); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all 0.3s; display: block; }
.mobile-menu { display: none; background: var(--white); border-top: 2px solid var(--border); padding: 16px 24px 24px; }
.mobile-menu a { display: block; padding: 12px 0; font-weight: 600; font-family: var(--display); text-transform: uppercase; font-size: 15px; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border); }
.mobile-menu a:hover { color: var(--red); }
.mobile-sub { padding: 8px 0 8px 16px; }
.mobile-sub a { font-size: 14px; color: var(--text-muted); text-transform: none; font-family: var(--body); padding: 8px 0; border-bottom: none; font-weight: 500; }
.mobile-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.mobile-cta .btn { width: 100%; justify-content: center; }

/* ── TRUST STRIP ─────────────────────────────────── */
.trust-strip { background: var(--red); padding: 14px 0; border-bottom: 3px solid var(--red-dark); }
.trust-strip .container { display: flex; justify-content: center; align-items: center; gap: 36px; flex-wrap: wrap; }
.trust-strip-item { display: flex; align-items: center; gap: 8px; color: var(--white); font-weight: 700; font-size: 13px; font-family: var(--display); letter-spacing: 0.8px; text-transform: uppercase; }

/* ── PAGE HERO (inner pages) ─────────────────────── */
.page-hero { background: var(--charcoal); padding: 56px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(196,30,30,0.15) 0%, transparent 60%); }
.page-hero-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--red); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero-inner { max-width: 700px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.35); }
.breadcrumb strong { color: rgba(255,255,255,0.75); font-weight: 500; }
.page-hero h1 { font-family: var(--display); font-size: clamp(32px, 5vw, 56px); font-weight: 800; color: var(--white); text-transform: uppercase; line-height: 1.0; letter-spacing: -0.5px; margin-bottom: 14px; }
.page-hero h1 em { font-style: normal; color: var(--red); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.6; max-width: 560px; margin-bottom: 28px; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero-trust { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.page-hero-trust span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; font-family: var(--display); }
.page-hero-trust span svg { color: var(--red); }

/* ── SERVICE CONTENT LAYOUT ─────────────────────── */
.service-layout { padding: 72px 0; }
.service-layout .container { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.service-main {}
.service-sidebar { position: sticky; top: 90px; }

.service-section { margin-bottom: 48px; }
.service-section h2 { font-family: var(--display); font-size: 26px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.3px; color: var(--charcoal); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 3px solid var(--red); display: inline-block; }
.service-section p { font-size: 16px; line-height: 1.75; color: var(--text); margin-bottom: 16px; }
.service-section ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-section ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text); line-height: 1.5; }
.service-section ul li::before { content: ''; width: 8px; height: 8px; background: var(--red); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }

.two-col-list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; }

/* Service Sidebar */
.sidebar-card { background: var(--charcoal); border-radius: 6px; padding: 28px; margin-bottom: 20px; }
.sidebar-card h3 { font-family: var(--display); font-size: 18px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 16px; }
.sidebar-card .btn { width: 100%; margin-bottom: 10px; justify-content: center; }
.sidebar-contact { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
.sidebar-contact a { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.70); text-decoration: none; transition: color 0.2s; }
.sidebar-contact a:hover { color: var(--white); }
.sidebar-contact a svg { color: var(--red); flex-shrink: 0; }

.sidebar-info { background: var(--light-gray); border: 1px solid var(--border); border-radius: 6px; padding: 22px; margin-bottom: 20px; }
.sidebar-info h4 { font-family: var(--display); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--charcoal); margin-bottom: 14px; }
.sidebar-info ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-info ul li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text); }
.sidebar-info ul li svg { color: var(--red); flex-shrink: 0; }

.other-services { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 22px; }
.other-services h4 { font-family: var(--display); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--charcoal); margin-bottom: 14px; }
.other-services ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.other-services ul li a { display: flex; align-items: center; gap: 8px; padding: 9px 10px; font-size: 14px; color: var(--text); text-decoration: none; border-radius: 4px; transition: background 0.15s, color 0.15s; font-weight: 500; }
.other-services ul li a:hover { background: rgba(196,30,30,0.07); color: var(--red); }
.other-services ul li a.current { color: var(--red); font-weight: 700; background: rgba(196,30,30,0.07); }
.other-services ul li a svg { color: var(--text-muted); flex-shrink: 0; }

/* ── FACILITIES / AREAS GRID ─────────────────────── */
.two-col-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 16px; }
.info-card { background: var(--light-gray); border: 1px solid var(--border); border-radius: 6px; padding: 20px; }
.info-card h4 { font-family: var(--display); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--charcoal); margin-bottom: 10px; }
.info-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.info-card ul li { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 7px; }
.info-card ul li::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

/* ── FAQ ACCORDION ───────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.faq-item { border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; cursor: pointer; background: var(--white); transition: background 0.15s; font-weight: 600; font-size: 15px; color: var(--charcoal); gap: 16px; }
.faq-question:hover { background: var(--light-gray); }
.faq-question svg { flex-shrink: 0; transition: transform 0.25s; color: var(--red); }
.faq-item.open .faq-question { background: var(--light-gray); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; font-size: 15px; line-height: 1.7; color: var(--text-muted); }
.faq-item.open .faq-answer { max-height: 400px; padding: 4px 22px 18px; }

/* ── CTA BAND ─────────────────────────────────────── */
.cta-band { padding: 72px 0; background: var(--red); position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.cta-band::after { content: ''; position: absolute; left: -60px; bottom: -80px; width: 280px; height: 280px; background: rgba(0,0,0,0.08); border-radius: 50%; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text h2 { font-family: var(--display); font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 8px; }
.cta-text p { font-size: 16px; color: rgba(255,255,255,0.85); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── SERVICES OVERVIEW GRID ──────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card { border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: all 0.25s ease; text-decoration: none; color: inherit; display: block; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--red); }
.service-card-accent { height: 4px; background: var(--red); }
.service-card-body { padding: 28px; }
.service-icon { width: 48px; height: 48px; background: rgba(196,30,30,0.08); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--red); margin-bottom: 18px; }
.service-card h3 { font-family: var(--display); font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 10px; color: var(--charcoal); }
.service-card p { font-size: 14px; line-height: 1.65; color: var(--text-muted); margin-bottom: 18px; }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1px; font-family: var(--display); }
.service-card-link svg { transition: transform 0.2s; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ── STATS ROW ───────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 48px 0; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-family: var(--display); font-size: 40px; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 6px; }
.stat-item span { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }

/* ── REVIEWS ─────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.review-card { background: var(--light-gray); border-radius: 6px; padding: 28px; border: 1px solid var(--border); position: relative; }
.review-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-size: 72px; color: var(--red); opacity: 0.12; line-height: 1; font-family: Georgia, serif; font-weight: 700; }
.review-stars { color: #F5A623; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 15px; line-height: 1.65; color: var(--text); margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar { width: 38px; height: 38px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 15px; font-family: var(--display); flex-shrink: 0; }
.reviewer-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--charcoal); }
.reviewer-info span { font-size: 13px; color: var(--text-muted); }

/* ── AREAS ───────────────────────────────────────── */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 10px; }
.area-chip { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 10px 16px; text-align: center; font-size: 14px; font-weight: 600; color: var(--text); transition: all 0.2s; }
.area-chip:hover { border-color: var(--red); color: var(--red); }
.area-chip.featured { background: var(--red); color: var(--white); border-color: var(--red); }

/* ── PRODUCTS GRID ───────────────────────────────── */
.products-section { padding: 80px 0; }
.product-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 72px; padding-bottom: 72px; border-bottom: 1px solid var(--border); }
.product-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.product-row.reverse { direction: rtl; }
.product-row.reverse > * { direction: ltr; }
.product-img { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; background: var(--light-gray); }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-content {}
.product-content .section-label { margin-bottom: 8px; }
.product-content h2 { font-family: var(--display); font-size: clamp(24px, 3vw, 36px); font-weight: 800; text-transform: uppercase; color: var(--charcoal); letter-spacing: -0.3px; margin-bottom: 14px; line-height: 1.1; }
.product-content p { font-size: 15px; line-height: 1.75; color: var(--text-muted); margin-bottom: 20px; }
.product-brands { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.brand-tag { background: var(--light-gray); border: 1px solid var(--border); border-radius: 3px; padding: 5px 12px; font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── ABOUT PAGE ──────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 440px; gap: 64px; align-items: start; padding: 72px 0; }
.about-img { border-radius: 8px; overflow: hidden; aspect-ratio: 3/4; background: var(--light-gray); position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-badge { position: absolute; bottom: -16px; right: -16px; background: var(--red); color: var(--white); padding: 16px 20px; border-radius: 6px; font-family: var(--display); text-align: center; box-shadow: 0 8px 32px rgba(196,30,30,0.45); }
.about-badge strong { display: block; font-size: 32px; font-weight: 800; line-height: 1; }
.about-badge span { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; opacity: 0.9; }
.about-content h2 { font-family: var(--display); font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; text-transform: uppercase; letter-spacing: -0.5px; color: var(--charcoal); margin-bottom: 16px; line-height: 1.05; }
.about-content p { font-size: 16px; line-height: 1.75; color: var(--text); margin-bottom: 18px; }
.about-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.about-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text); line-height: 1.5; }
.about-features li svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* ── CONTACT ─────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 56px; padding: 72px 0; align-items: start; }
.contact-form-wrap {}
.contact-form-wrap h2 { font-family: var(--display); font-size: 32px; font-weight: 800; text-transform: uppercase; color: var(--charcoal); margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--charcoal); margin-bottom: 7px; font-family: var(--display); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; font-size: 15px; font-family: var(--body);
  border: 1.5px solid var(--border); border-radius: var(--radius); background: var(--white);
  color: var(--text); transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(196,30,30,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; font-size: 16px; padding: 16px; cursor: pointer; font-family: var(--body); margin-top: 8px; }

.contact-info-wrap {}
.contact-info-card { background: var(--charcoal); border-radius: 6px; padding: 32px; margin-bottom: 20px; }
.contact-info-card h3 { font-family: var(--display); font-size: 20px; font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail-icon { width: 40px; height: 40px; background: rgba(196,30,30,0.2); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; }
.contact-detail-text strong { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.55); margin-bottom: 3px; font-family: var(--display); }
.contact-detail-text a, .contact-detail-text p { font-size: 15px; color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.contact-detail-text a:hover { color: var(--white); }

.hours-card { background: var(--light-gray); border: 1px solid var(--border); border-radius: 6px; padding: 24px; }
.hours-card h4 { font-family: var(--display); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--charcoal); margin-bottom: 16px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-row span { color: var(--text-muted); }
.hours-row strong { color: var(--charcoal); }
.open-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(39,174,96,0.12); border: 1px solid rgba(39,174,96,0.3); color: #3a9e5e; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.open-badge::before { content: ''; width: 6px; height: 6px; background: #3a9e5e; border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ── FOOTER ──────────────────────────────────────── */
footer { background: var(--dark); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; text-decoration: none; }
.footer-logo img { height: 48px; width: auto; }
.footer-logo-text strong { font-family: var(--display); font-size: 16px; font-weight: 800; color: var(--white); text-transform: uppercase; display: block; letter-spacing: 0.5px; }
.footer-logo-text span { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 8px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-contact-item svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-col h4 { font-family: var(--display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-hours-text { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-bottom { padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .service-layout .container { grid-template-columns: 1fr; }
  .service-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .sidebar-card { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-row { grid-template-columns: 1fr; }
  .product-row.reverse { direction: ltr; }
  .product-img { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-call { display: none; }
  .hamburger { display: flex; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .two-col-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .trust-strip .container { gap: 16px; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { width: 100%; max-width: 320px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .topbar .container { flex-direction: column; gap: 6px; }
  .topbar-left { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .two-col-list { grid-template-columns: 1fr; }
  .sidebar-info, .other-services { grid-column: auto; }
  .service-sidebar { grid-template-columns: 1fr; }
}

/* ── MOBILE TOPBAR + NAV STICKY FIX ─────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 101;
}

nav {
  position: sticky;
  top: 46px; /* height of topbar */
  z-index: 100;
}

/* ── MOBILE NAV LOGO TEXT FIX ────────────────────── */
@media (max-width: 640px) {
  .nav-logo-text strong {
    font-size: 14px;
    letter-spacing: 0;
  }
  .nav-logo-text span {
    font-size: 10px;
  }
  .nav-logo img {
    height: 42px;
  }
  .topbar {
    top: 0;
  }
  nav {
    top: 68px; /* taller topbar on small screens due to wrapping */
  }
}

@media (max-width: 900px) {
  .topbar {
    top: 0;
  }
  nav {
    top: 44px;
  }
}

@media (max-width: 640px) {
  .topbar-extra { display: none !important; }
  .topbar .container {
    flex-direction: row !important;
    justify-content: space-between;
    gap: 0;
  }
  .topbar-left { gap: 0; }
  nav { top: 38px; }
}

/* ============================================================
   BRAND POLISH — CACHE VALLEY FIRE PROTECTION
   ============================================================ */

/* ── Smoother button transitions ── */
.btn {
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
}

/* ── Button ripple feel on click ── */
.btn:active { transform: scale(0.97) !important; }

/* ── Focus states for accessibility ── */
.btn:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── Service cards — smoother lift ── */
.service-card {
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.22s ease !important;
}

/* ── FAQ items — smoother open/close ── */
.faq-answer {
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.35s ease !important;
}

/* ── Section label pulse on first view ── */
.section-label {
  position: relative;
}

/* ── Consistent section padding ── */
section { scroll-margin-top: 120px; }

/* ── Better image rendering ── */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
img[loading="lazy"] {
  transition: opacity 0.3s ease;
}

/* ── Topbar link hover fix ── */
.topbar-phone {
  transition: background 0.15s ease, transform 0.15s ease;
}
.topbar-phone:hover {
  transform: translateY(-1px);
}

/* ── Nav dropdown smoother ── */
.dropdown-menu {
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ── Review cards hover ── */
.review-card {
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* ── Area chips ── */
.area-chip {
  transition: all 0.15s ease;
  cursor: default;
}

/* ── Back to top button ── */
#backToTop:hover {
  background: var(--red-dark) !important;
  transform: translateY(-2px);
}
#backToTop:active {
  transform: scale(0.95);
}

/* ── Selection color matches brand ── */
::selection {
  background: rgba(196, 30, 30, 0.2);
  color: var(--charcoal);
}

/* ── Scrollbar branding (webkit) ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-dark); }

/* ── Print styles ── */
@media print {
  .topbar, nav, .cta-band, #backToTop { display: none !important; }
  body { font-size: 12pt; color: black; }
  a { color: black; text-decoration: underline; }
}

/* ── Reduced motion respect ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── High contrast mode support ── */
@media (prefers-contrast: high) {
  :root { --red: #B00000; }
  .btn-primary { border: 2px solid white; }
}

/* ── Mobile bottom CTA sticky bar ── */
.mobile-sticky-cta { display: none; }

@media (max-width: 640px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--charcoal);
    border-top: 2px solid var(--red);
    padding: 10px 16px;
    gap: 10px;
  }
  .mobile-sticky-cta a {
    flex: 1;
    justify-content: center;
    font-size: 14px;
    padding: 12px 8px;
  }
  /* Push page content up so sticky bar doesn't cover content */
  body { padding-bottom: 68px; }
}

/* ============================================================
   V1.0.1 — CTA CLEANUP
   ============================================================ */

/* ── Nav phone number — plain text, not a button ── */
.nav-phone-text {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color 0.2s;
  letter-spacing: 0.3px;
}
.nav-phone-text:hover { color: var(--red); }

/* ── Desktop: hide Call Now in hero, show Get a Quote ── */
/* ── Mobile: hide Get a Quote in hero, show Call Now ── */
@media (min-width: 641px) {
  .hero-call-btn { display: none !important; }
  .cta-call-btn { display: none !important; }
}
@media (max-width: 640px) {
  .hero-contact-btn { display: none !important; }
  .cta-contact-btn { display: none !important; }
  /* Topbar: cleaner on mobile — one CTA only */
  .nav-phone-text { display: none; }
  /* Remove bottom padding since sticky bar is gone */
  body { padding-bottom: 0 !important; }
}

/* ── Topbar on mobile: tighter, one CTA ── */
@media (max-width: 640px) {
  .topbar .container {
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    padding: 6px 16px;
  }
  .topbar-left span:not(:first-child) { display: none; }
}

/* ── Mobile nav: keep Schedule button, remove phone ── */
@media (max-width: 900px) {
  .nav-phone-text { display: none; }
}

/* ── Service page hero Call buttons — desktop hide ── */
@media (min-width: 641px) {
  .page-hero-actions .btn-outline[href^="tel:"] { display: none !important; }
}
@media (max-width: 640px) {
  .page-hero-actions .btn-outline:not([href^="tel:"]) {
    /* Keep schedule button on mobile */
  }
}

/* ============================================================
   V1.0.3 FINAL POLISH TWEAKS
   ============================================================ */

/* ── Improve service card minimum height consistency ── */
.service-card-body {
  display: flex;
  flex-direction: column;
}
.service-card-body p {
  flex: 1;
}

/* ── Improve FAQ answer line height on mobile ── */
@media (max-width: 640px) {
  .faq-answer { font-size: 14px; }
  .faq-question { font-size: 14px; padding: 14px 16px; }
}

/* ── Better two-col list on tablet ── */
@media (max-width: 768px) {
  .two-col-list { grid-template-columns: 1fr; }
  .two-col-cards { grid-template-columns: 1fr; }
}

/* ── Tighter hero on small desktop ── */
@media (max-width: 1024px) and (min-width: 641px) {
  .hero h1 { font-size: clamp(36px, 5vw, 56px); }
}

/* ── Improve footer on very small screens ── */
@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-logo-text strong { font-size: 13px; }
}

/* ── Smooth page transitions ── */
main, section, .container {
  animation: none;
}

/* ── Better visited link color ── */
a:visited:not(.btn):not(.nav-links a):not(.footer-col a) {
  color: inherit;
}

/* ── Improve contact form on mobile ── */
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .form-group input, .form-group select, .form-group textarea {
    font-size: 16px; /* Prevents iOS zoom on focus */
  }
}

/* ── Prevent text overflow on small screens ── */
h1, h2, h3 {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ── Better product row on mobile ── */
@media (max-width: 768px) {
  .product-row { grid-template-columns: 1fr; gap: 24px; }
  .product-row.reverse { direction: ltr; }
}
