/* ============================================================
   DRAIN MAN PLUMBING — Main Stylesheet
   Color palette: #006d7a (dark teal), #00a3b5 (mid teal), #00c8dc (light teal)
   ============================================================ */

:root {
  --primary: #006d7a;
  --secondary: #00a3b5;
  --accent: #00c8dc;
  --accent-light: #e0f7fa;
  --dark: #00363e;
  --white: #ffffff;
  --text: #1a2b2c;
  --text-muted: #5a7070;
  --bg-light: #f4fbfc;
  --border: #d0edf0;
  --gradient: linear-gradient(135deg, #006d7a 0%, #00a3b5 50%, #00c8dc 100%);
  --gradient-dark: linear-gradient(135deg, #00363e 0%, #006d7a 100%);
  --shadow: 0 4px 24px rgba(0,109,122,0.15);
  --shadow-lg: 0 12px 48px rgba(0,109,122,0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--secondary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient); color: var(--white);
  box-shadow: 0 4px 20px rgba(0,163,181,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px); color: var(--white);
  box-shadow: 0 8px 30px rgba(0,163,181,0.5);
}
.btn-outline {
  background: transparent; color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-dark {
  background: var(--primary); color: var(--white);
}
.btn-dark:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }
.btn-full { width: 100%; display: flex; }

/* ─── HEADER ─── */
.site-header { position: sticky; top: 0; z-index: 1000; }

.header-top {
  background: var(--dark); color: var(--white);
  padding: 8px 0; font-size: 0.85rem;
}
.header-top-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.header-contact-items { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.header-phone {
  color: var(--accent); font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; gap: 6px;
}
.header-phone:hover { color: var(--white); }
.header-sep { color: rgba(255,255,255,0.3); }
.header-badge { color: rgba(255,255,255,0.8); font-size: 0.8rem; }
.header-social { display: flex; align-items: center; gap: 12px; }
.header-social a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.header-social a:hover { color: var(--accent); }

.main-nav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,109,122,0.12);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; gap: 20px;
}
.nav-logo img { width: 130px; height: auto; }

.nav-links {
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.nav-links > li { position: relative; }
.nav-link {
  display: block; padding: 10px 14px; color: var(--text);
  font-weight: 600; font-size: 0.9rem; border-radius: 6px;
  transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-active { color: var(--primary); background: var(--accent-light); }

.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: var(--transition);
  border-top: 3px solid var(--secondary); z-index: 200; padding: 8px;
}
.dropdown a {
  display: block; padding: 10px 16px; color: var(--text);
  font-size: 0.88rem; border-radius: 6px; transition: var(--transition);
}
.dropdown a:hover { background: var(--accent-light); color: var(--primary); padding-left: 22px; }

.nav-cta {
  background: var(--gradient); color: var(--white) !important;
  padding: 10px 20px !important; border-radius: 50px !important;
  font-weight: 700 !important; font-size: 0.88rem !important;
  white-space: nowrap; box-shadow: 0 4px 16px rgba(0,163,181,0.35);
  transition: var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,163,181,0.45); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 25px; height: 2px;
  background: var(--primary); border-radius: 2px; transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  background: var(--gradient-dark);
  color: var(--white); position: relative; overflow: hidden;
  padding: 80px 0 100px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300a3b5' fill-opacity='0.07'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,200,220,0.15); border: 1px solid rgba(0,200,220,0.3);
  color: var(--accent); padding: 8px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 20px;
}
.hero h1 span { color: var(--accent); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 30px; max-width: 540px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-head); font-size: 2rem; font-weight: 700;
  color: var(--accent); display: block;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

.hero-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; color: var(--text);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-card h3 {
  font-family: var(--font-head); color: var(--primary);
  font-size: 1.3rem; margin-bottom: 20px; text-align: center;
}
.hero-card .contact-form { }
.hero-card .form-group { margin-bottom: 12px; }
.hero-card input, .hero-card select, .hero-card textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 0.95rem; font-family: var(--font-body);
  transition: var(--transition); background: var(--bg-light);
}
.hero-card input:focus, .hero-card select:focus, .hero-card textarea:focus {
  border-color: var(--secondary); outline: none;
  box-shadow: 0 0 0 3px rgba(0,163,181,0.12);
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--secondary); color: var(--white); padding: 18px 0;
}
.trust-bar-inner {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 30px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.9rem;
}
.trust-item span { font-size: 1.2rem; }

