/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: #1a2332;
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item .dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
}
.top-bar-phone {
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== HEADER ===== */
.header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-full { height: 48px; width: auto; }
.logo-mobile { height: 64px; width: auto; display: none; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: #374151;
  font-weight: 600;
  font-size: 0.88rem;
  transition: color 0.2s;
  padding: 4px 0;
}
.nav a:hover, .nav a.active { color: #ff8c2a; }

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a2332;
}
.btn-cta {
  background: #ff8c2a;
  color: #fff;
  padding: 11px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-cta:hover { background: #e06810; transform: translateY(-1px); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #1a2332;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: #ff8c2a;
  color: #fff;
  border-color: #ff8c2a;
  box-shadow: 0 4px 14px rgba(244,121,32,0.3);
}
.btn-primary:hover { background: #e06810; border-color: #e06810; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: #1a2332;
  border-color: #1a2332;
}
.btn-outline-white:hover { background: #1a2332; color: #fff; }
.btn-white-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.15); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(rgba(26,35,50,0.25), rgba(26,35,50,0.35)), url('../images/hero-bg.png') center/cover no-repeat;
  padding: 48px 0 56px;
  color: #fff;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr auto 380px;
  gap: 36px;
  align-items: start;
}
.hero-text h1 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-text .hero-tagline {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}
.hero-check svg { flex-shrink: 0; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-placeholder {
  width: 320px;
  height: 360px;
  background: #e5e7eb;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed #d1d5db;
}
.hero-image-placeholder span {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Quote Form */
.quote-form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 28px 24px;
  border: 1px solid #e5e7eb;
}
.quote-form-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a2332;
  text-align: center;
  margin-bottom: 4px;
}
.quote-form-card .form-subtitle {
  text-align: center;
  font-size: 0.82rem;
  color: #6b7280;
  margin-bottom: 18px;
}
.quote-form-card .form-group { margin-bottom: 12px; }
.quote-form-card input,
.quote-form-card textarea,
.quote-form-card select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: inherit;
  background: #f9fafb;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.quote-form-card input:focus,
.quote-form-card textarea:focus,
.quote-form-card select:focus {
  outline: none;
  border-color: #ff8c2a;
  box-shadow: 0 0 0 3px rgba(244,121,32,0.1);
  background: #fff;
}
.quote-form-card textarea { resize: vertical; min-height: 60px; }
.quote-form-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.quote-form-card .form-submit {
  width: 100%;
  padding: 12px;
  background: #ff8c2a;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.quote-form-card .form-submit:hover { background: #e06810; }
.quote-form-card .form-privacy {
  text-align: center;
  font-size: 0.72rem;
  color: #9ca3af;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-google {
  display: flex;
  align-items: center;
  gap: 10px;
}
.google-g {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-google-info .stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.trust-google-info .stars svg { width: 14px; height: 14px; }
.trust-google-info .rating {
  font-weight: 800;
  color: #1a2332;
  font-size: 0.95rem;
  margin-left: 6px;
}
.trust-google-info .count {
  font-size: 0.78rem;
  color: #6b7280;
}
.trust-icons {
  display: flex;
  gap: 32px;
}
.trust-icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-icon-circle {
  width: 40px;
  height: 40px;
  background: #f0f1f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon-item .label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a2332;
  line-height: 1.3;
}
.trust-icon-item .sublabel {
  font-size: 0.72rem;
  color: #6b7280;
}
.trust-badges-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-pill {
  background: #f0f1f3;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #374151;
  text-align: center;
  line-height: 1.3;
  border: 1px solid #e5e7eb;
}
.badge-pill.google-guaranteed {
  background: #e8f5e9;
  color: #1b5e20;
  border-color: #a5d6a7;
}
.badge-pill.top-rated {
  background: #fff3e0;
  color: #e65100;
  border-color: #ffcc80;
}

/* ===== SECTION COMMON ===== */
.section { padding: 72px 0; }
.section-light { background: #f8f9fa; }
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: #1a2332;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 28px 24px;
  transition: all 0.25s;
}
.section-light .service-card { background: #fff; }
.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
  border-color: #ff8c2a;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: #fff3e6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 8px;
}
.service-card p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.service-card .learn-more {
  color: #ff8c2a;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.service-card:hover .learn-more { gap: 8px; }

/* ===== WHY CHOOSE ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-item {
  text-align: center;
}
.why-item-icon {
  width: 64px;
  height: 64px;
  background: #fff3e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why-item-icon svg { width: 28px; height: 28px; }
.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 6px;
}
.why-item p {
  font-size: 0.88rem;
  color: #6b7280;
  max-width: 250px;
  margin: 0 auto;
}

/* ===== HOW IT WORKS ===== */
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  text-align: center;
  padding: 0 16px;
}
.step-num {
  width: 56px;
  height: 56px;
  background: #ff8c2a;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(244,121,32,0.3);
}
.step h4 {
  color: #1a2332;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  color: #6b7280;
  font-size: 0.85rem;
  max-width: 220px;
  margin: 0 auto;
}
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 20px;
  color: #d1d5db;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 28px;
}
.section-light .testimonial-card { background: #fff; }
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.testimonial-stars svg { width: 18px; height: 18px; }
.testimonial-text {
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 18px;
}
.testimonial-author {
  font-weight: 700;
  font-size: 0.88rem;
  color: #1a2332;
}
.testimonial-location {
  font-size: 0.78rem;
  color: #9ca3af;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #ff8c2a, #f9a825);
  color: #fff;
  padding: 48px 0;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cta-banner-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-banner h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.cta-banner p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ===== BEFORE/AFTER + SERVICE AREAS ===== */
.split-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.split-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a2332;
  margin-bottom: 20px;
}
.before-after-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: #e5e7eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 2px dashed #d1d5db;
  position: relative;
  overflow: hidden;
}
.before-after-placeholder .ba-labels {
  display: flex;
  width: 100%;
  height: 100%;
}
.before-after-placeholder .ba-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #9ca3af;
}
.before-after-placeholder .ba-divider {
  width: 2px;
  background: #d1d5db;
}
.ba-caption {
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
}
.service-areas-map {
  width: 100%;
  aspect-ratio: 16/10;
  background: #eef2f7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid #e5e7eb;
  position: relative;
}
.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.areas-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #374151;
  font-weight: 500;
}
.areas-list li svg { flex-shrink: 0; }
.areas-more {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #6b7280;
  font-style: italic;
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.faq-question {
  padding: 18px 20px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #1a2332;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.faq-question:hover { background: #f8f9fa; }
.faq-question .chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-question .chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
}
.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: #1a2332;
  color: #94a3b8;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #2a3548;
}
.footer-brand .logo {
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.95rem;
}
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: #2a3548;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: #ff8c2a; }
.footer-col h4 {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #ff8c2a; }
.footer-col p {
  font-size: 0.82rem;
  margin-bottom: 6px;
}
.footer-col .footer-phone {
  color: #ff8c2a;
  font-size: 1.1rem;
  font-weight: 800;
  display: block;
  margin-bottom: 10px;
}
.footer-col .footer-cta {
  display: inline-block;
  background: #ff8c2a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 14px;
  transition: background 0.2s;
}
.footer-col .footer-cta:hover { background: #e06810; }
.footer-col .footer-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  margin-bottom: 6px;
}
.footer-col .footer-detail svg { flex-shrink: 0; opacity: 0.6; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 0.78rem;
  color: #4b5563;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #4b5563; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #ff8c2a; }

/* ===== RESPONSIVE — mobile-first, single breakpoint at 768px ===== */

/* ── Mobile (default, < 768px) ── */
.logo-full { display: none; }
.logo-mobile { display: block; }
.header .container { height: 80px; }
.top-bar-items { display: none; }
.top-bar .container { justify-content: center; }
.nav { display: none; }
.mobile-toggle { display: block; }
.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-top: 1px solid #e5e7eb;
  z-index: 999;
}
.header-phone { display: none; }
.hero .container { grid-template-columns: 1fr; gap: 24px; }
.hero-image { display: none; }
.hero-text h1 { font-size: 1.8rem; }
.quote-form-card { max-width: 500px; margin: 0 auto; }
.quote-form-card .form-row { grid-template-columns: 1fr; }
.services-grid { grid-template-columns: 1fr; }
.why-grid { grid-template-columns: 1fr; gap: 24px; }
.steps-row { grid-template-columns: 1fr; gap: 24px; }
.step-arrow { display: none; }
.testimonials-grid { grid-template-columns: 1fr; }
.split-section .container { grid-template-columns: 1fr; gap: 32px; }
.faq-grid { grid-template-columns: 1fr; }
.trust-bar .container { justify-content: center; flex-direction: column; gap: 16px; }
.trust-icons { display: none; }
.trust-badges-right { display: none; }
.cta-banner .container { flex-direction: column; text-align: center; }
.footer-grid { grid-template-columns: 1fr; gap: 28px; }
.footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
.section-title { font-size: 1.5rem; }
.section { padding: 48px 0; }
.areas-list { grid-template-columns: 1fr; }
.hero { padding: 32px 0 40px; }
.hero-buttons { flex-direction: column; }
.hero-buttons .btn { width: 100%; text-align: center; }

/* ── Desktop (>= 768px) ── */
@media (min-width: 768px) {
  .top-bar-items { display: flex; }
  .top-bar .container { justify-content: space-between; }
  .logo-full { display: block; }
  .logo-mobile { display: none; }
  .nav { display: flex; }
  .mobile-toggle { display: none; }
  .header-phone { display: flex; }
  .hero .container { grid-template-columns: 1fr 380px; gap: 36px; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero { padding: 48px 0 56px; }
  .quote-form-card { max-width: none; margin: 0; }
  .quote-form-card .form-row { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .steps-row { grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; }
  .step-arrow { display: flex; }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .split-section .container { grid-template-columns: 1fr 1fr; gap: 48px; }
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar .container { flex-direction: row; justify-content: space-between; gap: 20px; }
  .trust-icons { display: flex; gap: 32px; }
  .trust-badges-right { display: flex; }
  .cta-banner .container { flex-direction: row; text-align: left; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; gap: 36px; }
  .footer-bottom { flex-direction: row; }
  .section-title { font-size: 2rem; }
  .section { padding: 72px 0; }
  .areas-list { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: row; }
  .hero-buttons .btn { width: auto; }
}
