/* ═══════════════════════════════════════════
   JIMMY & SPARKS LAWN SHARKS — style.css
   Professional-grade. Built to convert.
═══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   BEFORE & AFTER SLIDER
══════════════════════════════════════════ */
.ba-section { padding: 5rem 1.5rem; }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ba-card { display: flex; flex-direction: column; gap: 0.75rem; }

.ba-card-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ba-wrap {
  --pos: 50%;
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  min-height: 240px;
  touch-action: none;
  box-shadow: var(--shadow-md);
}

/* ── "Before" layer — full background ── */
.ba-before {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* ── "After" layer — clipped to show left side up to --pos ── */
.ba-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  background-size: cover;
  background-position: center;
  transition: clip-path 0s;
}

/* ── Divider line ── */
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  transform: translateX(-50%);
  width: 3px;
  background: white;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
  z-index: 5;
}

.ba-handle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.35);
  color: var(--dark);
  flex-shrink: 0;
  animation: ba-pulse 2s ease-in-out 1.2s 2;
}

@keyframes ba-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 2px 14px rgba(0,0,0,0.35); }
  50%       { transform: scale(1.12); box-shadow: 0 4px 20px rgba(255,107,26,0.5); }
}

.ba-arrow {
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

/* ── Before / After labels ── */
.ba-tag {
  position: absolute;
  top: 12px;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 4;
}
.ba-tag-before { left: 12px;  background: rgba(0,0,0,0.55); color: white; }
.ba-tag-after  { right: 12px; background: var(--orange);    color: white; }

.ba-before-1 { background: url('/images/ba-before-1.jpg') center/cover no-repeat; }
.ba-after-1  { background: url('/images/ba-after-1.jpg')  center/cover no-repeat; }
.ba-before-2 { background: url('/images/ba-before-2.jpg') center/cover no-repeat; }
.ba-after-2  { background: url('/images/ba-after-2.jpg')  center/cover no-repeat; }
.ba-before-3 { background: url('/images/ba-before-3.jpg') center/cover no-repeat; }
.ba-after-3  { background: url('/images/ba-after-3.jpg')  center/cover no-repeat; }

.ba-hint {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

@media (max-width: 768px) {
  .ba-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* ── PAGE HEROES (inner pages) ── */
.page-hero { padding: 9rem 1.5rem 5rem; }
.page-hero .container { max-width: 700px; }
.page-hero h1 { font-size: clamp(2rem,5vw,3.2rem); color: white; margin: 1rem 0; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.7; }
.page-hero-green { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); }
.page-hero-blue  { background: linear-gradient(135deg, var(--blue) 0%, #0D47A1 100%); }
.page-hero-dark  { background: linear-gradient(135deg, var(--dark) 0%, #1E3A5F 100%); }
.page-hero-orange { background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%); }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue) 100%); padding: 5rem 1.5rem; }

/* ── SERVICE DETAIL (services page) ── */
.service-detail { display: grid; grid-template-columns: 120px 1fr; gap: 3rem; align-items: start; padding: 3rem 0; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: none; }
.service-detail-alt { direction: ltr; }
.service-detail-icon { width: 100px; height: 100px; background: var(--off-white); border-radius: 24px; display: flex; align-items: center; justify-content: center; font-size: 3rem; flex-shrink: 0; }
.service-detail-body h2 { font-size: 1.7rem; margin: 0.5rem 0 1rem; }
.service-detail-body p { color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.feature-list li { font-size: 0.93rem; color: var(--text); }

/* ── VALUES GRID (about page) ── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.value-card { background: white; border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.value-card h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.value-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── AREA DETAIL GRID (service areas page) ── */
.area-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.area-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.area-card-header { padding: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.area-card-header h3 { color: white; font-size: 1.1rem; }
.area-icon { font-size: 1.5rem; }
.area-card-body { padding: 1.5rem; }
.area-card-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.area-card-body ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.5rem; }
.area-card-body li { font-size: 0.87rem; color: var(--text); }

/* ── TRUST MINI LIST (contact page) ── */
.trust-mini-list { display: flex; flex-direction: column; gap: 0.6rem; }
.trust-mini-item { font-size: 0.93rem; color: rgba(255,255,255,0.85); font-weight: 600; }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 768px) {
  .service-detail { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-detail-icon { width: 70px; height: 70px; font-size: 2rem; }
  .area-detail-grid { grid-template-columns: 1fr; }
}

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

:root {
  --orange:      #FF6B1A;
  --orange-dark: #E05500;
  --green:       #2E7D32;
  --green-light: #4CAF50;
  --green-dark:  #1B5E20;
  --blue:        #1565C0;
  --blue-light:  #1E88E5;
  --white:       #FFFFFF;
  --off-white:   #F7F7F3;
  --dark:        #111827;
  --text:        #374151;
  --muted:       #6B7280;
  --border:      #E5E7EB;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.14);
  --radius:      14px;
  --radius-lg:   20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', 'Segoe UI', system-ui, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-dark); }

.btn-nav-cta { background: var(--orange); color: white; padding: 0.5rem 1.4rem; font-size: 0.88rem; }
.btn-nav-cta:hover { background: var(--orange-dark); }

.btn-submit {
  width: 100%; padding: 1rem; background: var(--orange); color: white;
  font-size: 1rem; border-radius: 50px; margin-top: 0.5rem;
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 800; cursor: pointer; border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}
.btn-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,26,0.4); }

.btn-submit-light {
  width: 100%; padding: 1rem; background: var(--green); color: white;
  font-size: 1rem; border-radius: 50px; margin-top: 0.5rem;
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 800; cursor: pointer; border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}
.btn-submit-light:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,125,50,0.4); }