/* ─── SECTIONS ─── */
.section { padding: 80px 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--gradient-dark); color: var(--white); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow {
  display: inline-block; color: var(--secondary); font-weight: 700;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--dark); margin-bottom: 16px; line-height: 1.2;
}
.section-dark .section-head h2 { color: var(--white); }
.section-head p { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-dark .section-head p { color: rgba(255,255,255,0.8); }

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 24px;
  border: 1.5px solid var(--border); transition: var(--transition);
  position: relative; overflow: hidden; text-align: center;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient); transform: scaleX(0); transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--accent); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.8rem; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-head); font-size: 1.25rem; color: var(--dark);
  margin-bottom: 12px;
}
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.service-card .read-more {
  color: var(--secondary); font-weight: 600; font-size: 0.9rem;
}
.service-card:hover .read-more { color: var(--primary); }

/* ─── WHY US ─── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.why-card {
  background: rgba(255,255,255,0.07); border-radius: var(--radius);
  padding: 30px 24px; border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.why-num {
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 700;
  color: var(--accent); margin-bottom: 12px;
}
.why-card h4 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 10px; color: var(--white); }
.why-card p { color: rgba(255,255,255,0.75); font-size: 0.92rem; }

/* ─── PROCESS ─── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.process-step { text-align: center; padding: 24px 16px; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gradient); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 700;
  margin: 0 auto 20px; box-shadow: 0 4px 20px rgba(0,163,181,0.4);
}
.process-step h4 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 8px; color: var(--dark); }
.process-step p { font-size: 0.9rem; color: var(--text-muted); }

/* ─── TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { color: var(--text-muted); font-style: italic; margin-bottom: 16px; font-size: 0.95rem; line-height: 1.7; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
}
.reviewer-name { font-weight: 700; color: var(--dark); font-size: 0.9rem; }
.reviewer-loc { color: var(--text-muted); font-size: 0.8rem; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--gradient); color: var(--white);
  padding: 60px 0; text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}
.cta-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 30px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─── COUNTIES GRID ─── */
.counties-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.county-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 20px;
  text-align: center; border: 1.5px solid var(--border);
  transition: var(--transition); cursor: pointer;
}
.county-card:hover { border-color: var(--secondary); box-shadow: var(--shadow); transform: translateY(-4px); }
.county-icon { font-size: 2.2rem; margin-bottom: 12px; }
.county-card h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--dark); margin-bottom: 6px; }
.county-card p { color: var(--text-muted); font-size: 0.83rem; }

/* ─── CITY PAGES ─── */
.city-hero {
  background: var(--gradient-dark); color: var(--white); padding: 60px 0;
}
.city-hero .breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.city-hero .breadcrumb a { color: var(--accent); }
.city-hero h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 12px; }
.city-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 620px; }
.city-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }

.city-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 30px; }
.city-service-item {
  padding: 20px; border-radius: var(--radius); background: var(--white);
  border: 1.5px solid var(--border); transition: var(--transition);
  display: flex; align-items: flex-start; gap: 14px;
}
.city-service-item:hover { border-color: var(--secondary); box-shadow: var(--shadow); }
.city-service-item .icon { font-size: 1.6rem; flex-shrink: 0; }
.city-service-item h4 { font-family: var(--font-head); font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.city-service-item p { font-size: 0.85rem; color: var(--text-muted); }

.city-aside {
  background: var(--bg-light); border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--border); position: sticky; top: 90px;
}
.city-aside h4 { font-family: var(--font-head); color: var(--primary); margin-bottom: 16px; font-size: 1.1rem; }
.city-aside-phone {
  font-family: var(--font-head); font-size: 1.5rem; color: var(--primary);
  font-weight: 700; display: block; text-align: center; margin-bottom: 16px;
}
.city-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }

