/* ============================================================
   GUARANTEED PLUMBING — WebbDesignz Master Plumbing Theme
   Approved layout: v3 mockup April 2026
   Brand: #8B1A1A red · #0D0D0D black · #FFFFFF white
   Mobile breakpoint: 900px
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Barlow:wght@400;500;600&display=swap');

/* --- RESET & ROOT ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #8B1A1A;
  --red-dark:  #5C0F0F;
  --red-light: #A52020;
  --black:     #0D0D0D;
  --dark:      #1A1A1A;
  --smoke:     #F8F7F5;
  --white:     #FFFFFF;
  --silver:    #C8C8C8;
  --text:      #1A1A1A;
  --muted:     #555555;
  --border:    #E2E2E2;
  --radius:    4px;
  --shadow:    0 2px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 6px 32px rgba(0,0,0,0.16);
  --trans:     0.20s ease;
  --font-head: 'Barlow Condensed', 'Impact', 'Arial Black', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--white); }
@media (max-width: 900px) { body { padding-bottom: 72px; } }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--red-dark); }
ul { list-style: none; }

/* --- CONTAINER --------------------------------------------- */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px;  margin: 0 auto; padding: 0 24px; }

/* --- TOP BAR ----------------------------------------------- */
.top-bar { display: none; }

/* --- HEADER ------------------------------------------------- */
.site-header { background: var(--white); border-bottom: 3px solid var(--red); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 20px; }

.site-logo { background: transparent; padding: 0; border-radius: var(--radius); display: flex; align-items: center; text-decoration: none; flex-shrink: 0; overflow: hidden; }
.site-logo img,
.site-logo .custom-logo,
.site-logo .custom-logo img { height: 40px !important; width: auto !important; max-height: 40px !important; max-width: 160px !important; object-fit: contain !important; display: block !important; }
.logo-text-fallback { font-family: var(--font-head); font-size: 17px; font-weight: 900; color: var(--silver); text-transform: uppercase; letter-spacing: 2px; line-height: 1.1; background: var(--black); padding: 7px 14px; border-radius: var(--radius); }

.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav > a, .nav-dropdown > .nav-link {
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  color: var(--text); padding: 7px 12px; border-radius: var(--radius);
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: all var(--trans); cursor: pointer;
  display: flex; align-items: center; gap: 4px;
}
.site-nav > a:hover, .nav-dropdown:hover > .nav-link { color: var(--red); background: var(--smoke); }
.site-nav > a.current { color: var(--red); }
.caret { display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; margin-left: 2px; }

