/* ============================================================
   Charlotte City Towing LLC — Main Stylesheet
   charlottecitytowing.com | 704-774-0117
   ============================================================ */

/* === RESET & BASE === */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px;-webkit-text-size-adjust:100%}
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;color:#222;background:#fff;line-height:1.6;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font-family:inherit}
input,textarea,select{font-family:inherit;font-size:1rem}

/* === CSS VARIABLES === */
:root{
  --red:#CC0000;
  --red-dark:#a30000;
  --red-hover:#e60000;
  --red-light:rgba(204,0,0,.12);
  --black:#000;
  --dark:#111;
  --dark2:#1a1a1a;
  --dark3:#222;
  --gray:#555;
  --gray2:#777;
  --gray3:#999;
  --light:#f5f5f5;
  --white:#fff;
  --border:#e2e2e2;
  --border-dark:#2a2a2a;
  --shadow:0 4px 20px rgba(0,0,0,.1);
  --shadow-md:0 6px 30px rgba(0,0,0,.15);
  --shadow-lg:0 10px 50px rgba(0,0,0,.2);
  --shadow-red:0 4px 24px rgba(204,0,0,.3);
  --shadow-red-lg:0 8px 40px rgba(204,0,0,.4);
  --radius:8px;
  --radius-lg:14px;
  --radius-xl:20px;
  --transition:.2s ease;
  --header-h:72px;
  --max-w:1200px;
}

/* === CONTAINER === */
.container{width:100%;max-width:var(--max-w);margin:0 auto;padding:0 24px}
.container-sm{width:100%;max-width:800px;margin:0 auto;padding:0 24px}
.container-lg{width:100%;max-width:1440px;margin:0 auto;padding:0 24px}

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5{line-height:1.2;font-weight:800}
h1{font-size:clamp(2rem,5vw,3.5rem)}
h2{font-size:clamp(1.6rem,3.5vw,2.4rem)}
h3{font-size:clamp(1.15rem,2.5vw,1.5rem)}
h4{font-size:1.05rem}
p{margin-bottom:1rem}
p:last-child{margin-bottom:0}
strong{font-weight:700}
.text-red{color:var(--red)}
.text-white{color:var(--white)}
.text-center{text-align:center}
.text-gray{color:var(--gray)}
.lead{font-size:1.15rem;line-height:1.75}