/* ─── ABOUT PAGE ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap {
  background: var(--gradient); border-radius: var(--radius-lg);
  padding: 60px; display: flex; align-items: center; justify-content: center;
}
.about-img-wrap img { border-radius: var(--radius); max-width: 100%; }
.about-text h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--dark); margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  color: var(--text); font-size: 0.95rem;
}
.about-list li span { color: var(--secondary); font-size: 1.1rem; }

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img {
  height: 180px; background: var(--gradient); display: flex;
  align-items: center; justify-content: center; font-size: 4rem;
}
.blog-card-body { padding: 24px; }
.blog-cat {
  display: inline-block; background: var(--accent-light); color: var(--primary);
  padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.blog-card h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--dark); margin-bottom: 10px; line-height: 1.35; }
.blog-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.blog-meta { font-size: 0.82rem; color: var(--text-muted); display: flex; gap: 12px; }

.blog-post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.blog-post-header { padding: 60px 0 40px; background: var(--bg-light); }
.blog-post-header .blog-cat { margin-bottom: 16px; }
.blog-post-header h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.blog-post-body h2 { font-family: var(--font-head); font-size: 1.4rem; color: var(--dark); margin: 32px 0 14px; }
.blog-post-body h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--primary); margin: 24px 0 10px; }
.blog-post-body p { margin-bottom: 16px; color: var(--text); line-height: 1.8; }
.blog-post-body ul { margin: 16px 0 16px 20px; }
.blog-post-body ul li { margin-bottom: 8px; list-style: disc; color: var(--text); }
.blog-post-body .highlight-box {
  background: var(--accent-light); border-left: 4px solid var(--secondary);
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0;
}

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--dark); margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 24px; }
.contact-card { background: var(--bg-light); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
.contact-item-row { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.contact-item-row:last-child { border-bottom: none; }
.contact-icon { font-size: 1.4rem; margin-top: 2px; }
.contact-item-row a { color: var(--secondary); font-weight: 600; }
.contact-item-row a:hover { color: var(--primary); }
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-badge {
  background: var(--accent-light); color: var(--primary); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
}
.contact-form-wrap { background: var(--bg-light); border-radius: var(--radius-lg); padding: 36px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 0.95rem; font-family: var(--font-body);
  transition: var(--transition); background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--secondary); outline: none;
  box-shadow: 0 0 0 3px rgba(0,163,181,0.12);
}
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 10px; text-align: center; }
.form-success { text-align: center; padding: 30px; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { font-family: var(--font-head); font-size: 1.4rem; color: var(--primary); margin-bottom: 12px; }
.form-success p { color: var(--text-muted); }

/* ─── CONTACT SECTION (used on city/service pages) ─── */
.contact-section { padding: 80px 0; background: var(--bg-light); }

/* ─── PAGE HERO (service/about) ─── */
.page-hero {
  background: var(--gradient-dark); color: var(--white); padding: 70px 0;
}
.page-hero .breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.page-hero .breadcrumb a { color: var(--accent); }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 14px; line-height: 1.2; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 640px; }

