/* ============================================================
   ROOFEXPERTS - styles.css
   San Antonio, TX Roofing Company Website Clone
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --red:       #c8102e;
  --red-dark:  #a00d24;
  --red-light: #e8102e;
  --black:     #111111;
  --dark:      #1a1a1a;
  --dark-mid:  #252525;
  --dark-card: #2a2a2a;
  --gray:      #555555;
  --gray-light:#888888;
  --off-white: #f8f6f3;
  --white:     #ffffff;
  --gold:      #d4a017;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --shadow:    0 4px 24px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.25);
  --radius:    6px;
  --transition: 0.25s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- UTILITY ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- TOPBAR ---------- */
.topbar {
  background: var(--black);
  padding: 8px 0;
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.topbar-inner {
  display: flex;
  gap: 32px;
  align-items: center;
}
.topbar-phone {
  color: #aaa;
  transition: color var(--transition);
}
.topbar-phone.active { color: var(--white); }
.topbar-phone strong { color: var(--red); }
.topbar-phone:hover { color: var(--red-light); }

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  transition: background var(--transition);
}
.header.scrolled { background: rgba(17,17,17,0.97); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.logo-icon { font-size: 1.4rem; }
.logo-accent { color: var(--red); }
.footer-logo { font-size: 1.4rem; }

/* Nav */
.nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item {
  position: relative;
}
.nav-item > a {
  display: block;
  padding: 8px 14px;
  color: #ccc;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
  border-radius: var(--radius);
}
.nav-item > a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius) !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  overflow: hidden;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 10px 16px;
  color: #bbb;
  font-size: 0.88rem;
  font-family: var(--font-body);
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.dropdown li a:hover { background: var(--red); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(135deg, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.7) 50%, rgba(17,17,17,0.85) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600') center/cover no-repeat;
  color: var(--white);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(200,16,46,0.04) 2px,
    rgba(200,16,46,0.04) 4px
  );
  pointer-events: none;
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.hero-accent {
  color: var(--red);
  display: block;
  -webkit-text-stroke: 2px var(--red-light);
  text-shadow: 0 0 40px rgba(200,16,46,0.4);
}
.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: #ddd;
  margin-bottom: 8px;
  font-style: italic;
}
.hero-location {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 8px;
  max-width: 700px;
}
.hero-features li {
  font-size: 0.9rem;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hero ratings bar */
.hero-ratings {
  background: rgba(0,0,0,0.6);
  border-top: 1px solid rgba(200,16,46,0.3);
  padding: 18px 0;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(4px);
}
.hero-ratings-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-left: 2px solid var(--red);
}
.rating-platform {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stars { color: #ffc107; font-size: 0.85rem; }
.rating-text { font-size: 0.75rem; color: #aaa; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,16,46,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-secondary:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; text-align: center; }

/* ---------- SECTIONS ---------- */
.section-light {
  background: var(--off-white);
  padding: 80px 0;
}
.section-dark {
  background: var(--dark);
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.section-title.light { color: var(--white); }
.section-title.center { text-align: center; }

.section-subtitle {
  text-align: center;
  color: #bbb;
  font-size: 1rem;
  margin-bottom: 48px;
  font-style: italic;
}
.section-subtitle.dark { color: var(--gray); }

/* TWO COL LAYOUT */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse { }
.col-text p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}
.col-subtitle {
  font-size: 1.1rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 16px;
}
.col-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.check-list {
  margin-bottom: 20px;
}
.check-list li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
}

/* Image placeholder */
.image-placeholder {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(200,16,46,0.2);
  position: relative;
  overflow: hidden;
}
.image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(200,16,46,0.04) 20px,
    rgba(200,16,46,0.04) 40px
  );
}
.image-placeholder.dark {
  background: linear-gradient(135deg, #1f1f1f 0%, #2d2d2d 100%);
}
.image-icon { font-size: 3rem; position: relative; z-index: 1; }
.image-placeholder p { font-size: 1rem; color: #aaa; position: relative; z-index: 1; }
.cert-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cert-badge {
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* ---------- REVIEWS ---------- */
.reviews-section { padding: 80px 0; }
.reviews-header {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.google-score {
  background: var(--dark-card);
  border-radius: 10px;
  padding: 24px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  min-width: 160px;
  flex-shrink: 0;
}
.platform-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.score-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.stars-large { color: #ffc107; font-size: 1.2rem; margin: 6px 0; }
.review-count { font-size: 0.8rem; color: #888; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--dark-card);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), border-color var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,16,46,0.3);
}
.review-stars { color: #ffc107; font-size: 0.9rem; margin-bottom: 10px; }
.review-text {
  color: #bbb;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.review-author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}
.review-date { font-size: 0.75rem; color: #666; margin-top: 2px; }

/* ---------- AWARD SECTION ---------- */
.award-section {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.award-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.award-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.award-badge {
  text-align: center;
  flex-shrink: 0;
}
.award-icon { font-size: 4rem; }
.award-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.1em;
}
.award-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.award-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 560px;
}
.award-text .btn-primary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.award-text .btn-primary:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ---------- PROCESS ---------- */
.process-section { }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}
.process-step {
  background: var(--dark-card);
  border-radius: 10px;
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.process-step:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(200,16,46,0.15);
  line-height: 1;
  margin-bottom: 4px;
}
.step-icon { font-size: 1.8rem; margin-bottom: 12px; }
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.process-step p {
  color: #999;
  font-size: 0.88rem;
  line-height: 1.65;
}
.section-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------- SERVICES ---------- */
.services-section { }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 24px;
  border: 1px solid #e8e4e0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { font-size: 2.2rem; margin-bottom: 14px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.service-link:hover { color: var(--red-dark); }

/* ---------- FAQ ---------- */
.faq-section { }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 20px 44px 20px 0;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--red);
  transition: transform var(--transition);
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-question:hover { color: var(--red-light); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-answer p {
  color: #aaa;
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ---------- ABOUT SECTION ---------- */
.about-section { }

/* ---------- INSPECTION (FORM) SECTION ---------- */
.inspection-section {
  position: relative;
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.88) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400') center/cover no-repeat;
  color: var(--white);
}
.inspection-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(200,16,46,0.08), transparent);
  pointer-events: none;
}
.inspection-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.inspection-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.inspection-text p {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.inspection-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inspection-features li {
  font-size: 0.95rem;
  color: #ccc;
}

/* Form */
.inspection-form {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fafafa;
}
.form-group input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.12);
  background: var(--white);
}
.form-group input.error { border-color: #e74c3c; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}
.form-check input { width: auto; flex-shrink: 0; margin-top: 3px; }
.form-privacy {
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}

/* Field-level inline error messages */
.field-error-msg {
  display: none;
  font-size: 0.76rem;
  color: #e74c3c;
  margin-top: 5px;
  font-weight: 500;
  padding-left: 2px;
}

/* Banner error above submit button */
.form-error-msg {
  background: #fdf0f0;
  border: 1px solid #f5c6cb;
  color: #c0392b;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius);
  margin-bottom: 14px;
}

/* Inline alert (network / API errors) */
.form-alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.form-alert--error {
  background: #fdf0f0;
  border: 1px solid #f5c6cb;
  color: #c0392b;
}
.form-alert--success {
  background: #eafaf1;
  border: 1px solid #a9dfbf;
  color: #1e8449;
}
.form-success {
  text-align: center;
  padding: 20px;
}
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.form-success p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--black);
  padding: 64px 0 0;
  color: #aaa;
  font-size: 0.88rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { }
.footer-tagline { color: #666; font-size: 0.85rem; margin: 10px 0 20px; }
.footer-social { display: flex; gap: 14px; font-size: 1.3rem; }
.footer-social a { transition: transform var(--transition); display: block; }
.footer-social a:hover { transform: scale(1.2); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a:hover { color: var(--red-light); }
.footer-contact li { color: #888; line-height: 1.5; }
.footer-contact a { color: #aaa; transition: color var(--transition); }
.footer-contact a:hover { color: var(--red-light); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: #555; margin-bottom: 4px; }
.footer-links a { color: #666; margin: 0 4px; transition: color var(--transition); }
.footer-links a:hover { color: var(--red-light); }

/* ---------- STICKY CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--dark);
  border-top: 2px solid var(--red);
}
.sticky-btn {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  gap: 6px;
}
.call-btn { background: var(--dark-card); border-right: 1px solid rgba(255,255,255,0.1); }
.inspect-btn { background: var(--red); }
.call-btn:hover { background: #333; }
.inspect-btn:hover { background: var(--red-dark); }

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .two-col { gap: 40px; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--dark);
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav.open { display: block; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-item > a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 1.1rem; }
  .dropdown { display: none !important; }
  .hamburger { display: flex; }
  .nav-cta { margin-top: 12px; text-align: center; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding-top: 60px; }
  .hero-features { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }
  .hero-ratings-inner { gap: 8px; }
  .rating-badge { padding: 4px 10px; }
  .rating-text { display: none; }

  /* Two col */
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse .col-image { order: -1; }

  /* Inspection */
  .inspection-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }

  /* Award */
  .award-inner { flex-direction: column; text-align: center; gap: 24px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }

  /* Sticky CTA */
  .sticky-cta { display: flex; }
  body { padding-bottom: 56px; }

  /* Process */
  .process-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 3rem; }
  .process-steps { grid-template-columns: 1fr; }
  .inspection-form { padding: 28px 20px; }
  .reviews-header { flex-direction: column; align-items: center; text-align: center; }
  .reviews-header .section-title { font-size: 1.6rem; }
}
