/* ===================================================
   JC ROOFING – Brand Stylesheet
   Colors: Red #C8102E | Blue #003399 | Dark #111
   =================================================== */

:root {
  --red:       #C8102E;
  --red-dark:  #a00d24;
  --red-light: #e8192e;
  --blue:      #003399;
  --blue-dark: #002277;
  --dark:      #111111;
  --dark-2:    #1a1a1a;
  --dark-3:    #222222;
  --mid:       #444444;
  --grey:      #f4f5f7;
  --grey-2:    #e8eaed;
  --text:      #2c2c2c;
  --text-muted:#666666;
  --white:     #ffffff;
  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.14);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.22);
  --transition: 0.22s ease;
  --max-w:     1200px;
  --header-h:  80px;
  --topbar-h:  40px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Oswald', 'Inter', sans-serif; line-height: 1.15; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
}
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; font-size: 16px; padding: 17px; }

.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,16,46,0.35); }

.btn-white { background: var(--white); color: var(--red); border-color: var(--white); font-weight: 700; }
.btn-white:hover { background: var(--grey); transform: translateY(-1px); }

.btn-white-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-white-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-dark-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-dark-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--dark);
  height: var(--topbar-h);
  border-bottom: 2px solid var(--red);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.topbar-items {
  display: flex;
  gap: 28px;
  align-items: center;
}
.topbar-items span {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topbar-items span::before { color: var(--red); margin-right: 4px; }
.topbar-phone {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  padding: 4px 14px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}
.topbar-phone:hover { background: var(--red-dark); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--dark-2);
  height: var(--header-h);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  border-bottom: 3px solid var(--red);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.logo { height: 62px; width: 62px; border-radius: 50%; object-fit: cover; }
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--white);
  line-height: 1.2;
}
.phone-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.phone-number { font-size: 17px; font-weight: 700; font-family: 'Oswald', sans-serif; letter-spacing: 0.03em; }
.phone-number:hover { color: var(--red); }
.header-quote { font-size: 14px; padding: 10px 20px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - var(--topbar-h) - var(--header-h));
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* Roof tile grid pattern */
.hero-tile-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0px, transparent 59px,
      rgba(255,255,255,0.025) 59px, rgba(255,255,255,0.025) 60px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px, transparent 39px,
      rgba(255,255,255,0.025) 39px, rgba(255,255,255,0.025) 40px
    );
}
/* Big diagonal red accent */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 140%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 60%, #6b000f 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.12;
  z-index: 0;
}
/* Blue accent bottom left */
.hero::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(0,51,153,0.25) 0%, transparent 70%);
  z-index: 0;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 80px 28px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.red-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,16,46,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(200,16,46,0); }
}
.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.text-red { color: var(--red); }
.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-fb-review {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-left: 4px solid #1877f2;
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  margin-bottom: 28px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
  max-width: 360px;
}
.hero-fb-review:hover { background: rgba(24,119,242,0.15); transform: translateY(-1px); }
.hero-fb-icon { flex-shrink: 0; }
.hero-fb-text { display: flex; flex-direction: column; gap: 2px; }
.hero-fb-stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; line-height: 1; }
.hero-fb-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.9); }
.hero-fb-arrow { font-size: 18px; color: rgba(255,255,255,0.4); margin-left: auto; }
.hero-badges {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  display: inline-flex;
}
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
.badge-num {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.badge-txt {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.badge-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Hero right cards */
.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.hero-logo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border-top: 5px solid var(--red);
  min-width: 240px;
}
.hero-logo-card img {
  width: 160px;
  height: 160px;
  display: block;
  margin: 0 auto 14px;
}
.hero-logo-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-call-card {
  background: var(--red);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(200,16,46,0.4);
  cursor: pointer;
}
.hero-call-card:hover { background: var(--red-dark); transform: translateY(-1px); }
.call-card-icon { font-size: 24px; color: rgba(255,255,255,0.9); flex-shrink: 0; }
.call-card-label { font-size: 11px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; display: block; }
.call-card-number { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); display: block; letter-spacing: 0.03em; }
.hero-emergency-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.emergency-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}
.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero-scroll-hint span { font-size: 11px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.1em; }
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
  margin-top: -4px;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--dark-3);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 4px solid var(--red);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  gap: 8px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
}
.trust-icon { font-size: 24px; flex-shrink: 0; }
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { font-size: 14px; color: var(--white); font-weight: 700; line-height: 1.2; }
.trust-item span { font-size: 12px; color: rgba(255,255,255,0.5); }
.trust-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ===== SECTION SHARED ===== */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--dark); margin-bottom: 12px; letter-spacing: -0.01em; }
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }
.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  background: rgba(200,16,46,0.1);
  border: 1px solid rgba(200,16,46,0.25);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.pill-label.light {
  background: rgba(200,16,46,0.2);
  border-color: rgba(200,16,46,0.4);
  color: #ff7a8a;
}