/* ─── SERVICE DETAIL ─── */
.service-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.service-content h2 { font-family: var(--font-head); font-size: 1.5rem; color: var(--dark); margin: 32px 0 14px; }
.service-content h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--primary); margin: 20px 0 10px; }
.service-content p { color: var(--text); margin-bottom: 16px; line-height: 1.8; }
.service-content ul { margin: 14px 0 20px 20px; }
.service-content ul li { margin-bottom: 8px; list-style: disc; color: var(--text); }
.service-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--bg-light); border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--border); margin-bottom: 20px;
}
.sidebar-card h4 { font-family: var(--font-head); color: var(--primary); margin-bottom: 12px; font-size: 1rem; }
.sidebar-card ul li { padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li a { color: var(--text); }
.sidebar-card ul li a:hover { color: var(--secondary); }

/* ─── FAQ ─── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 24px; background: var(--white); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; color: var(--dark); transition: var(--transition);
}
.faq-q:hover { background: var(--accent-light); color: var(--primary); }
.faq-q.open { background: var(--accent-light); color: var(--primary); }
.faq-q .arrow { transition: var(--transition); }
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.faq-a.open { padding: 16px 24px; max-height: 500px; }
.faq-a p { color: var(--text-muted); font-size: 0.95rem; }

/* ─── POPUP ─── */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 9000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition); padding: 20px;
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-modal {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  max-width: 480px; width: 100%; position: relative;
  transform: translateY(-20px); transition: var(--transition);
  max-height: 90vh; overflow-y: auto;
}
.popup-overlay.active .popup-modal { transform: translateY(0); }
.popup-close {
  position: absolute; top: 14px; right: 14px; background: none;
  border: none; font-size: 1.6rem; cursor: pointer; color: var(--text-muted);
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: var(--transition);
}
.popup-close:hover { background: var(--accent-light); color: var(--primary); }
.popup-header { text-align: center; margin-bottom: 24px; }
.popup-header img { margin: 0 auto 16px; width: 110px; }
.popup-header h2 { font-family: var(--font-head); font-size: 1.5rem; color: var(--dark); margin-bottom: 8px; }
.popup-header p { color: var(--text-muted); font-size: 0.95rem; }
.popup-form input, .popup-form select, .popup-form textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; margin-bottom: 12px; font-size: 0.95rem;
  font-family: var(--font-body); transition: var(--transition);
}
.popup-form input:focus, .popup-form select:focus, .popup-form textarea:focus {
  border-color: var(--secondary); outline: none;
}
.popup-disclaimer { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 10px; }
.popup-success { text-align: center; }

/* ─── BREADCRUMB ─── */
.breadcrumb a { color: inherit; }
.breadcrumb span { margin: 0 6px; opacity: 0.5; }

/* ─── COUNTY CITIES GRID ─── */
.cities-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; margin-top: 24px; }
.city-link {
  display: block; padding: 12px 16px; background: var(--white);
  border: 1px solid var(--border); border-radius: 8px; font-size: 0.9rem;
  color: var(--text); transition: var(--transition); text-align: center;
}
.city-link:hover { border-color: var(--secondary); color: var(--primary); background: var(--accent-light); }

/* ─── FOOTER ─── */
.site-footer { background: var(--dark); color: var(--white); }
.footer-wave { line-height: 0; }
.footer-wave svg { display: block; }
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand img { margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-head); font-size: 1rem; text-transform: uppercase;
  letter-spacing: 1px; color: var(--accent); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 14px; font-size: 0.88rem;
}
.footer-contact-item span { font-size: 1.2rem; margin-top: 2px; }
.footer-contact-item a { color: var(--accent); }
.footer-contact-item a:hover { color: var(--white); }
.footer-contact-item strong { display: block; color: var(--white); margin-bottom: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--accent); }

/* ─── EMERGENCY STRIP ─── */
.emergency-strip {
  background: #c0392b; color: var(--white); text-align: center;
  padding: 14px; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.emergency-strip a { color: var(--white); text-decoration: underline; }
.pulse { animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.6} }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .city-layout { grid-template-columns: 1fr; }
  .service-detail-layout { grid-template-columns: 1fr; }
  .blog-post-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--white);
    box-shadow: var(--shadow-lg); padding: 16px; gap: 4px; z-index: 500;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; display: none; }
  .has-dropdown:hover .dropdown { display: block; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .section { padding: 56px 0; }
  .header-top { display: none; }
  .trust-bar-inner { gap: 16px; }
}

@media (max-width: 480px) {
  .hero { padding: 50px 0 70px; }
  .hero h1 { font-size: 1.9rem; }
}

/* ─── ANIMATIONS ─── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