.nav-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: calc(100% + 4px); left: 0; background: var(--white); border: 1px solid var(--border); border-top: 2px solid var(--red); border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow-lg); min-width: 160px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all var(--trans); z-index: 200; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 16px; font-family: var(--font-head); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text); border-bottom: 1px solid var(--border); transition: all var(--trans); }
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--red); background: var(--smoke); }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-call { background: var(--red); color: var(--white); font-family: var(--font-head); font-size: 15px; font-weight: 900; padding: 9px 18px; border-radius: var(--radius); text-transform: uppercase; letter-spacing: 2px; display: flex; align-items: center; gap: 8px; text-decoration: none; transition: background var(--trans); white-space: nowrap; }
.btn-call:hover { background: var(--red-dark); color: var(--white); }
.btn-call-icon { background: var(--black); border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-call-icon svg { width: 11px; height: 11px; }
.menu-toggle { display: none; background: none; border: 2px solid var(--red); color: var(--red); padding: 7px; border-radius: var(--radius); cursor: pointer; align-items: center; justify-content: center; }
.menu-toggle svg { width: 18px; height: 18px; display: block; }

.mobile-nav { display: none; background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; color: rgba(255,255,255,0.82); padding: 13px 24px; border-bottom: 1px solid rgba(255,255,255,0.06); font-family: var(--font-head); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; transition: all var(--trans); }
.mobile-nav a:hover { background: var(--red); color: var(--white); }
.mobile-nav .mobile-cta-link { background: var(--red); text-align: center; font-size: 18px; letter-spacing: 2px; border-bottom: none; margin: 10px 24px; border-radius: var(--radius); }
.mobile-nav .mobile-cta-link:hover { background: var(--red-dark); }

/* --- BUTTONS ----------------------------------------------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; font-family: var(--font-head); font-size: 16px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; border-radius: var(--radius); border: none; cursor: pointer; transition: all var(--trans); text-decoration: none; -webkit-font-smoothing: antialiased; }
.btn-primary   { background: var(--red);   color: #FFFFFF; text-shadow: none; }
.btn-primary:hover { background: var(--red-dark); color: #FFFFFF; transform: translateY(-1px); }
.btn-black     { background: var(--black); color: #FFFFFF; text-shadow: none; }
.btn-black:hover { background: #222; color: #FFFFFF; }
.btn-outline   { background: transparent; color: #FFFFFF; border: 2px solid rgba(255,255,255,0.6); text-shadow: none; }
.btn-outline:hover { background: rgba(255,255,255,0.10); color: #FFFFFF; }
.btn-lg { padding: 16px 32px; font-size: 18px; }
.btn-sm { padding: 9px 18px; font-size: 13px; letter-spacing: 1px; }

/* --- HERO --------------------------------------------------- */
.hero { position: relative; min-height: 580px; display: flex; align-items: center; overflow: hidden; background: var(--black); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center right; background-repeat: no-repeat; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,13,13,0.94) 0%, rgba(13,13,13,0.82) 38%, rgba(13,13,13,0.40) 65%, rgba(13,13,13,0.10) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 580px; padding: 80px 0; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 7px; background: rgba(139,26,26,0.20); border: 1px solid var(--red); color: #DDAAAA; font-family: var(--font-head); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.hero h1 { font-family: var(--font-head); font-size: clamp(44px, 6.5vw, 72px); font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: 3px; line-height: 0.93; margin-bottom: 20px; }
.hero h1 span { color: var(--red); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* --- EMERGENCY STRIP --------------------------------------- */
.emergency-strip { background: var(--red); padding: 11px 0; }
.emergency-strip .container { display: flex; align-items: center; justify-content: center; gap: 14px; }
.emergency-strip .es-text { font-family: var(--font-head); font-size: 15px; font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: 2px; white-space: nowrap; }
.emergency-strip .es-divider { color: rgba(255,255,255,0.30); font-size: 20px; line-height: 1; }
.emergency-strip .es-phone { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: #FFD0D0; letter-spacing: 2px; white-space: nowrap; text-decoration: none; }
.emergency-strip .es-phone:hover { color: var(--white); }

/* --- SECTIONS ---------------------------------------------- */
.section    { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.section-dark  { background: var(--black); color: var(--white); }
.section-smoke { background: var(--smoke); }
.section-red   { background: var(--red);   color: var(--white); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-label { display: inline-block; font-family: var(--font-head); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--red); margin-bottom: 10px; }
.section-dark .section-label, .section-red .section-label { color: rgba(255,200,200,0.80); }
.section-header h2 { font-family: var(--font-head); font-size: clamp(28px, 4.5vw, 44px); font-weight: 900; color: var(--text); text-transform: uppercase; letter-spacing: 3px; line-height: 1.0; }
.section-dark .section-header h2, .section-red .section-header h2 { color: var(--white); }
.section-header p { font-size: 16px; color: var(--muted); max-width: 560px; margin: 14px auto 0; line-height: 1.7; }
.section-dark .section-header p, .section-red .section-header p { color: rgba(255,255,255,0.68); }

/* --- SERVICE CARDS ----------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: center; }
.service-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 5px 5px 0px var(--black);
    transition: transform var(--trans), box-shadow var(--trans);
    background: var(--black);
    text-decoration: none;
    cursor: pointer;
    display: block;
}
.service-card:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0px var(--red); }
.service-card-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.4s ease;
    background-color: var(--dark);
}
.service-card:hover .service-card-bg { transform: scale(1.05); }
.service-card-overlay { display: none; }
.service-card-body { display: none; }
.service-card-wrap { display: flex; flex-direction: column; align-items: center; width: 100%; }
.service-card-wrap .service-card { width: 100%; }
.service-card-label { font-family: var(--font-head); font-size: 17px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; padding: 12px 8px 6px; text-align: center !important; width: 100%; margin: 0; display: block; }
.service-card-label a { color: var(--black); text-decoration: none; text-align: center; display: block; width: 100%; transition: color var(--trans); }
.service-card-label a:hover { color: var(--red); }
.service-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.service-card p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 14px; }
.card-link { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 5px; transition: gap var(--trans); }
.service-card:hover .card-link { gap: 9px; color: #FFD0D0; }

/* --- WHY US ------------------------------------------------ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.why-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 28px 18px; text-align: center; transition: border-color var(--trans); }
.why-item:hover { border-color: var(--red); }
.why-number { font-family: var(--font-head); font-size: 48px; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 8px; }
.why-item h3 { font-family: var(--font-head); font-size: 15px; font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.why-item p { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.55; }

/* --- PROCESS ----------------------------------------------- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 34px; left: 12.5%; right: 12.5%; height: 2px; background: var(--border); z-index: 0; }
.process-step { text-align: center; padding: 0 14px 28px; position: relative; z-index: 1; }
.step-num { width: 68px; height: 68px; background: var(--red); color: var(--white); font-family: var(--font-head); font-size: 30px; font-weight: 900; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--red); }
.process-step h3 { font-family: var(--font-head); font-size: 16px; font-weight: 900; color: var(--text); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 7px; }
.process-step p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* --- REVIEWS ----------------------------------------------- */
.reviews-intro { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }
.review-score { font-family: var(--font-head); font-size: 72px; font-weight: 900; color: var(--red); line-height: 1; }
.review-meta .stars { color: #C8960A; font-size: 22px; letter-spacing: 3px; display: block; margin-bottom: 4px; }
.review-meta span { font-size: 13px; color: var(--muted); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--smoke); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: box-shadow var(--trans); }
.review-card:hover { box-shadow: var(--shadow); }
.review-stars { color: #C8960A; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 38px; height: 38px; background: var(--red); color: var(--white); font-family: var(--font-head); font-size: 15px; font-weight: 900; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 13px; color: var(--text); }
.review-loc  { font-size: 11px; color: var(--muted); }

/* --- SERVICE AREA ------------------------------------------ */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 28px; }
.map-wrap iframe { display: block; }
.city-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.city-link { background: var(--smoke); color: var(--text); border: 1px solid var(--border); border-radius: 20px; padding: 7px 18px; font-size: 13px; font-weight: 600; transition: all var(--trans); }
.city-link:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* --- FAQ ---------------------------------------------------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; gap: 16px; }
.faq-question h3 { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.4; }
.faq-toggle { width: 26px; height: 26px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform var(--trans); }
.faq-toggle svg { width: 12px; height: 12px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 0 18px; font-size: 15px; color: var(--muted); line-height: 1.7; }

/* --- CTA BAND ---------------------------------------------- */
.cta-band { background: var(--red); padding: 68px 0; text-align: center; }
.cta-band h2 { font-family: var(--font-head); font-size: clamp(26px, 4vw, 42px); font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 28px; }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- FOOTER ------------------------------------------------- */
.site-footer { background: var(--black); color: rgba(255,255,255,0.65); border-top: 3px solid var(--red); }
.footer-main { display: grid; grid-template-columns: 240px 1fr 1fr 1fr 1fr; gap: 0; padding: 52px 0 44px; border-bottom: 1px solid rgba(255,255,255,0.07); }

.footer-brand { padding-right: 32px; border-right: 1px solid rgba(255,255,255,0.06); }
.footer-logo { background: transparent; border: none; padding: 0; display: inline-block; margin-bottom: 14px; max-width: 180px; }
.footer-logo img,
.footer-logo .custom-logo { height: 40px !important; width: auto !important; max-width: 100% !important; display: block; }
.footer-logo-text { font-family: var(--font-head); font-size: 13px; font-weight: 900; color: var(--silver); text-transform: uppercase; letter-spacing: 2px; line-height: 1.15; }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.65; margin-bottom: 14px; }
.footer-phone { display: flex; align-items: center; gap: 7px; margin-bottom: 14px; }
.footer-phone svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; }
.footer-phone a { font-family: var(--font-head); font-size: 17px; font-weight: 900; color: var(--white); letter-spacing: 1.5px; }
.footer-phone a:hover { color: rgba(255,200,200,0.90); }
.footer-socials { display: flex; gap: 7px; }
.footer-social { width: 30px; height: 30px; background: rgba(255,255,255,0.07); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; transition: background var(--trans); }
.footer-social:hover { background: var(--red); }
.footer-social svg { width: 13px; height: 13px; fill: rgba(255,255,255,0.55); }
.footer-social:hover svg { fill: var(--white); }

.footer-col { padding: 0 20px; }
.footer-col h4 { font-family: var(--font-head); font-size: 12px; font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; padding-bottom: 8px; border-bottom: 2px solid var(--red); display: inline-block; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 12px; color: rgba(255,255,255,0.42); transition: color var(--trans); }
.footer-col ul li a:hover { color: rgba(255,200,200,0.85); }

.footer-contact-row { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
.footer-contact-row svg { width: 13px; height: 13px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact-row span, .footer-contact-row a { font-size: 12px; color: rgba(255,255,255,0.42); line-height: 1.5; }
.footer-contact-row a:hover { color: rgba(255,200,200,0.85); }

.footer-city-strip { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); text-align: center; }
.footer-city-strip .city-headline { font-family: var(--font-head); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.22); margin-bottom: 7px; }
.footer-city-strip .cities { font-size: 11px; color: rgba(255,255,255,0.28); line-height: 2.0; }
.footer-city-strip .cities a { color: rgba(255,255,255,0.28); transition: color var(--trans); }
.footer-city-strip .cities a:hover { color: rgba(255,200,200,0.70); }

.footer-bottom { padding: 12px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 11px; color: rgba(255,255,255,0.65); }
.footer-bottom a { color: rgba(255,255,255,0.75); }
.footer-bottom a:hover { color: var(--white); }

/* --- MOBILE STICKY CTA ------------------------------------- */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--black); border-top: 2px solid var(--red); padding: 10px 20px; z-index: 2000; align-items: center; justify-content: space-between; box-shadow: 0 -4px 20px rgba(0,0,0,0.35); }
.mobile-cta-bar .cta-label { display: flex; flex-direction: column; }
.mobile-cta-bar .cta-label span:first-child { font-size: 10px; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 1px; }
.mobile-cta-bar .cta-label span:last-child { font-family: var(--font-head); font-size: 16px; font-weight: 900; color: var(--white); letter-spacing: 1.5px; }
.mobile-cta-bar .cta-btns { display: flex; gap: 8px; }