/* ===== SERVICES ===== */
.services { background: var(--grey); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--grey-2);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grey-2);
  transition: background var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(200,16,46,0.15); }
.service-card:hover::before { background: var(--red); }
.service-card.featured {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.service-card.featured::before { background: rgba(0,0,0,0.15); }
.service-card.featured:hover { box-shadow: 0 8px 48px rgba(200,16,46,0.4); }
.service-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.service-icon-wrap svg { width: 24px; height: 24px; }
.service-icon-wrap.red { background: rgba(200,16,46,0.1); color: var(--red); }
.service-icon-wrap.blue { background: rgba(0,51,153,0.1); color: var(--blue); }
.service-icon-wrap.white { background: rgba(255,255,255,0.2); color: var(--white); }
.service-body { flex: 1; margin-bottom: 20px; }
.service-body h3 { font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.service-card.featured .service-body h3 { color: var(--white); }
.service-body p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.service-card.featured .service-body p { color: rgba(255,255,255,0.8); }
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { gap: 8px; }
.service-link.light { color: rgba(255,255,255,0.85); }
.service-link.light:hover { color: var(--white); }

/* ===== RED CTA BAND ===== */
.cta-band {
  background: var(--red);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 20px,
    rgba(0,0,0,0.04) 20px, rgba(0,0,0,0.04) 21px
  );
  padding: 60px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--white); margin-bottom: 8px; }
.cta-band-text p { font-size: 16px; color: rgba(255,255,255,0.8); max-width: 480px; }
.cta-band-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ===== WHY US ===== */
.why-us { background: var(--dark); }
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-left h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--white); margin-bottom: 20px; }
.why-left p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 16px; }
.why-cta { margin-top: 16px; margin-bottom: 20px; }
.why-phone-row { display: flex; align-items: center; gap: 10px; }
.why-phone-row span { font-size: 14px; color: rgba(255,255,255,0.45); }
.why-phone-row a { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: 0.03em; }
.why-phone-row a:hover { color: var(--red); }
.why-right { display: flex; flex-direction: column; gap: 2px; }
.why-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  transition: background var(--transition), border-color var(--transition);
}
.why-card:hover { background: rgba(200,16,46,0.1); border-color: rgba(200,16,46,0.25); }
.why-num {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  opacity: 0.85;
}
.why-body h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-body p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ===== ENQUIRY SECTION ===== */
.enquiry-section {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.enquiry-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: rgba(200,16,46,0.04);
  border-left: 1px solid rgba(200,16,46,0.1);
}
.enquiry-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.enquiry-info h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--white); margin-bottom: 16px; margin-top: 10px; }
.enquiry-info p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 28px; }
.check-list { margin-bottom: 36px; }
.check-list li {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-list li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-direct { display: flex; flex-direction: column; gap: 12px; }
.contact-direct-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--red);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
}
.contact-direct-phone:hover { background: var(--red-dark); transform: translateY(-1px); }
.cd-icon { font-size: 24px; }
.cd-label { font-size: 11px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; display: block; }
.cd-number { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; display: block; letter-spacing: 0.03em; }
.contact-direct-email {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  transition: background var(--transition), color var(--transition);
}
.contact-direct-email:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* ===== FORM ===== */
.form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.form-box-header {
  background: var(--red);
  padding: 24px 32px;
}
.form-box-header h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.form-box-header p { font-size: 14px; color: rgba(255,255,255,0.8); }
form { padding: 28px 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); text-transform: uppercase; letter-spacing: 0.04em; }
.req { color: var(--red); }
.opt { font-weight: 400; color: var(--text-muted); text-transform: none; letter-spacing: 0; font-size: 12px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--grey-2);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
}
.form-group input.error,
.form-group select.error { border-color: var(--red); background: rgba(200,16,46,0.03); }
.form-group textarea { resize: vertical; min-height: 96px; }
.form-disclaimer { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 10px; }
.form-feedback {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
}
.form-feedback.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-feedback.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.hidden { display: none !important; }