/* ── SECTION LAYOUTS ── */
.section-light    { background: var(--white);    padding: 5rem 1.5rem; }
.section-offwhite { background: var(--off-white); padding: 5rem 1.5rem; }
.section-dark-blue { background: var(--blue);    padding: 5rem 1.5rem; }
.section-green    { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); padding: 5rem 1.5rem; }
.section-contact  { background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue) 100%); padding: 5rem 1.5rem; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}

.section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 580px; line-height: 1.75; }

/* ═══════════════════ NAV ═══════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(21,101,192,0.97);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 68px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.22);
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled { background: rgba(21,101,192,1); box-shadow: 0 4px 24px rgba(0,0,0,0.3); }

.nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.shark-icon { font-size: 2rem; line-height: 1; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-brand { color: white; font-family: 'Montserrat', Arial, sans-serif; font-weight: 900; font-size: 1rem; line-height: 1.1; }
.nav-sub { color: var(--orange); font-family: 'Montserrat', Arial, sans-serif; font-weight: 800; font-size: 0.75rem; letter-spacing: 1px; }

.nav-links { list-style: none; display: flex; gap: 1.8rem; }
.nav-links a { color: rgba(255,255,255,0.88); font-size: 0.9rem; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-phone { color: white; font-weight: 700; font-size: 0.9rem; white-space: nowrap; transition: color 0.2s; }
.nav-phone:hover { color: var(--orange); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE DRAWER */
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: var(--blue); flex-direction: column;
  padding: 1.2rem 1.5rem 1.8rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,0.88); font-weight: 600; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 1rem; transition: color 0.2s; }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav-phone { color: white !important; font-weight: 800 !important; }
.mobile-nav-cta { background: var(--orange); color: white !important; text-align: center; border-radius: 50px; margin-top: 0.8rem; padding: 0.85rem 0 !important; border-bottom: none !important; font-family: 'Montserrat', Arial, sans-serif; font-weight: 800 !important; }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(21,101,192,0.72) 0%, rgba(46,125,50,0.68) 55%, rgba(27,94,32,0.74) 100%),
              url('/jimmy-sparks.jpeg') center/cover no-repeat;
  display: flex; align-items: center;
  padding: 7rem 1.5rem 5rem;
  position: relative; overflow: hidden;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.08); pointer-events: none; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; max-width: 1140px; margin: 0 auto; width: 100%; }