/* === BUTTONS === */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:15px 28px;border-radius:var(--radius);font-weight:700;font-size:1rem;
  cursor:pointer;transition:var(--transition);border:2px solid transparent;
  white-space:nowrap;text-decoration:none;line-height:1.2;
}
.btn:focus-visible{outline:3px solid var(--red);outline-offset:2px}
.btn-primary{background:var(--red);color:#fff;border-color:var(--red);box-shadow:var(--shadow-red)}
.btn-primary:hover{background:var(--red-dark);border-color:var(--red-dark);transform:translateY(-2px);box-shadow:var(--shadow-red-lg)}
.btn-secondary{background:transparent;color:#fff;border-color:rgba(255,255,255,.5)}
.btn-secondary:hover{background:rgba(255,255,255,.1);border-color:#fff}
.btn-dark{background:#111;color:#fff;border-color:#333}
.btn-dark:hover{background:#222;transform:translateY(-2px)}
.btn-outline-red{background:transparent;color:var(--red);border-color:var(--red)}
.btn-outline-red:hover{background:var(--red);color:#fff}
.btn-lg{padding:18px 36px;font-size:1.1rem}
.btn-xl{padding:22px 44px;font-size:1.25rem;font-weight:900;letter-spacing:.3px}
.btn-full{width:100%;justify-content:center}

/* Call-specific button */
.btn-call{
  background:var(--red);color:#fff;border-color:var(--red);
  font-size:1.2rem;font-weight:900;padding:18px 32px;
  box-shadow:var(--shadow-red);letter-spacing:.2px;
}
.btn-call:hover{background:var(--red-dark);transform:translateY(-2px);box-shadow:var(--shadow-red-lg)}
.btn-call .phone-icon{font-size:1.1em}

/* Location button */
.btn-locate{
  background:#1c1c1c;color:#fff;border-color:#3a3a3a;
  font-weight:700;padding:18px 28px;font-size:1rem;
}
.btn-locate:hover{background:#2a2a2a;transform:translateY(-2px)}

/* Pulse animation for urgency */
.btn-pulse{animation:btnPulse 2.5s infinite}
@keyframes btnPulse{
  0%,100%{box-shadow:0 4px 24px rgba(204,0,0,.3)}
  50%{box-shadow:0 4px 40px rgba(204,0,0,.6),0 0 0 8px rgba(204,0,0,.1)}
}

/* === TOP EMERGENCY BAR === */
.top-bar{background:var(--red);color:#fff;text-align:center;padding:9px 20px;font-size:.875rem;font-weight:600;line-height:1.4}
.top-bar a{color:#fff;font-weight:800;text-decoration:underline}
.top-bar-inner{display:flex;align-items:center;justify-content:center;gap:20px;flex-wrap:wrap}

/* === HEADER === */
.site-header{
  position:sticky;top:0;z-index:1000;
  background:var(--black);
  border-bottom:2px solid #1a1a1a;
  box-shadow:0 2px 16px rgba(0,0,0,.6);
  height:var(--header-h);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:var(--header-h);gap:16px}

/* Logo */
.logo{display:flex;align-items:center;gap:10px;color:#fff;font-weight:900;flex-shrink:0;line-height:1.2}
.logo-icon{background:var(--red);width:42px;height:42px;border-radius:var(--radius);display:flex;align-items:center;justify-content:center;font-size:1.5rem;flex-shrink:0}
.logo-text{font-size:1.1rem;line-height:1.15}
.logo-text .accent{color:var(--red)}
.logo-text .sub{display:block;font-size:.7rem;font-weight:600;color:#888;letter-spacing:.5px;text-transform:uppercase}

/* Desktop nav */
.main-nav{display:flex;align-items:center;gap:2px}
.nav-link{color:#bbb;padding:8px 12px;border-radius:var(--radius);font-weight:600;font-size:.875rem;transition:var(--transition)}
.nav-link:hover,.nav-link.active{color:#fff;background:rgba(255,255,255,.07)}

.nav-dropdown{position:relative}
.nav-dropdown-trigger{display:flex;align-items:center;gap:4px;cursor:pointer}
.dropdown-caret{font-size:.65rem;transition:var(--transition)}
.nav-dropdown:hover .dropdown-caret{transform:rotate(180deg)}
.dropdown-menu{
  position:absolute;top:calc(100% + 8px);left:0;
  background:#1a1a1a;border:1px solid #2a2a2a;border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);min-width:230px;padding:8px 0;
  opacity:0;visibility:hidden;transform:translateY(-8px);transition:var(--transition);z-index:200;
}
.nav-dropdown:hover .dropdown-menu,.nav-dropdown:focus-within .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown-link{display:block;padding:10px 18px;color:#bbb;font-size:.875rem;font-weight:500;transition:var(--transition)}
.dropdown-link:hover{color:#fff;background:rgba(255,255,255,.05);padding-left:22px}

/* Header phone/CTA */
.header-actions{display:flex;align-items:center;gap:12px;flex-shrink:0}
.header-phone{display:flex;align-items:center;gap:6px;color:#fff;font-weight:900;font-size:1.15rem;white-space:nowrap}
.header-phone:hover{color:var(--red)}
.header-cta{background:var(--red);color:#fff;padding:10px 20px;border-radius:var(--radius);font-weight:800;font-size:.875rem;white-space:nowrap;transition:var(--transition)}
.header-cta:hover{background:var(--red-dark)}

/* === MOBILE NAV === */
.hamburger{display:none;background:none;border:none;cursor:pointer;padding:8px;flex-direction:column;gap:5px;align-items:center}
.hamburger span{display:block;width:22px;height:2px;background:#fff;border-radius:2px;transition:var(--transition)}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobile-nav{
  display:none;position:fixed;
  top:var(--header-h);left:0;right:0;bottom:0;
  background:#111;z-index:999;overflow-y:auto;
  padding:16px 0 32px;
}
.mobile-nav.open{display:block}
.mobile-nav-call{
  display:flex;align-items:center;justify-content:center;gap:10px;
  background:var(--red);color:#fff;font-size:1.3rem;font-weight:900;
  padding:20px;margin:16px 20px;border-radius:var(--radius-lg);
}
.mobile-section-title{color:#555;font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;padding:16px 24px 6px}
.mobile-nav-link{display:block;padding:13px 24px;color:#ccc;font-weight:600;font-size:1rem;border-bottom:1px solid #1e1e1e;transition:var(--transition)}
.mobile-nav-link:hover{color:#fff;background:rgba(255,255,255,.04)}
.mobile-locate{display:flex;align-items:center;justify-content:center;gap:8px;background:#1c1c1c;color:#fff;font-size:1rem;font-weight:700;padding:16px;margin:16px 20px;border-radius:var(--radius-lg);border:1px solid #333}

/* === HERO === */
.hero{
  background:linear-gradient(145deg,#000 0%,#1a0000 45%,#110000 100%);
  color:#fff;padding:88px 0 80px;position:relative;overflow:hidden;
}
.hero::before{
  content:'';position:absolute;top:0;left:0;right:0;bottom:0;
  background:radial-gradient(ellipse at 75% 40%,rgba(204,0,0,.18) 0%,transparent 60%);
}
.hero::after{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:var(--red)}
.hero-content{position:relative;z-index:1;max-width:860px}

.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(204,0,0,.18);border:1px solid rgba(204,0,0,.35);
  color:#ff8080;padding:7px 16px;border-radius:50px;
  font-size:.8rem;font-weight:800;text-transform:uppercase;letter-spacing:.8px;margin-bottom:22px;
}
.badge-dot{width:7px;height:7px;background:#ff4444;border-radius:50%;animation:livePulse 2s infinite}
@keyframes livePulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.6;transform:scale(1.3)}}

.hero h1{color:#fff;margin-bottom:18px;text-shadow:0 2px 12px rgba(0,0,0,.6)}
.hero h1 em{color:var(--red);font-style:normal}
.hero-sub{font-size:clamp(1rem,2.5vw,1.2rem);color:#c0c0c0;margin-bottom:36px;max-width:680px;line-height:1.75}

.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:36px;align-items:center}
.hero-divider{color:#555;font-size:.875rem}

.hero-trust{display:flex;flex-wrap:wrap;gap:20px;margin-bottom:28px}
.trust-item{display:flex;align-items:center;gap:7px;color:#aaa;font-size:.875rem;font-weight:600}
.trust-check{color:var(--red)}

.hero-rating{display:flex;align-items:center;gap:10px;margin-top:8px}
.hero-stars{color:#FFD700;font-size:1rem;letter-spacing:1px}
.hero-rating-text{color:#888;font-size:.875rem}
.hero-rating strong{color:#ccc}

/* === RED EMERGENCY STRIP === */
.emergency-strip{background:var(--red);padding:18px 0}
.emergency-strip-inner{
  display:flex;align-items:center;justify-content:center;
  gap:28px;flex-wrap:wrap;
}
.emergency-strip-text{color:#fff;font-weight:700;font-size:1rem}
.emergency-strip-phone{
  display:flex;align-items:center;gap:8px;
  color:#fff;font-size:1.8rem;font-weight:900;letter-spacing:-.5px;
}
.emergency-strip-phone:hover{opacity:.9;text-decoration:underline}
.emergency-strip-24{
  display:flex;align-items:center;gap:6px;
  background:rgba(0,0,0,.2);padding:8px 16px;border-radius:50px;
  color:#fff;font-size:.875rem;font-weight:700;
}

/* === SECTIONS === */
.section{padding:80px 0}
.section-sm{padding:56px 0}
.section-dark{background:var(--dark2);color:#fff}
.section-light{background:var(--light)}
.section-black{background:var(--black);color:#fff}
.section-red{background:var(--red);color:#fff}

.section-header{margin-bottom:48px}
.section-header.centered{text-align:center}
.section-header.centered .section-desc{margin:0 auto}

.eyebrow{
  display:inline-block;color:var(--red);font-size:.75rem;font-weight:800;
  text-transform:uppercase;letter-spacing:2px;margin-bottom:10px;
}
.section-dark .eyebrow{color:#ff7070}
.section-title{margin-bottom:14px}
.section-desc{color:var(--gray2);font-size:1.05rem;max-width:620px;line-height:1.7}
.section-dark .section-desc{color:#999}

/* === SERVICES GRID === */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:20px;
}
.service-card{
  background:#fff;border:1.5px solid var(--border);border-radius:var(--radius-lg);
  padding:26px 22px;display:flex;flex-direction:column;gap:10px;
  transition:var(--transition);
}
.service-card:hover{
  border-color:var(--red);box-shadow:var(--shadow-red);transform:translateY(-4px);
}
.service-card-icon{
  width:50px;height:50px;background:var(--red-light);border-radius:var(--radius);
  display:flex;align-items:center;justify-content:center;font-size:1.5rem;
  transition:var(--transition);
}
.service-card:hover .service-card-icon{background:var(--red);filter:grayscale(0)}
.service-card h3{font-size:1.05rem;color:#111;margin:0}
.service-card p{color:var(--gray);font-size:.9rem;flex:1;line-height:1.6;margin:0}
.service-card-cta{
  display:flex;align-items:center;justify-content:space-between;
  margin-top:4px;
}
.service-card-link{color:var(--red);font-weight:700;font-size:.875rem;display:flex;align-items:center;gap:4px;transition:var(--transition)}
.service-card-link:hover{gap:8px}
.service-card-call{color:#888;font-size:.8rem;font-weight:600}
.service-card-call a{color:var(--red);font-weight:700}

/* === FEATURES / WHY US === */
.features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:30px;
}
.feature{display:flex;flex-direction:column;gap:12px}
.feature-icon{
  width:54px;height:54px;background:var(--red);border-radius:var(--radius);
  display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;color:#fff;flex-shrink:0;
}
.feature h3{font-size:1.05rem;margin:0}
.feature p{color:#aaa;font-size:.925rem;line-height:1.65;margin:0}

/* Numbers/stats strip */
.stats-strip{background:#111;border-top:1px solid #1e1e1e;border-bottom:1px solid #1e1e1e}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  text-align:center;
}
.stat-item{
  padding:32px 20px;border-right:1px solid #1e1e1e;
}
.stat-item:last-child{border-right:none}
.stat-num{display:block;font-size:2.4rem;font-weight:900;color:var(--red);line-height:1;margin-bottom:4px}
.stat-label{color:#888;font-size:.875rem;font-weight:600}

/* === ABOUT === */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.about-text h2{margin-bottom:18px}
.about-text p{color:var(--gray);margin-bottom:14px;line-height:1.75}
.about-highlights{display:flex;flex-direction:column;gap:14px;margin:24px 0 28px}
.about-highlight{display:flex;align-items:flex-start;gap:12px}
.about-highlight-icon{width:28px;height:28px;background:var(--red-light);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.9rem;flex-shrink:0;margin-top:2px}
.about-highlight-text h4{font-size:.95rem;margin-bottom:2px}
.about-highlight-text p{font-size:.875rem;color:var(--gray2);margin:0}

.trust-badges-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}
.trust-badge{
  display:flex;align-items:center;gap:7px;
  background:#fff;border:1.5px solid var(--border);border-radius:50px;
  padding:8px 16px;font-size:.825rem;font-weight:700;color:#222;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
}
.trust-badge-icon{font-size:.9rem}
.about-image{
  background:linear-gradient(145deg,#111 0%,#2a0000 100%);
  border-radius:var(--radius-xl);min-height:420px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:16px;color:#fff;text-align:center;padding:40px;
  border:1px solid #2a0000;
}
.about-image-truck{font-size:5rem;line-height:1}
.about-image h3{font-size:1.3rem;color:#fff}
.about-image p{color:#888;font-size:.9rem;margin:0}
.about-image .phone-big{
  font-size:1.8rem;font-weight:900;color:var(--red);
  margin-top:8px;display:block;
}

/* === SERVICE AREA === */
.area-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
.area-intro{color:var(--gray);margin-bottom:24px;line-height:1.75}
.cities-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.city-link{
  display:flex;align-items:center;gap:9px;
  background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);
  padding:13px 16px;color:#222;font-weight:600;font-size:.9rem;
  transition:var(--transition);
}
.city-link:hover{border-color:var(--red);color:var(--red);transform:translateX(3px)}
.city-pin{color:var(--red);font-size:1rem}
.city-state{color:#999;font-size:.8rem;margin-left:auto}

.map-embed{
  background:#e8e8e8;border-radius:var(--radius-lg);
  overflow:hidden;height:380px;position:relative;
}
.map-embed iframe{width:100%;height:100%;border:0}
.map-fallback{
  width:100%;height:100%;display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:14px;color:var(--gray2);
  background:linear-gradient(135deg,#eee 0%,#ddd 100%);
}
.map-fallback .map-icon{font-size:3rem}
.map-fallback p{font-size:.95rem;text-align:center}
.map-fallback a{color:var(--red);font-weight:700}

/* === REVIEWS === */
.reviews-top{display:flex;align-items:center;gap:24px;margin-bottom:40px;flex-wrap:wrap}
.aggregate-rating{
  display:flex;align-items:center;gap:16px;
  background:#fff;border:1.5px solid var(--border);border-radius:var(--radius-lg);
  padding:20px 28px;box-shadow:var(--shadow);
}
.agg-number{font-size:3rem;font-weight:900;color:#111;line-height:1}
.agg-right{}
.agg-stars{color:#FFD700;font-size:1.4rem;letter-spacing:2px;margin-bottom:4px}
.agg-label{font-size:.85rem;color:var(--gray);font-weight:600}
.google-badge{
  display:flex;align-items:center;gap:8px;color:var(--gray);font-size:.875rem;font-weight:600;
}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:20px;
}
.review-card{
  background:#fff;border:1.5px solid var(--border);border-radius:var(--radius-lg);
  padding:24px;transition:var(--transition);
}
.review-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.review-stars{color:#FFD700;font-size:1.1rem;letter-spacing:1px;margin-bottom:12px}
.review-text{color:var(--gray);font-size:.925rem;line-height:1.72;font-style:italic;margin-bottom:16px}
.reviewer{display:flex;align-items:center;gap:12px}
.reviewer-avatar{
  width:40px;height:40px;border-radius:50%;
  background:linear-gradient(135deg,var(--red),#660000);
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-weight:800;font-size:1rem;flex-shrink:0;
}
.reviewer-name{font-weight:700;font-size:.925rem;margin-bottom:2px}
.reviewer-meta{font-size:.8rem;color:var(--gray2)}
.review-date{color:var(--gray3);font-size:.8rem;margin-left:auto;align-self:flex-start}

/* === FAQ === */
.faq-list{max-width:840px;margin:0 auto}
.faq-item{border-bottom:1px solid var(--border)}
.faq-btn{
  width:100%;background:none;border:none;text-align:left;
  padding:20px 0;font-size:1rem;font-weight:700;color:#111;
  cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:16px;
  transition:var(--transition);
}
.faq-btn:hover{color:var(--red)}
.faq-icon{
  font-size:1.4rem;font-weight:400;color:var(--red);
  flex-shrink:0;transition:transform .2s ease;line-height:1;
}
.faq-item.active .faq-icon{transform:rotate(45deg)}
.faq-answer{
  max-height:0;overflow:hidden;transition:max-height .3s ease,padding .3s ease;
}
.faq-answer-inner{padding-bottom:20px;color:var(--gray);line-height:1.75;font-size:.95rem}
.faq-answer-inner a{color:var(--red);font-weight:700}
.faq-item.active .faq-answer{max-height:500px}

/* === CONTACT / LOCATION FINDER === */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
.contact-info-cards{display:flex;flex-direction:column;gap:16px}
.contact-card{
  display:flex;align-items:flex-start;gap:16px;
  background:#fff;border:1.5px solid var(--border);border-radius:var(--radius-lg);
  padding:20px;
}
.contact-card-icon{
  width:46px;height:46px;background:var(--red-light);border-radius:var(--radius);
  display:flex;align-items:center;justify-content:center;font-size:1.3rem;flex-shrink:0;
}
.contact-card-text label{display:block;font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:#999;margin-bottom:4px}
.contact-card-text a,.contact-card-text span{font-size:1.1rem;font-weight:700;color:#111}
.contact-card-text a:hover{color:var(--red)}
.contact-card-text .sub{font-size:.85rem;color:var(--gray2);font-weight:500;display:block;margin-top:2px}

.location-finder-box{
  background:var(--light);border-radius:var(--radius-lg);border:1.5px solid var(--border);
  padding:32px;
}
.location-finder-box h3{margin-bottom:10px}
.location-finder-box .finder-desc{color:var(--gray);font-size:.95rem;margin-bottom:20px;line-height:1.65}
.finder-btns{display:flex;gap:12px;flex-wrap:wrap}

#location-result{
  display:none;margin-top:20px;padding:18px;
  background:#fff;border-radius:var(--radius);border:1.5px solid var(--border);
  font-size:.9rem;line-height:1.65;
}
#location-result.show{display:block}
#location-result strong{color:#111}
#location-result a{color:var(--red);font-weight:700}
.loc-result-links{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.loc-result-links .btn{padding:11px 18px;font-size:.875rem}

/* === CTA SECTION === */
.cta-section{
  background:linear-gradient(145deg,#000 0%,#1a0000 100%);
  color:#fff;padding:88px 0;text-align:center;position:relative;overflow:hidden;
}
.cta-section::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 50% 50%,rgba(204,0,0,.25) 0%,transparent 65%);
}
.cta-content{position:relative;z-index:1}
.cta-section h2{color:#fff;margin-bottom:14px}
.cta-section p{color:#bbb;font-size:1.1rem;margin-bottom:8px}
.cta-phone{
  display:block;font-size:clamp(2rem,5vw,3.5rem);font-weight:900;
  color:#fff;margin:24px 0;letter-spacing:-.5px;line-height:1;
}
.cta-phone:hover{color:#ff8080}
.cta-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-top:8px}
.cta-small{color:#888;font-size:.85rem;margin-top:16px}

/* === FOOTER === */
.site-footer{background:var(--black);color:#fff;padding:56px 0 0}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:48px;
  border-bottom:1px solid #1a1a1a;
}
.footer-brand .logo{margin-bottom:14px}
.footer-tagline{color:#777;font-size:.9rem;line-height:1.7;margin-bottom:16px}
.footer-nap{color:#888;font-size:.9rem;line-height:2}
.footer-nap strong{color:#bbb}
.footer-nap a{color:#999}
.footer-nap a:hover{color:var(--red)}

.footer-col h4{
  color:#fff;font-size:.8rem;font-weight:800;text-transform:uppercase;
  letter-spacing:1.5px;margin-bottom:16px;
}
.footer-links{display:flex;flex-direction:column;gap:7px}
.footer-links a{color:#777;font-size:.875rem;transition:var(--transition)}
.footer-links a:hover{color:#ccc}

.footer-bottom{
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px;
  padding:20px 0;
}
.footer-copy{color:#555;font-size:.8rem}
.footer-trust-row{display:flex;gap:16px;flex-wrap:wrap}
.footer-trust-row span{color:#444;font-size:.8rem}

/* === BREADCRUMBS === */
.breadcrumbs{background:#111;border-bottom:1px solid #1a1a1a;padding:12px 0}
.bc-list{display:flex;align-items:center;gap:6px;flex-wrap:wrap}
.bc-list li{display:flex;align-items:center;gap:6px;font-size:.825rem}
.bc-list li+li::before{content:'›';color:#444}
.bc-list a{color:#666}
.bc-list a:hover{color:#ccc}
.bc-list .bc-current{color:#ccc;font-weight:600}

/* === INNER PAGE HERO === */
.page-hero{
  background:linear-gradient(145deg,#000 0%,#1a0000 100%);
  color:#fff;padding:56px 0;border-bottom:3px solid var(--red);
  position:relative;overflow:hidden;
}
.page-hero::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 70% 50%,rgba(204,0,0,.15) 0%,transparent 60%);
}
.page-hero-content{position:relative;z-index:1}
.page-hero h1{margin-bottom:12px}
.page-hero .page-hero-sub{color:#bbb;font-size:1.05rem;max-width:600px;line-height:1.7}
.page-hero-ctas{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}

/* === SERVICE PAGE === */
.service-content{max-width:820px}
.service-content h2{margin:32px 0 14px}
.service-content h3{margin:24px 0 10px}
.service-content p{color:var(--gray);line-height:1.78;margin-bottom:14px}
.service-content ul{margin:0 0 16px 0}
.service-content ul li{
  display:flex;align-items:flex-start;gap:10px;
  padding:6px 0;color:var(--gray);font-size:.95rem;border-bottom:1px solid #f0f0f0;
}
.service-content ul li::before{content:'✓';color:var(--red);font-weight:800;flex-shrink:0}

.service-sidebar{
  background:var(--light);border-radius:var(--radius-lg);
  border:1.5px solid var(--border);padding:28px;
  position:sticky;top:calc(var(--header-h) + 20px);
}
.service-sidebar h3{margin-bottom:16px;font-size:1.1rem}
.sidebar-cta-phone{
  display:flex;align-items:center;gap:8px;
  background:var(--red);color:#fff;padding:16px;border-radius:var(--radius);
  font-size:1.2rem;font-weight:900;margin-bottom:14px;justify-content:center;
  transition:var(--transition);
}
.sidebar-cta-phone:hover{background:var(--red-dark)}
.sidebar-locate{
  display:flex;align-items:center;justify-content:center;gap:8px;
  background:#1c1c1c;color:#fff;padding:14px;border-radius:var(--radius);
  font-weight:700;font-size:.95rem;transition:var(--transition);cursor:pointer;border:none;width:100%;
}
.sidebar-locate:hover{background:#2a2a2a}
.sidebar-services h4{font-size:.8rem;text-transform:uppercase;letter-spacing:1px;color:#999;margin:20px 0 10px}
.sidebar-service-link{
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 0;color:#222;font-size:.9rem;font-weight:600;border-bottom:1px solid #eee;
  transition:var(--transition);
}
.sidebar-service-link:hover{color:var(--red)}
.sidebar-trust{margin-top:20px;padding-top:20px;border-top:1px solid #e0e0e0}
.sidebar-trust p{font-size:.8rem;color:#999;text-align:center;margin:0}
.sidebar-trust-icons{display:flex;justify-content:center;gap:8px;margin-top:8px;flex-wrap:wrap}
.sidebar-trust-icon{font-size:.75rem;color:#777;background:#eee;padding:5px 10px;border-radius:50px}

.content-with-sidebar{display:grid;grid-template-columns:1fr 340px;gap:48px;align-items:start}

/* Related services */
.related-services{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:12px;
}

/* === LOCATION PAGES === */
.location-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px}
.location-feature-list{display:flex;flex-direction:column;gap:14px}
.location-feature{
  display:flex;align-items:flex-start;gap:14px;
  background:#fff;border:1.5px solid var(--border);border-radius:var(--radius);padding:16px;
  transition:var(--transition);
}
.location-feature:hover{border-color:var(--red);box-shadow:0 4px 16px rgba(204,0,0,.12)}
.lf-icon{font-size:1.4rem;flex-shrink:0;margin-top:2px}
.lf-text h4{margin-bottom:3px;font-size:.975rem}
.lf-text p{font-size:.875rem;color:var(--gray2);margin:0;line-height:1.55}

.nearby-cities{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}
.nearby-city{
  display:flex;align-items:center;gap:6px;
  background:#fff;border:1px solid var(--border);border-radius:50px;
  padding:7px 14px;font-size:.85rem;font-weight:600;color:#222;
  transition:var(--transition);
}
.nearby-city:hover{border-color:var(--red);color:var(--red)}

/* === GOOGLE ADS LANDING PAGE === */
.ads-page{background:#000;min-height:100vh;color:#fff}
.ads-header-bar{
  background:#000;border-bottom:2px solid #1a1a1a;
  padding:14px 0;text-align:center;
}
.ads-header-bar .logo{justify-content:center}

.ads-hero{
  background:linear-gradient(145deg,#000 0%,#1a0000 100%);
  padding:64px 0;text-align:center;border-bottom:3px solid var(--red);
}
.ads-hero h1{color:#fff;font-size:clamp(1.8rem,4.5vw,3rem);margin-bottom:14px}
.ads-hero p{color:#bbb;font-size:1.1rem;margin-bottom:32px;max-width:560px;margin-left:auto;margin-right:auto}

.ads-cta-card{
  background:rgba(255,255,255,.04);border:1.5px solid rgba(255,255,255,.12);
  border-radius:var(--radius-xl);padding:36px 32px;max-width:520px;margin:0 auto;
}
.ads-cta-card .call-label{font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;color:#888;margin-bottom:8px}
.ads-phone-big{
  display:block;font-size:clamp(2rem,5vw,2.8rem);font-weight:900;color:#fff;
  margin:12px 0 20px;letter-spacing:-.5px;
}
.ads-phone-big:hover{color:var(--red)}
.ads-trust-row{display:flex;flex-wrap:wrap;justify-content:center;gap:16px;margin-top:20px}
.ads-trust-item{display:flex;align-items:center;gap:6px;font-size:.8rem;color:#777;font-weight:600}
.ads-trust-item .check{color:var(--red)}

.ads-features{
  background:#0a0a0a;border-top:1px solid #1a1a1a;padding:48px 0;
}
.ads-features-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:24px;
  max-width:900px;margin:0 auto;
}
.ads-feature{
  background:#111;border:1px solid #1e1e1e;border-radius:var(--radius-lg);
  padding:22px;text-align:center;
}
.ads-feature-icon{font-size:2rem;margin-bottom:10px}
.ads-feature h3{font-size:1rem;color:#fff;margin-bottom:6px}
.ads-feature p{font-size:.875rem;color:#777;margin:0;line-height:1.55}

.ads-footer{
  background:#000;border-top:1px solid #1a1a1a;
  padding:20px 0;text-align:center;
}
.ads-footer p{color:#555;font-size:.8rem}

/* === SITEMAP PAGE === */
.sitemap-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:32px;
}
.sitemap-section h3{font-size:1rem;margin-bottom:12px;color:var(--red)}
.sitemap-section a{display:block;padding:6px 0;color:var(--gray);font-size:.9rem;border-bottom:1px solid #f0f0f0}
.sitemap-section a:hover{color:var(--red)}

/* === UTILITY CLASSES === */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.visually-hidden{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.nowrap{white-space:nowrap}
.mt-4{margin-top:16px}
.mt-8{margin-top:32px}
.mb-0{margin-bottom:0}
.gap-section{margin-top:80px}
.divider{height:1px;background:var(--border);margin:32px 0}
.divider-dark{height:1px;background:#1e1e1e;margin:32px 0}

/* === ANIMATIONS === */
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.fade-up{animation:fadeUp .5s ease forwards}

/* === RESPONSIVE === */
@media(max-width:1100px){
  .about-grid{grid-template-columns:1fr;gap:40px}
  .about-image{min-height:240px}
  .area-grid{grid-template-columns:1fr;gap:36px}
  .contact-grid{grid-template-columns:1fr;gap:36px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
  .content-with-sidebar{grid-template-columns:1fr}
  .service-sidebar{position:relative;top:0}
  .location-grid{grid-template-columns:1fr;gap:32px}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .stat-item:nth-child(2){border-right:none}
  .stat-item:nth-child(3){border-top:1px solid #1e1e1e;border-right:1px solid #1e1e1e}
  .stat-item:nth-child(4){border-top:1px solid #1e1e1e;border-right:none}
}
@media(max-width:768px){
  :root{--header-h:64px}
  .main-nav{display:none}
  .header-actions .header-phone{display:none}
  .hamburger{display:flex}
  .section{padding:60px 0}
  .hero{padding:60px 0}
  .hero-trust{gap:14px}
  .services-grid{grid-template-columns:1fr 1fr}
  .features-grid{grid-template-columns:1fr 1fr}
  .reviews-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .emergency-strip-inner{flex-direction:column;gap:10px}
  .emergency-strip-phone{font-size:1.4rem}
  .cities-grid{grid-template-columns:1fr}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:520px){
  .services-grid{grid-template-columns:1fr}
  .features-grid{grid-template-columns:1fr}
  .hero-ctas{flex-direction:column}
  .hero-ctas .btn{width:100%;justify-content:center}
  .footer-grid{grid-template-columns:1fr}
  .cta-actions{flex-direction:column;align-items:center}
  .cta-actions .btn{width:100%;max-width:360px}
  .page-hero-ctas{flex-direction:column}
  .page-hero-ctas .btn{width:100%;max-width:100%;justify-content:center}
  .ads-cta-card{padding:24px 20px}
  .finder-btns{flex-direction:column}
  .finder-btns .btn{width:100%;justify-content:center}
  .about-stats{grid-template-columns:1fr 1fr}
}

/* === ADS LANDING PAGE (LIGHT THEME) === */
.ads-page .ads-header{
  background:#fff;border-bottom:2px solid #eee;padding:14px 24px;
  display:flex;justify-content:space-between;align-items:center;
  position:sticky;top:0;z-index:100;box-shadow:0 2px 8px rgba(0,0,0,.08);
}
.ads-page .ads-header .logo{text-decoration:none}
.ads-page .ads-header-phone{
  font-size:1.1rem;font-weight:800;color:var(--red);text-decoration:none;
}
.ads-page .ads-header-phone:hover{text-decoration:underline}
.ads-page .ads-hero{
  background:linear-gradient(135deg,#111 0%,#2a0000 100%);
  padding:72px 24px;text-align:center;border-bottom:4px solid var(--red);
}
.ads-page .ads-badge{
  display:inline-flex;align-items:center;gap:6px;
  background:rgba(204,0,0,.15);border:1px solid rgba(204,0,0,.4);
  color:#ff6b6b;font-size:.78rem;font-weight:700;letter-spacing:.8px;
  text-transform:uppercase;padding:5px 14px;border-radius:20px;margin-bottom:20px;
}
.ads-page .ads-hero h1{color:#fff;font-size:clamp(2rem,5vw,3.2rem);margin-bottom:14px;font-weight:900}
.ads-page .ads-hero-sub{color:#bbb;font-size:1.05rem;max-width:560px;margin:0 auto 32px;line-height:1.6}
.ads-page .ads-hero-note{color:#888;font-size:.85rem;margin-top:14px}
.ads-trust-bar{background:#f8f8f8;border-bottom:1px solid #e8e8e8;padding:18px 0}
.ads-trust-inner{
  display:flex;flex-wrap:wrap;justify-content:center;gap:24px 40px;
}
.ads-trust-item{display:flex;align-items:center;gap:8px;font-size:.85rem;font-weight:700;color:#333}
.ads-trust-icon{font-size:1.1rem}
.ads-body{padding:56px 0}
.ads-body-inner{display:grid;grid-template-columns:1fr 340px;gap:48px;align-items:start}
.ads-main h2{font-size:1.6rem;font-weight:800;margin-bottom:24px;color:#111}
.ads-features{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.ads-feature{background:#f9f9f9;border:1px solid #e8e8e8;border-radius:10px;padding:22px}
.ads-feature h3{font-size:1rem;font-weight:700;color:#111;margin-bottom:8px}
.ads-feature p{font-size:.9rem;color:#555;margin:0;line-height:1.55}
.ads-services-list{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:1fr 1fr;gap:8px 24px}
.ads-services-list li{font-size:.95rem;color:#333;padding:6px 0;border-bottom:1px solid #f0f0f0}
.ads-cta-block{
  background:var(--red);border-radius:16px;padding:40px;text-align:center;margin-top:40px;
  color:#fff;
}
.ads-cta-block h2{color:#fff;font-size:1.6rem;margin-bottom:12px}
.ads-cta-block p{color:rgba(255,255,255,.85);margin-bottom:24px}
.ads-sidebar .ads-cta-box{
  background:#111;border-radius:12px;padding:28px;text-align:center;position:sticky;top:90px;
}
.ads-sidebar .ads-cta-box h3{color:#fff;font-size:1.1rem;margin-bottom:8px}
.ads-cta-phone{
  display:block;font-size:1.8rem;font-weight:900;color:var(--red);
  text-decoration:none;line-height:1.2;margin:8px 0 4px;
}
.ads-cta-phone:hover{color:#ff3333}
.ads-sidebar .ads-cta-box p{color:#888;font-size:.85rem;margin-bottom:0}
.ads-reviews{background:#f8f8f8;padding:56px 0;border-top:1px solid #eee}
.ads-reviews h2{text-align:center;font-size:1.6rem;margin-bottom:32px}
.ads-reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.ads-review{background:#fff;border-radius:10px;padding:24px;border:1px solid #e8e8e8}
.ads-review p{font-size:.9rem;color:#444;line-height:1.6;margin-bottom:12px;font-style:italic}
.ads-review-author{font-size:.8rem;font-weight:700;color:#111}
.ads-final-cta{background:#111;padding:72px 0;color:#fff}
.ads-final-cta h2{color:#fff;font-size:clamp(1.6rem,3.5vw,2.4rem);margin-bottom:12px}
.ads-final-cta p{color:#bbb;margin-bottom:28px;font-size:1rem}
@media(max-width:1000px){
  .ads-body-inner{grid-template-columns:1fr}
  .ads-sidebar .ads-cta-box{position:relative;top:0}
  .ads-features{grid-template-columns:1fr}
  .ads-reviews-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .ads-page .ads-header-phone{font-size:.95rem}
  .ads-services-list{grid-template-columns:1fr}
  .ads-reviews-grid{grid-template-columns:1fr}
  .ads-trust-inner{gap:12px 20px}
}

/* === CONTACT PAGE CARDS === */
.contact-info-cards{
  display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-top:24px;
}
.contact-info-card{
  background:#f8f8f8;border:1px solid #e8e8e8;border-radius:12px;padding:24px;
}
.contact-info-icon{font-size:2rem;margin-bottom:10px}
.contact-info-card h3{font-size:1rem;font-weight:700;margin-bottom:8px;color:#111}
.contact-info-card p{font-size:.9rem;color:#555;margin:4px 0;line-height:1.5}
.contact-phone-link{
  display:block;font-size:1.6rem;font-weight:900;color:var(--red);
  text-decoration:none;margin:4px 0 8px;
}
.contact-phone-link:hover{color:var(--red-dark)}
@media(max-width:768px){
  .contact-info-cards{grid-template-columns:1fr}
}

/* === PRINT === */
@media print{
  .site-header,.mobile-nav,.hamburger,.top-bar,.emergency-strip{display:none}
  body{color:#000;background:#fff}
  a[href]::after{content:" ("attr(href)")"}
}