/* ===== FOOTER ===== */
.footer { background: #0d0d0d; padding: 72px 0 0; }
.footer-brand-stripe {
  height: 5px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--red) 50%, var(--blue) 100%);
  margin-bottom: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 80px; width: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; }
.footer-about p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 300px; margin-bottom: 20px; }
.footer-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.footer-tel:hover { color: var(--red); }
.footer-fb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-fb:hover { color: #1877f2; }
.trust-fb-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}
.trust-fb-link:hover { opacity: 0.8; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-col ul li { padding: 5px 0; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact li { padding: 6px 0; font-size: 14px; color: rgba(255,255,255,0.55); }
.footer-contact a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-btn { margin-top: 20px; }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom-inner p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-inner a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom-inner a:hover { color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-card-stack { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; gap: 14px; }
  .hero-logo-card { flex-shrink: 0; }
  .hero-call-card { flex: 1; min-width: 200px; }
  .hero-emergency-card { width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .enquiry-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; --topbar-h: 0px; }
  .topbar { display: none; }

  /* Nav */
  .nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px 20px;
    gap: 0;
    z-index: 998;
    border-top: 3px solid var(--red);
    overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav a {
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    letter-spacing: 0.04em;
  }
  .nav a:hover { background: none; color: var(--red); }
  .burger { display: flex; }
  .header-right { gap: 8px; }
  .header-phone { display: none; }
  .header-quote { padding: 9px 14px; font-size: 13px; }

  /* Hero */
  .hero { min-height: auto; padding-bottom: 40px; }
  .hero-layout { padding: 36px 20px; gap: 36px; grid-template-columns: 1fr; }
  .hero-eyebrow { font-size: 11px; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-content p { font-size: 16px; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; gap: 10px; margin-bottom: 20px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-fb-review { max-width: 100%; margin-bottom: 24px; }
  .hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 14px 16px;
    width: 100%;
  }
  .badge-divider { display: none; }
  .badge { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .badge:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); padding-right: 12px; }
  .badge:nth-child(even) { padding-left: 12px; }
  .badge-num { font-size: 22px; }
  .badge-txt { font-size: 10px; }

  /* Hero card stack */
  .hero-card-stack { flex-direction: column; gap: 12px; }
  .hero-logo-card { min-width: unset; width: 100%; padding: 20px; }
  .hero-logo-card img { width: 120px; height: 120px; }
  .hero-call-card { width: 100%; }
  .hero-emergency-card { width: 100%; }

  /* Trust strip */
  .trust-inner { flex-wrap: wrap; gap: 12px; padding: 16px 20px; justify-content: flex-start; }
  .trust-sep { display: none; }
  .trust-item { flex: 1 1 45%; justify-content: flex-start; min-width: 140px; }
  .trust-icon { font-size: 20px; }
  .trust-item strong { font-size: 13px; }
  .trust-item span { font-size: 11px; }

  /* Services */
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 24px 20px 18px; }

  /* CTA band */
  .cta-band { padding: 40px 0; }
  .cta-band-inner { flex-direction: column; text-align: center; gap: 24px; }
  .cta-band-text h2 { font-size: 1.6rem; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }

  /* Why us */
  .why-left h2 { font-size: 1.8rem; }
  .why-card { padding: 18px; }

  /* Enquiry */
  .enquiry-section::before { display: none; }
  .enquiry-wrapper { gap: 32px; }
  .enquiry-info h2 { font-size: 1.8rem; }
  .contact-direct-phone { padding: 14px 16px; }
  .cd-number { font-size: 20px; }
  .form-row { grid-template-columns: 1fr; }
  form { padding: 20px 16px; }
  .form-box-header { padding: 18px 20px; }
  .form-box-header h3 { font-size: 18px; }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-about { grid-column: auto; }
  .footer-logo { height: 64px; width: 64px; }
  .footer-tel { font-size: 20px; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-logo-card img { width: 100px; height: 100px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { gap: 24px; }
}