/* --- PAGE HERO (inner pages) ------------------------------- */
.page-hero { background: linear-gradient(110deg, var(--red-dark) 0%, var(--black) 100%); padding: 56px 0; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(28px, 5vw, 48px); font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; line-height: 1.0; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.68); max-width: 520px; }
.breadcrumb { font-size: 11px; color: rgba(255,255,255,0.42); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,0.50); }
.breadcrumb a:hover { color: rgba(255,200,200,0.80); }
.breadcrumb span { margin: 0 7px; }

/* --- SERVICE DETAIL ---------------------------------------- */
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.service-content h2 { font-family: var(--font-head); font-size: 26px; font-weight: 900; color: var(--text); text-transform: uppercase; letter-spacing: 1px; margin: 32px 0 14px; }
.service-content h2:first-child { margin-top: 0; }
.service-content p { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 14px; }
.service-content ul { margin-bottom: 18px; }
.service-content ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text); line-height: 1.6; margin-bottom: 9px; }
.service-content ul li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.service-sidebar { position: sticky; top: 90px; }
.sidebar-card { background: var(--smoke); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.sidebar-card.sidebar-cta { background: var(--red); border-color: var(--red); text-align: center; }
.sidebar-cta h3 { font-family: var(--font-head); font-size: 19px; font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.sidebar-cta p  { font-size: 13px; color: rgba(255,255,255,0.78); margin-bottom: 16px; }
.sidebar-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 900; color: var(--text); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.sidebar-svc-list li a { display: flex; align-items: center; gap: 7px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; font-weight: 600; color: var(--text); transition: color var(--trans); }
.sidebar-svc-list li:last-child a { border-bottom: none; }
.sidebar-svc-list li a:hover { color: var(--red); }
.sidebar-svc-list li a svg { width: 12px; height: 12px; color: var(--red); flex-shrink: 0; }

/* --- BLOG --------------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all var(--trans); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-thumb { height: 200px; background: var(--smoke); overflow: hidden; position: relative; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-cat { position: absolute; top: 12px; left: 12px; background: var(--red); color: var(--white); font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; }
.blog-body { padding: 22px; }
.blog-meta { font-size: 11px; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 900; color: var(--text); text-transform: uppercase; line-height: 1.2; margin-bottom: 8px; }
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--red); }
.blog-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.blog-read-more { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1px; }

/* --- CONTACT ----------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.contact-info h2 { font-family: var(--font-head); font-size: 30px; font-weight: 900; color: var(--text); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.contact-info p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.contact-icon { width: 42px; height: 42px; background: rgba(139,26,26,0.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; color: var(--red); }
.contact-detail h4 { font-weight: 700; font-size: 13px; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.contact-detail p, .contact-detail a { font-size: 14px; color: var(--muted); margin: 0; }
.contact-detail a:hover { color: var(--red); }
.contact-form-wrap { background: var(--smoke); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.form-title { font-family: var(--font-head); font-size: 20px; font-weight: 900; color: var(--text); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 15px; color: var(--text); background: var(--white); transition: border-color var(--trans); -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(139,26,26,0.10); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* --- ABOUT -------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.about-badge { position: absolute; bottom: 18px; left: 18px; background: var(--red); color: var(--white); padding: 12px 18px; border-radius: var(--radius); }
.about-badge .num { font-family: var(--font-head); font-size: 34px; font-weight: 900; color: #FFD0D0; line-height: 1; }
.about-badge .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.78); }
.about-text h2 { font-family: var(--font-head); font-size: 36px; font-weight: 900; color: var(--text); text-transform: uppercase; letter-spacing: 2px; line-height: 1.05; margin-bottom: 14px; }
.about-text h2 span { color: var(--red); }
.about-text p { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 14px; }
.credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.cred-tag { display: flex; align-items: center; gap: 6px; background: var(--smoke); border: 1px solid var(--border); padding: 7px 13px; border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--text); }
.cred-tag svg { color: var(--red); width: 13px; height: 13px; }

/* --- E-E-A-T OWNER SECTION --------------------------------- */
.eeat-grid { display: grid; grid-template-columns: 340px 1fr; gap: 52px; align-items: center; }
.eeat-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.eeat-photo img { width: 100%; height: 380px; object-fit: cover; display: block; }
.eeat-name { font-family: var(--font-head); font-size: clamp(26px,3.5vw,38px); font-weight: 900; color: var(--text); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; line-height: 1.1; }
.eeat-bio { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 24px; }
.eeat-credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 22px; }
.eeat-cred { display: flex; align-items: flex-start; gap: 12px; background: var(--smoke); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; }
.eeat-cred-icon { font-size: 20px; flex-shrink: 0; }
.eeat-cred strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.eeat-cred span { font-size: 11px; color: var(--muted); }
.eeat-award { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; padding: 9px 18px; border-radius: var(--radius); font-family: var(--font-head); font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }

/* --- AUTHORITY TEXT SECTION -------------------------------- */
.authority-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.authority-list { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 28px; }

/* --- PAGINATION -------------------------------------------- */
.pagination { display: flex; gap: 7px; justify-content: center; padding: 36px 0; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 13px; font-weight: 700; color: var(--text); transition: all var(--trans); }
.pagination a:hover, .pagination .current { background: var(--red); color: var(--white); border-color: var(--red); }

/* --- CITY PAGE --------------------------------------------- */
.city-hero-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.city-badge { background: rgba(255,255,255,0.10); color: var(--white); padding: 5px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border: 1px solid rgba(255,255,255,0.18); }
.city-intro-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 44px; align-items: center; margin-bottom: 56px; }
.city-intro-text h2 { font-family: var(--font-head); font-size: 28px; font-weight: 900; color: var(--text); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.city-intro-text p { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 12px; }
.city-stat-box { background: var(--red); border-radius: var(--radius); padding: 28px; color: var(--white); text-align: center; }
.city-stat { margin-bottom: 18px; }
.city-stat:last-child { margin-bottom: 0; }
.city-stat .num { font-family: var(--font-head); font-size: 40px; font-weight: 900; color: #FFD0D0; line-height: 1; }
.city-stat .lbl { font-size: 11px; color: rgba(255,255,255,0.72); text-transform: uppercase; letter-spacing: 1px; }

/* --- RESPONSIVE -------------------------------------------- */
@media (max-width: 900px) {
  .top-bar    { display: none; }
  .site-nav   { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { padding: 10px 0; }
  .site-logo img { height: 40px; }
  .hero { min-height: 460px; }
  .hero-content { padding: 56px 0; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.70) 100%); }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .eeat-grid { grid-template-columns: 1fr; gap: 28px; }
  .eeat-photo img { height: 260px; }
  .eeat-credentials { grid-template-columns: 1fr; }
  .authority-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; padding: 36px 0 28px; }
  .footer-brand { border-right: none; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 24px; grid-column: 1 / -1; }
  .footer-col { padding: 0 8px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .city-intro-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .cta-band-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .mobile-cta-bar { display: flex; }
}

@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 22px 18px; }
}