/* ===========================
   SHARED STYLES — ALL PAGES
   =========================== */

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

:root {
  --red: #C0392B;
  --red-dark: #96281B;
  --red-light: #FADBD8;
  --yellow: #F4C10F;
  --dark: #1A1A1A;
  --mid: #444;
  --muted: #777;
  --light: #F5F5F0;
  --white: #fff;
  --border: #E0E0D8;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

/* NAV */
nav {
  background: var(--dark);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
  gap: 16px;
}

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo span { color: var(--yellow); }

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-dark); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 16px 24px;
  gap: 4px;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 99;
  border-top: 1px solid #333;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #ccc;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #333;
  font-size: 15px;
}
.mobile-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  text-align: center;
  padding: 12px !important;
  border-radius: 8px;
  border: none !important;
  margin-top: 8px;
  font-weight: 600;
}

/* HERO */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 80px 24px 72px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 16px;
}
.hero h1 span { color: var(--yellow); }
.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: #bbb;
  max-width: 520px;
  margin: 0 auto 32px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn-primary {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* SECTIONS */
.section { padding: 72px 24px; max-width: 1000px; margin: 0 auto; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.card-icon { font-size: 28px; margin-bottom: 12px; }
.card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.price-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
}
.price-card.featured {
  border-color: var(--red);
  background: var(--red-light);
}
.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.price-card .price {
  font-size: 36px;
  font-weight: 700;
  color: var(--red);
  font-family: 'Sora', sans-serif;
}
.price-card .price span { font-size: 16px; color: var(--muted); font-weight: 400; }
.price-card p { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.review {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.review-stars { color: var(--yellow); font-size: 18px; margin-bottom: 10px; }
.review p { font-size: 14px; color: var(--mid); font-style: italic; margin-bottom: 12px; }
.review-name { font-size: 13px; font-weight: 700; color: var(--dark); }

/* FAQ */
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
}
.faq-chevron { font-size: 18px; color: var(--muted); transition: transform 0.2s; flex-shrink: 0; }
.faq-q.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 0 18px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-a.open { display: block; }

/* CTA SECTION */
.cta-section {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.cta-section .section-title { color: var(--white); margin: 0 auto 12px; }
.cta-section .section-sub { color: #bbb; margin: 0 auto 32px; }

/* FOOTER */
footer {
  background: #111;
  color: #999;
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 36px;
  margin-bottom: 40px;
}
footer strong { color: var(--white); display: block; margin-bottom: 12px; font-family: 'Sora', sans-serif; font-size: 15px; }
footer p { font-size: 14px; line-height: 1.7; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; font-size: 14px; }
footer ul li a { color: #999; text-decoration: none; }
footer ul li a:hover { color: var(--white); }
.footer-phone {
  display: inline-block;
  margin-top: 12px;
  color: var(--yellow) !important;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}
.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px solid #222;
  padding-top: 24px;
  font-size: 13px;
  line-height: 1.8;
}

/* BREADCRUMB */
.breadcrumb {
  background: var(--light);
  padding: 12px 24px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a { color: var(--red); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* LOCAL PAGE SPECIFICS */
.local-hero { background: var(--dark); }
.area-map-strip {
  background: var(--red);
  color: white;
  padding: 16px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .hero { padding: 56px 20px; }
  .section { padding: 48px 20px; }
  .trust-strip { gap: 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