.hero-grass {
  position: absolute; bottom: 0; left: 0; right: 0; height: 56px;
  background: var(--off-white);
  clip-path: polygon(0% 55%,1% 35%,2% 55%,3% 20%,4% 50%,5% 25%,6% 52%,7% 15%,8% 50%,9% 30%,10% 55%,11% 20%,12% 50%,13% 30%,14% 55%,15% 10%,16% 50%,17% 25%,18% 55%,19% 20%,20% 50%,21% 30%,22% 55%,23% 15%,24% 50%,25% 25%,26% 55%,27% 20%,28% 50%,29% 30%,30% 55%,31% 10%,32% 50%,33% 25%,34% 55%,35% 20%,36% 50%,37% 30%,38% 55%,39% 15%,40% 50%,41% 25%,42% 55%,43% 20%,44% 50%,45% 30%,46% 55%,47% 10%,48% 50%,49% 25%,50% 55%,51% 20%,52% 50%,53% 30%,54% 55%,55% 15%,56% 50%,57% 25%,58% 55%,59% 20%,60% 50%,61% 30%,62% 55%,63% 10%,64% 50%,65% 25%,66% 55%,67% 20%,68% 50%,69% 30%,70% 55%,71% 15%,72% 50%,73% 25%,74% 55%,75% 20%,76% 50%,77% 30%,78% 55%,79% 10%,80% 50%,81% 25%,82% 55%,83% 20%,84% 50%,85% 30%,86% 55%,87% 15%,88% 50%,89% 25%,90% 55%,91% 20%,92% 50%,93% 30%,94% 55%,95% 15%,96% 50%,97% 25%,98% 55%,99% 20%,100% 50%,100% 100%,0% 100%);
}

.hero-badge {
  display: inline-block; background: var(--orange); color: white;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.73rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.4rem 1.1rem; border-radius: 50px; margin-bottom: 1.4rem;
}
.hero-copy h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: white; text-shadow: 0 2px 16px rgba(0,0,0,0.3); margin-bottom: 1rem; }
.hero-copy h1 .highlight { color: var(--orange); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 0.9rem; line-height: 1.7; }
.hero-cities { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 1.4rem; letter-spacing: 0.3px; }
.hero-trust-mini { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.hero-trust-mini span { color: rgba(255,255,255,0.88); font-size: 0.83rem; font-weight: 600; }

/* Hero Form */
.hero-form-wrap { display: flex; justify-content: flex-end; }
.hero-form-box {
  background: white; border-radius: var(--radius-lg);
  padding: 2rem 2rem; width: 100%; max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.form-header { margin-bottom: 1.5rem; }
.form-tag {
  display: inline-block; background: var(--green); color: white;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 1px;
  padding: 0.3rem 0.9rem; border-radius: 50px; margin-bottom: 0.5rem;
}
.form-header p { font-size: 0.85rem; color: var(--muted); }

/* ── QUOTE FORM ── */
.quote-form .form-group { margin-bottom: 1rem; }
.quote-form label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--dark); margin-bottom: 0.35rem; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; padding: 0.75rem 1rem; border: 2px solid var(--border);
  border-radius: 10px; font-size: 0.92rem; font-family: 'Open Sans', Arial, sans-serif;
  color: var(--dark); background: white; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
}
.quote-form input.error, .quote-form select.error { border-color: #DC2626; }
.form-fine { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 0.6rem; }

.form-success { text-align: center; padding: 1.5rem 0.5rem; }
.success-icon { font-size: 3rem; margin-bottom: 0.8rem; }
.form-success h3 { font-size: 1.3rem; color: var(--green); margin-bottom: 0.5rem; }
.form-success p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

/* ═══════════════════ TRUST BAR ═══════════════════ */
.trust-bar { background: var(--dark); padding: 1rem 1.5rem; }
.trust-inner { max-width: 1140px; margin: 0 auto; display: flex; justify-content: center; flex-wrap: wrap; gap: 0; }
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.85); font-size: 0.83rem; font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1rem; }

