/* ============================================================
   Affordable Response – Global Stylesheet
   Colours: Red #c62828 | Yellow #fbc02d | Dark #1a1a1a | Grey #f5f5f5
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: #222; background: #fff; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Variables ---------- */
:root {
  --red:    #c62828;
  --red-dk: #a51c1c;
  --yellow: #fbc02d;
  --yel-dk: #f9a800;
  --dark:   #1a1a1a;
  --grey:   #f5f5f5;
  --muted:  #666;
  --border: rgba(0,0,0,0.08);
  --radius: 0.5rem;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
section { padding: 4rem 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.75rem 1.75rem; border-radius: var(--radius);
  font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 0.95rem;
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background 0.18s, color 0.18s, transform 0.12s;
}
.btn:hover { transform: translateY(-1px); }
.btn-yellow  { background: var(--yellow); color: #111; border-color: var(--yellow); }
.btn-yellow:hover { background: var(--yel-dk); border-color: var(--yel-dk); }
.btn-red     { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-dk); border-color: var(--red-dk); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: #fff; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--red);
  color: #fff;
  padding: 0.55rem 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.trust-bar-inner {
  display: flex; flex-wrap: wrap; gap: 0.75rem 2rem;
  align-items: center; justify-content: center;
}
.trust-bar span { display: flex; align-items: center; gap: 0.35rem; }
.trust-bar svg { flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: #fff;
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.nav-bar {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  position: relative;
}
.logo img { height: 3.2rem; width: auto; }
.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--muted); line-height: 1.25;
  display: none;
}

/* hamburger */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: flex; flex-direction: column; justify-content: center;
  cursor: pointer; width: 2.25rem; height: 2.25rem; gap: 5px; padding: 4px;
}
.nav-toggle-label span {
  display: block; height: 3px; border-radius: 2px; background: var(--dark);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle:checked ~ .nav-links { display: flex; }

/* nav links */
.nav-links {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  border-top: 1px solid var(--border);
  padding: 0.5rem 1rem 1rem;
  gap: 0;
}
.nav-links a {
  display: block; padding: 0.6rem 0.5rem;
  font-weight: 600; font-size: 0.9rem; color: #333;
  border-bottom: 1px solid var(--border);
}
.nav-links a:last-child { border-bottom: none; }
.nav-links a:hover { color: var(--red); }

.nav-phone-desktop { display: none; }
.nav-cta { display: none; }

@media (min-width: 900px) {
  .logo-text { display: block; }
  .nav-toggle-label { display: none; }
  .nav-links {
    position: static; display: flex; flex-direction: row;
    align-items: center; gap: 0.25rem;
    box-shadow: none; border: none; padding: 0; background: transparent;
  }
  .nav-links a {
    border: none; padding: 0.4rem 0.75rem; border-radius: var(--radius);
    font-size: 0.88rem;
  }
  .nav-links a:hover { background: var(--grey); color: var(--red); }
  .nav-phone-desktop {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-weight: 700; font-size: 1rem; color: var(--red);
    margin-left: 1rem;
  }
  .nav-cta { display: inline-flex; margin-left: 0.75rem; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, rgba(26,26,26,0.88) 0%, rgba(198,40,40,0.78) 100%),
    url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px,
    transparent 1px, transparent 12px
  );
  pointer-events: none;
}
.hero-inner {
  display: grid; gap: 2.5rem;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--yellow); color: #111;
  font-weight: 800; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.3rem 0.85rem; border-radius: 999px;
  margin-bottom: 0.75rem;
}
.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900; line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.hero-h1 .accent { color: var(--yellow); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.85);
  max-width: 520px; margin-top: 0.75rem;
}
.hero-phone {
  font-size: 1.5rem; font-weight: 800; margin-top: 0.5rem;
}
.hero-phone a { color: var(--yellow); }
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 1.25rem;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1.5rem;
}
.hero-badge {
  font-size: 0.78rem; font-weight: 600;
  padding: 0.25rem 0.8rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.25);
}

/* hero quote form */
.hero-form {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.75rem;
  padding: 1.5rem;
  align-self: start;
}
.hero-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 1rem;
}
.form-field { margin-bottom: 0.75rem; }
.form-field label {
  display: block; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 0.3rem; color: rgba(255,255,255,0.75);
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff; font-family: 'Barlow', sans-serif; font-size: 0.9rem;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-field select option { color: #111; background: #fff; }
.form-field textarea { resize: vertical; min-height: 80px; }

/* ---------- Emergency Strip ---------- */
.emergency-strip {
  background: var(--dark);
  color: #fff;
  padding: 0.85rem 0;
}
.emergency-strip-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 0.75rem;
}
.emergency-strip p { font-size: 0.95rem; font-weight: 600; }
.emergency-strip p span { color: var(--yellow); }

/* ---------- Services Grid ---------- */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--red); margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.01em; line-height: 1.1;
}
.section-intro { font-size: 1rem; color: var(--muted); margin-top: 0.5rem; max-width: 560px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.service-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }

.service-card-icon {
  background: var(--grey);
  padding: 2rem 1.5rem 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.service-icon-wrap {
  width: 3rem; height: 3rem; flex-shrink: 0;
  border-radius: 0.5rem;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.service-icon-wrap svg { color: #fff; }
.service-card-icon h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 800;
  text-transform: uppercase; line-height: 1.15; margin-top: 0.2rem;
}
.service-card-body { padding: 1.1rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card-body p { font-size: 0.9rem; color: var(--muted); flex: 1; }
.service-card-body .btn { margin-top: 1rem; align-self: flex-start; }

/* ---------- Cost Guide ---------- */
.cost-guide { background: var(--grey); }
.cost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.cost-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow);
}
.cost-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.cost-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 900; color: var(--red);
}
.cost-price span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.cost-card p { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; }

/* ---------- Reviews ---------- */
.reviews { background: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem; margin-top: 2rem;
}
.review-card {
  background: var(--grey); border-radius: 0.75rem;
  padding: 1.4rem;
  border-left: 4px solid var(--yellow);
}
.review-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 0.5rem; }
.review-text { font-size: 0.9rem; color: #333; font-style: italic; }
.review-author { font-weight: 700; font-size: 0.85rem; margin-top: 0.75rem; color: var(--dark); }

/* ---------- Local Areas ---------- */
.areas { background: var(--dark); color: #fff; }
.areas .section-title { color: #fff; }
.areas .section-intro { color: rgba(255,255,255,0.7); }
.areas-chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1.5rem;
}
.area-chip {
  font-size: 0.85rem; font-weight: 600;
  padding: 0.3rem 0.9rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  transition: background 0.15s;
}
.area-chip:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ---------- FAQ ---------- */
.faq { background: var(--grey); }
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-item details summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.25rem;
  font-weight: 700; font-size: 0.95rem;
}
.faq-item details summary::-webkit-details-marker { display: none; }
.faq-item details summary .faq-icon {
  font-size: 1.2rem; transition: transform 0.2s; flex-shrink: 0; color: var(--red);
}
.faq-item details[open] summary .faq-icon { transform: rotate(45deg); }
.faq-item details .faq-answer {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem; color: var(--muted);
}

/* ---------- Trust Section ---------- */
.trust-section { background: #fff; }
.trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem; margin-top: 2rem;
}
.trust-card {
  text-align: center; padding: 2rem 1rem;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--grey);
}
.trust-card-icon {
  width: 3.5rem; height: 3.5rem;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.trust-card-icon svg { color: #fff; }
.trust-card h3 { font-weight: 800; font-size: 1rem; margin-bottom: 0.35rem; }
.trust-card p { font-size: 0.85rem; color: var(--muted); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dk) 100%);
  color: #fff; text-align: center; padding: 3.5rem 0;
}
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.01em; margin-bottom: 0.75rem;
}
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.cta-banner-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

/* ---------- Service Page Hero ---------- */
.page-hero {
  background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(198,40,40,0.82) 100%),
    url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  color: #fff; padding: 3.5rem 0 3rem;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.01em; line-height: 1.05;
}
.page-hero h1 .accent { color: var(--yellow); }
.page-hero .hero-sub { margin-top: 0.75rem; font-size: 1rem; color: rgba(255,255,255,0.85); max-width: 560px; }
.page-hero .hero-cta { margin-top: 1.25rem; }

/* ---------- Content Sections ---------- */
.content-section { background: #fff; }
.content-section.alt { background: var(--grey); }
.content-block { max-width: 760px; }
.content-block h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; text-transform: uppercase; margin-bottom: 1rem;
}
.content-block p { font-size: 0.95rem; color: #444; margin-bottom: 0.75rem; }
.content-block ul { margin: 0.75rem 0 0.75rem 1.25rem; list-style: disc; }
.content-block ul li { font-size: 0.95rem; color: #444; margin-bottom: 0.4rem; }

.brands-list {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem;
}
.brand-pill {
  font-weight: 700; font-size: 0.82rem;
  padding: 0.3rem 0.85rem; border-radius: 999px;
  background: var(--dark); color: #fff;
}

/* ---------- Sticky Mobile Call Button ---------- */
.sticky-call {
  position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  z-index: 800;
  background: var(--yellow); color: #111;
  font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 1rem;
  padding: 0.85rem 2rem; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  display: flex; align-items: center; gap: 0.5rem;
  white-space: nowrap;
  transition: background 0.15s;
}
.sticky-call:hover { background: var(--yel-dk); }
@media (min-width: 900px) { .sticky-call { display: none; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #f5f5f5; padding: 3.5rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-logo img { height: 3rem; width: auto; margin-bottom: 1rem; }
.footer-desc { font-size: 0.88rem; color: #bbb; line-height: 1.65; }
.footer-contact-item { font-size: 0.88rem; color: #ddd; margin-top: 0.4rem; }
.footer-contact-item a { color: var(--yellow); }
.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 0.85rem; color: #fff;
}
.footer-links a {
  display: block; font-size: 0.875rem; color: #bbb;
  margin-bottom: 0.4rem; transition: color 0.15s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: #888;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--yellow); }
.gs-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.07); border-radius: var(--radius);
  padding: 0.35rem 0.75rem; font-size: 0.78rem; font-weight: 700;
  color: #fff;
}

/* ---------- Utilities ---------- */
.text-red  { color: var(--red); }
.text-yellow { color: var(--yellow); }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

/* ---------- Responsive helpers ---------- */
@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1fr 380px; }
  .page-hero .hero-inner { grid-template-columns: 1fr; }
}