/* ═══════════════════ STATS ═══════════════════ */
.stats-section { background: var(--blue); padding: 3.5rem 1.5rem; }
.stats-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-card { text-align: center; padding: 1.5rem; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-card:last-child { border-right: none; }
.stat-num { display: block; font-family: 'Montserrat', Arial, sans-serif; font-size: 2.6rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.8); letter-spacing: 0.3px; font-weight: 600; }

/* ═══════════════════ SERVICES ═══════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.service-card {
  background: white; border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--accent, var(--green));
  transition: transform 0.22s, box-shadow 0.22s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon-wrap { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin-bottom: 1.1rem; }
.service-card h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.89rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.service-link { font-size: 0.85rem; font-weight: 700; color: var(--orange); transition: color 0.2s; }
.service-link:hover { color: var(--orange-dark); }

/* ═══════════════════ WHY US ═══════════════════ */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.compare-table th { padding: 1.1rem 1.3rem; font-size: 0.88rem; font-weight: 800; text-align: center; font-family: 'Montserrat', Arial, sans-serif; }
.th-feature { text-align: left !important; background: var(--dark); color: white; }
.th-us { background: var(--green); color: white; font-size: 1rem !important; }
.th-them { background: #64748B; color: white; }
.compare-table td { padding: 1rem 1.3rem; font-size: 0.88rem; border-bottom: 1px solid #E8EFF8; text-align: center; vertical-align: middle; background: white; }
.compare-table td:first-child { text-align: left; font-weight: 600; background: #F8FAFF; }
.us-cell { background: #F0FBF0 !important; font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.tick { color: var(--green); font-weight: 900; font-size: 1.1rem; margin-right: 0.3rem; }
.cross { color: #CBD5E1; font-size: 1.1rem; }
.why-cta { text-align: center; margin-top: 2.5rem; }

/* ═══════════════════ ABOUT ═══════════════════ */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.about-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 460px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.about-badges {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  display: flex; gap: 0.5rem; flex-wrap: wrap; padding: 2rem 1.2rem 1.2rem;
}
.about-badges span {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.4);
  color: white; font-size: 0.78rem; font-weight: 700;
  padding: 0.3rem 0.8rem; border-radius: 50px; backdrop-filter: blur(6px);
}
.about-text p { color: var(--muted); line-height: 1.85; margin-bottom: 1.2rem; font-size: 0.97rem; }

.guarantee-box {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #F0FBF0; border: 1.5px solid #A5D6A7;
  border-radius: var(--radius); padding: 1.2rem 1.4rem;
  margin: 1.5rem 0;
}
.guarantee-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.guarantee-box strong { display: block; color: var(--green-dark); font-weight: 800; margin-bottom: 0.35rem; font-size: 0.95rem; }
.guarantee-box p { font-size: 0.87rem; color: #4B5563; margin: 0; line-height: 1.6; }

.checklist { list-style: none; margin: 0 0 2rem; display: flex; flex-direction: column; gap: 0.65rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.93rem; color: var(--text); }
.check { width: 20px; height: 20px; border-radius: 50%; background: var(--green); color: white; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 900; flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════ FAQ ═══════════════════ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.faq-item { border-bottom: 1px solid var(--border); background: white; }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 1.8rem; background: white; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 700; color: var(--dark); text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--off-white); }
.faq-question[aria-expanded="true"] { background: #F0FBF0; color: var(--green-dark); }
.faq-icon { font-size: 1.4rem; font-weight: 400; color: var(--orange); flex-shrink: 0; transition: transform 0.3s; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s ease, padding 0.3s ease; padding: 0 1.8rem; }
.faq-answer.open { max-height: 300px; padding: 0 1.8rem 1.4rem; }
.faq-answer p { font-size: 0.94rem; color: var(--muted); line-height: 1.75; }
.faq-answer a { color: var(--orange); font-weight: 700; }
.faq-answer a:hover { color: var(--orange-dark); }

/* ═══════════════════ SERVICE AREA ═══════════════════ */
.cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px,1fr)); gap: 1rem; max-width: 900px; margin: 0 auto 2rem; }
.city-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: var(--radius); padding: 1.5rem 1rem; text-align: center;
  color: white; backdrop-filter: blur(6px); transition: background 0.2s, transform 0.2s;
}
.city-card:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); }
.city-card span { font-size: 1.6rem; }
.city-card strong { font-family: 'Montserrat', Arial, sans-serif; font-size: 0.95rem; }
.city-card small { font-size: 0.77rem; opacity: 0.72; }
.area-note { text-align: center; color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* ═══════════════════ REVIEWS ═══════════════════ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto 2.5rem; }
.review-card {
  background: white; border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid var(--orange);
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-card p { font-size: 0.94rem; color: var(--text); line-height: 1.75; margin-bottom: 1.3rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 0.8rem; }
.avatar { width: 44px; height: 44px; border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; flex-shrink: 0; }
.reviewer div { display: flex; flex-direction: column; }
.reviewer strong { font-size: 0.92rem; color: var(--dark); }
.reviewer span { font-size: 0.79rem; color: var(--muted); }
.review-aggregate { text-align: center; }
.agg-stars { color: #F59E0B; font-size: 1.5rem; letter-spacing: 3px; margin-bottom: 0.4rem; }
.agg-text { font-size: 0.92rem; color: var(--muted); }

/* ═══════════════════ CONTACT ═══════════════════ */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: flex-start; max-width: 1100px; margin: 0 auto; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-info-item {
  display: flex; align-items: center; gap: 1rem;
  color: white; text-decoration: none; transition: opacity 0.2s;
}
.contact-info-item:hover { opacity: 0.85; }
.ci-icon { font-size: 1.5rem; flex-shrink: 0; width: 44px; height: 44px; background: rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-info-item strong { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 600; margin-bottom: 0.15rem; }
.contact-info-item span { font-size: 0.98rem; color: white; font-weight: 600; }

.contact-form-wrap { background: white; border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.contact-form-wrap h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ═══════════════════ FOOTER ═══════════════════ */
footer { background: #0D1117; }
.footer-top { max-width: 1140px; margin: 0 auto; padding: 4rem 1.5rem 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 0.8rem 0 1.2rem; max-width: 280px; }
.footer-logo { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.1rem; font-weight: 900; color: white; }
.footer-phone { display: inline-block; color: var(--orange); font-weight: 700; font-size: 1rem; transition: color 0.2s; }
.footer-phone:hover { color: var(--orange-dark); }
.footer-links-col h4 { font-family: 'Montserrat', Arial, sans-serif; font-size: 0.78rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-links-col a { display: block; font-size: 0.86rem; color: rgba(255,255,255,0.6); margin-bottom: 0.55rem; transition: color 0.2s; }
.footer-links-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 1.5rem; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-bottom strong { color: var(--orange); }
.footer-cities { margin-top: 0.4rem; font-size: 0.76rem; color: rgba(255,255,255,0.22) !important; }

/* ═══════════════════ FLOATING ELEMENTS ═══════════════════ */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--dark); padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.mob-cta-call { display: inline-flex; align-items: center; justify-content: center; background: var(--green); color: white; font-weight: 800; border-radius: 50px; padding: 0.75rem 0; flex: 1; font-size: 0.92rem; margin-right: 0.5rem; }
.mob-cta-quote { display: inline-flex; align-items: center; justify-content: center; background: var(--orange); color: white; font-weight: 800; border-radius: 50px; padding: 0.75rem 0; flex: 1; font-size: 0.92rem; }
.mobile-cta-bar { display: none; }

#back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 800;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange); color: white; border: none; font-size: 1.3rem;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(255,107,26,0.4);
}
#back-to-top.visible { opacity: 1; pointer-events: all; }
#back-to-top:hover { transform: translateY(-3px); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-wrap { justify-content: center; }
  .hero-form-box { max-width: 520px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .about-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo { min-height: 300px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .trust-item { padding: 0.5rem 0.9rem; font-size: 0.78rem; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
  #back-to-top { bottom: 5.5rem; }
}

@media (max-width: 480px) {
  .hero { padding: 6rem 1rem 4rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .trust-inner { gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0.6rem 1rem; width: 50%; }
}
