/* ============================================================
   GUARDIAN HOME INSPECTIONS — Main Stylesheet
   Refined Luxury | Navy · Gold · Steel
   ============================================================ */

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

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', 'Segoe UI', Arial, sans-serif;
  color: #1e2230;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Design Tokens --- */
:root {
  --navy:         #0f1628;
  --navy-mid:     #1a2540;
  --navy-light:   #253356;
  --gold:         #c8a84b;
  --gold-light:   #dfc06a;
  --gold-dark:    #a8872e;
  --gold-pale:    #fdf6e3;
  --green:        #2e6b4a;
  --green-dark:   #1f4e35;
  --green-light:  #3d8a5e;
  --steel:        #8a9ab5;
  --light-bg:     #f4f5f8;
  --border:       #e2e6ee;
  --text-muted:   #5a6478;
  --white:        #ffffff;
  --shadow-sm:    0 2px 8px rgba(15,22,40,0.08);
  --shadow-md:    0 8px 32px rgba(15,22,40,0.12);
  --shadow-lg:    0 20px 60px rgba(15,22,40,0.18);
  --shadow-gold:  0 8px 32px rgba(200,168,75,0.25);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
  color: #a0aec0;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 9px 0;
  text-align: center;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(200,168,75,0.2);
}
.top-bar strong { color: #fff; }
.top-bar a { color: var(--gold); font-weight: 700; transition: color var(--transition); }
.top-bar a:hover { color: #fff; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(15,22,40,0.08);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(15,22,40,0.15);
  background: rgba(255,255,255,0.99);
}
body { padding-top: 80px; }

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.site-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  transition: transform var(--transition);
}
.site-logo:hover img { transform: scale(1.05); }
.site-logo .logo-text { display: flex; flex-direction: column; }
.site-logo .logo-name {
  font-family: 'Cinzel', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: 1px;
  display: block;
}
.site-logo .logo-sub { display: none; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-mid);
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 13px; right: 13px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a:hover,
.main-nav a.active { color: var(--gold-dark); background: var(--gold-pale); }

.main-nav .btn-book {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-left: 10px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(46,107,74,0.35);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.main-nav .btn-book::after { display: none; }
.main-nav .btn-book:hover {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,107,74,0.45);
  color: #fff;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.72;
  transform: scale(1.03);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,22,40,0.48) 0%,
    rgba(15,22,40,0.22) 55%,
    rgba(15,22,40,0.04) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 28px;
  color: #fff;
}
.hero-content .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-gold);
}
.hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  max-width: 720px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 1.12rem;
  max-width: 540px;
  margin-bottom: 40px;
  opacity: 0.88;
  line-height: 1.75;
  color: #e8ecf4;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  padding: 15px 36px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(46,107,74,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(46,107,74,0.5);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 34px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.6);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  display: inline-block;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
}
.btn-link {
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.btn-link:hover { gap: 10px; color: var(--green-dark); }
.btn-large { padding: 18px 48px; font-size: 1.05rem; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  padding: 32px 28px;
  border-bottom: 1px solid rgba(200,168,75,0.2);
}
.trust-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item {
  padding: 16px 12px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { transform: translateY(-3px); }
.trust-item .trust-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(200,168,75,0.4));
}
.trust-item strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.5px;
}
.trust-item span { font-size: 0.8rem; color: var(--steel); }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 90px 28px; }
.section-light { background: var(--light-bg); }
.section-dark { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: #fff; }
.section-white { background: #fff; }
.section-testimonials { background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%); }
.section-cta { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); color: #fff; text-align: center; }

.container { max-width: 1240px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  display: block;
}
.section-dark .section-label,
.section-testimonials .section-label { color: var(--gold); }

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.section-title-light,
.section-dark .section-title,
.section-testimonials .section-title { color: #fff; }
.section-cta .section-title { color: #fff; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 52px;
  line-height: 1.75;
}
.section-dark .section-subtitle,
.section-testimonials .section-subtitle { color: #8a9ab5; }
.section-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.cta-center { text-align: center; margin-top: 48px; }

/* ============================================================
   ABOUT / SPLIT SECTION
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,22,40,0.3) 0%, transparent 50%);
  z-index: 1;
}
.split-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.split-image:hover img { transform: scale(1.03); }
.split-image .badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: var(--shadow-gold);
}

.split-content .section-title { margin-bottom: 22px; }
.split-content p { color: var(--text-muted); margin-bottom: 20px; font-size: 1.02rem; line-height: 1.8; }

.feature-list { margin: 28px 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.97rem;
  color: var(--text-muted);
}
.feature-list li .check {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(46,107,74,0.3);
}

/* ============================================================
   WHY CHOOSE US CARDS
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.feature-card .feature-icon {
  font-size: 2.6rem;
  margin-bottom: 18px;
  display: block;
}
.feature-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.feature-card p { font-size: 0.9rem; color: #8a9ab5; line-height: 1.7; }

/* ============================================================
   SERVICES CARDS (homepage)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover img { transform: scale(1.05); }
.service-card .card-body { padding: 28px; }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-card .btn-link { font-size: 0.82rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: transform var(--transition), background var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 12px; left: 22px;
  line-height: 1;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: #c0c8d8;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card strong {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.testimonial-card span {
  font-size: 0.82rem;
  color: var(--steel);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.section-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.section-cta .btn-primary {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.section-cta .btn-primary:hover {
  background: #f0f4f8;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  color: #8a9ab5;
}

/* footer-inner layout (index.html, contact.html) */
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 28px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* footer-grid layout (services/other pages) */
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 28px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand/logo column */
.footer-content,
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo-wrap,
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo-wrap img,
.footer-brand .footer-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(200,168,75,0.2));
}
.footer-company-name,
.footer-brand .footer-logo-name {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.2;
}
.footer-content > p,
.footer-brand > p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #6a7a94;
  margin-bottom: 24px;
}

.footer-contact p {
  font-size: 0.88rem;
  color: #6a7a94;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a { color: var(--gold); transition: color var(--transition); }
.footer-contact a:hover { color: #fff; }

/* Link columns */
.footer-links,
.footer-col {
  padding-top: 4px;
}
.footer-links h4,
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-links ul li,
.footer-col ul li { margin-bottom: 10px; }
.footer-links ul li a,
.footer-col ul li a {
  color: #6a7a94;
  font-size: 0.88rem;
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}
.footer-links ul li a:hover,
.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 6px;
}

/* Legal column */
.footer-legal { padding-top: 4px; }
.footer-legal h4 {
  font-family: 'Barlow Condensed', sans-serif;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-legal a {
  color: #6a7a94;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* Contact col (some pages) */
.footer-contact-col p {
  font-size: 0.88rem;
  color: #6a7a94;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact-col a { color: var(--gold); transition: color var(--transition); }
.footer-contact-col a:hover { color: #fff; }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: #3d4d63;
}
.footer-bottom a { color: #4d5e76; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
.trec-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  padding: 80px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.75;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.page-hero p {
  font-size: 1.08rem;
  color: #8a9ab5;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.breadcrumb {
  font-size: 0.8rem;
  color: #5a6a84;
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-list { display: flex; flex-direction: column; gap: 70px; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-row img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
}
.service-row img:hover { transform: scale(1.02); }
.service-row-content .service-badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid rgba(200,168,75,0.3);
}
.service-row-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.service-row-content p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 0.97rem;
  line-height: 1.8;
}
.service-row-content .includes-list { margin: 20px 0; }
.service-row-content .includes-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.service-row-content .includes-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
}

/* Add-on grid */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.addon-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.addon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.addon-card .addon-icon { font-size: 2.2rem; margin-bottom: 14px; }
.addon-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.addon-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* Included always */
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.included-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--transition), background var(--transition);
}
.included-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}
.included-item .inc-icon { font-size: 2.4rem; margin-bottom: 14px; }
.included-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.included-item p { font-size: 0.85rem; color: #6a7a94; }

/* ============================================================
   YOUR INSPECTION PAGE
   ============================================================ */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 31px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--border));
}
.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-number {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-gold);
  font-family: 'Barlow Condensed', sans-serif;
}
.step-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.step-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }

/* Areas grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.area-item {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--green);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  transition: transform var(--transition), box-shadow var(--transition);
}
.area-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.area-item .area-icon { font-size: 1.6rem; flex-shrink: 0; }
.area-item h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.area-item p { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   YOUR REPORT PAGE
   ============================================================ */
.report-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.report-feature {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.report-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.report-feature .rf-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--gold-pale) 0%, #fff5d6 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid rgba(200,168,75,0.2);
}
.report-feature h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.report-feature p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   CONTACT / QUOTE PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.contact-info p { color: var(--text-muted); margin-bottom: 32px; font-size: 0.97rem; line-height: 1.75; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-detail .cd-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}
.contact-detail h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.contact-detail p { font-size: 1rem; color: var(--navy); font-weight: 600; margin: 0; }
.contact-detail a { color: var(--green); }

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 28px;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.97rem;
  color: var(--navy);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fafbfd;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.15);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(46,107,74,0.35);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(46,107,74,0.45); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.credential-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), background var(--transition);
}
.credential-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}
.credential-card .cred-icon { font-size: 2.6rem; margin-bottom: 14px; }
.credential-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.credential-card p { font-size: 0.88rem; color: #6a7a94; line-height: 1.65; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  margin-top: 52px;
}
.stat-item .stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .stat-label {
  font-size: 0.82rem;
  color: #6a7a94;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================================
   CTA PHONE / MISC
   ============================================================ */
.cta-phone {
  margin-top: 20px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.cta-phone a { color: #fff; }
.cta-center a { display: inline-block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    padding: 16px 24px 24px;
    box-shadow: 0 12px 40px rgba(15,22,40,0.15);
    border-top: 1px solid var(--border);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 0; border-bottom: 1px solid var(--border); border-radius: 0; }
  .main-nav a::after { display: none; }
  .main-nav .btn-book { margin: 14px 0 0; border-radius: var(--radius-sm); text-align: center; }
  .nav-toggle { display: flex; }

  .hero { min-height: 480px; }
  .hero-content { padding: 72px 24px; }
  .hero-content h1 { font-size: 2.2rem; }

  .split-section,
  .split-section.reverse,
  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }
  .split-section.reverse > *,
  .service-row.reverse > * { direction: ltr; }

  .services-grid,
  .testimonials-grid,
  .addons-grid,
  .areas-grid,
  .report-features,
  .credentials-grid,
  .included-grid { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner,
  .footer-grid { grid-template-columns: 1fr; padding: 40px 24px 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 20px; }
  .contact-form-wrap { padding: 28px 20px; }
  .section { padding: 64px 20px; }
}

@media (max-width: 480px) {
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons a { text-align: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'Barlow', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  transition: background var(--transition), color var(--transition);
}
.faq-question:hover { background: var(--gold-pale); }
.faq-item.open .faq-question {
  color: var(--gold-dark);
  background: var(--gold-pale);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-bg);
  flex-shrink: 0;
  position: relative;
  transition: background var(--transition), transform var(--transition);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon {
  background: var(--gold);
  transform: rotate(45deg);
}
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--navy); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding var(--transition);
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 22px;
}
.faq-answer p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-answer strong { color: var(--navy); }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-trust-strip {
  background: var(--navy);
  border-bottom: 2px solid rgba(200,168,75,0.2);
  padding: 14px 28px;
}
.booking-trust-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}
.bt-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #c0cce0;
}
.bt-icon { font-size: 1rem; }

.booking-section { background: var(--light-bg); }
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
}
.scheduler-header {
  margin-bottom: 24px;
}
.scheduler-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.scheduler-header p {
  font-size: 0.97rem;
  color: var(--text-muted);
}
.spectora-embed {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* Sidebar */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.booking-info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.booking-info-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  letter-spacing: 0.5px;
}
.booking-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.bs-num {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: var(--shadow-gold);
}
.booking-steps li strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 3px;
}
.booking-steps li p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.booking-contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.booking-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking-services-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   CTA SECTION alias fix (used on inner pages)
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 72px 24px;
}
.cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 36px;
}
.btn-cta {
  background: #fff;
  color: var(--green-dark);
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1.05rem;
  display: inline-block;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.btn-cta:hover { background: #f0f4f8; transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE — BOOKING PAGE
   ============================================================ */
@media (max-width: 1024px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .booking-info-card { flex: 1; min-width: 260px; }
}
@media (max-width: 768px) {
  .booking-trust-inner { gap: 14px; justify-content: flex-start; }
  .booking-sidebar { flex-direction: column; }
  .booking-info-card { min-width: unset; }
}

/* ============================================================
   BIG SHOULDERS DISPLAY — Title font (matches logo character)
   ============================================================ */


.section-title,
.page-hero h1,
.hero-content h1,
.section-cta h2,
.cta-section h2,
.service-row-content h2,
.contact-info h2,
.contact-form-wrap h3,
.scheduler-header h2,
.booking-info-card h3,
.split-content .section-title,
.footer-links h4,
.footer-col h4,
.footer-legal h4 {
  font-family: 'Montserrat', 'Barlow Condensed', sans-serif !important;
  letter-spacing: 1px;
}

/* ============================================================
   CREDENTIAL CARDS — gold bg, navy icon
   ============================================================ */
.cred-icon-wrap {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--gold-pale) 0%, #fff8e1 100%);
  border: 1.5px solid rgba(200,168,75,0.35);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background var(--transition), transform var(--transition);
}
.credential-card:hover .cred-icon-wrap {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scale(1.08);
}
.cred-icon-wrap i {
  font-size: 26px;
  color: var(--navy);
}
/* hide old emoji icon */
.cred-icon { display: none; }

/* ============================================================
   FEATURE CARDS — gold bg icon (about commitment section)
   ============================================================ */
.feature-icon-wrap {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--gold-pale) 0%, #fff8e1 100%);
  border: 1.5px solid rgba(200,168,75,0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background var(--transition), transform var(--transition);
}
.feature-card:hover .feature-icon-wrap {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scale(1.08);
}
.feature-icon-wrap i {
  font-size: 24px;
  color: var(--navy);
}
/* hide old span.icon emoji */
.feature-card > span.icon { display: none; }
.section-dark .feature-icon-wrap {
  background: rgba(200,168,75,0.15);
  border-color: rgba(200,168,75,0.25);
}
.section-dark .cred-icon-wrap {
  background: rgba(200,168,75,0.15);
  border-color: rgba(200,168,75,0.25);
}
.section-dark .feature-icon-wrap i,
.section-dark .cred-icon-wrap i { color: var(--gold); }

/* ============================================================
   ADDON CARDS WITH PHOTOS
   ============================================================ */
.addon-card-photo {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: #fff;
  border-left: none; /* override old left border */
  transition: transform var(--transition), box-shadow var(--transition);
}
.addon-card-photo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.addon-photo {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.addon-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.addon-card-photo:hover .addon-photo img {
  transform: scale(1.06);
}
.addon-body {
  padding: 22px 20px 24px;
}
.addon-body h3 {
  font-family: 'Montserrat', 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.addon-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
/* 7 cards — 3 col then wrap */
.addons-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ============================================================
   SERVICE AREAS / CITIES
   ============================================================ */
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 28px;
  max-width: 900px;
}
.city-tag {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-mid);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  cursor: default;
}
.city-tag:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold-dark);
}
.cities-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.cities-note a {
  color: var(--green);
  font-weight: 600;
}

/* ============================================================
   MOBILE STICKY BOOK NOW BUTTON
   ============================================================ */
.mobile-book-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 100px;
  font-family: 'Montserrat', 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(46,107,74,0.5);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  opacity: 0;
  transform: translateY(10px);
}
.mobile-book-btn.visible {
  opacity: 1;
  transform: translateY(0);
}
.mobile-book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(46,107,74,0.6);
}

@media (max-width: 768px) {
  .mobile-book-btn { display: block; }
  .addons-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cities-grid { gap: 8px; }
  .city-tag { font-size: 0.8rem; padding: 6px 14px; }
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero { position: relative; min-height: 620px; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), transform 8s ease-out;
}
.hero-slide.active { opacity: 0.72; transform: scale(1.0); }
.hero-slide.prev   { opacity: 0;    transform: scale(1.04); }
/* overlay still on hero::after */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,22,40,0.48) 0%,
    rgba(15,22,40,0.22) 55%,
    rgba(15,22,40,0.04) 100%
  );
  z-index: 1;
  pointer-events: none;
}
/* Carousel dots */
.hero-dots {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.hero-dot.active { background: var(--gold); transform: scale(1.3); }

/* ============================================================
   SOCIAL MEDIA ICONS — FOOTER
   ============================================================ */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.social-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #8a9ab5;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
  font-size: 1rem;
}
.social-icon:hover {
  background: rgba(200,168,75,0.15);
  color: var(--gold);
  border-color: rgba(200,168,75,0.3);
}
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }

/* ============================================================
   ABOUT PAGE — SECTION CONTRAST FIXES
   ============================================================ */
/* Qualifications section — keep dark but fix icon contrast */
.section-dark .cred-icon-wrap,
.credentials-grid .cred-icon-wrap {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  border-color: var(--gold-dark) !important;
}
.section-dark .cred-icon-wrap i,
.credentials-grid .cred-icon-wrap i {
  color: var(--navy) !important;
  font-size: 28px;
}
.section-dark .credential-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--gold);
}
.section-dark .credential-card h3 {
  color: #fff;
  font-size: 1rem;
}
.section-dark .credential-card p { color: #b0bcd4; line-height: 1.7; }

/* Our Promise section — light background with strong contrast */
.section-promise {
  background: var(--light-bg) !important;
  color: var(--navy) !important;
}
.section-promise .section-label { color: var(--gold-dark); }
.section-promise .section-title { color: var(--navy); }
.section-promise .section-subtitle { color: var(--text-muted); }
.section-promise .feature-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.section-promise .feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.section-promise .feature-card h3 { color: var(--navy); }
.section-promise .feature-card p { color: var(--text-muted); }
.section-promise .feature-icon-wrap {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  border-color: var(--gold-dark) !important;
}
.section-promise .feature-icon-wrap i { color: var(--navy) !important; }
.section-promise .feature-card::before { background: var(--gold); }

/* ============================================================
   SECTION BACKGROUND CONSISTENCY
   All pages follow the same alternating pattern:
   light → dark → light → dark
   ============================================================ */
/* Force consistent alternating on about/your-inspection/your-report */
.page-section-alt { background: var(--light-bg); }
.page-section-dark { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: #fff; }

/* Stats row on about page - ensure white text on dark bg */
.stats-row .stat-item .stat-number { color: var(--gold); }
.stats-row .stat-item .stat-label { color: #8a9ab5; }


/* ============================================================
   SPECTORA INFOGRAPHIC
   ============================================================ */
.spectora-infographic {
  margin: 0 auto;
  max-width: 900px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.spectora-infographic:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.spectora-infographic a {
  display: block;
  line-height: 0;
}
.spectora-infographic img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   DARK BACKGROUND PROCESS STEPS
   ============================================================ */
.process-steps-dark .process-step {
  border-bottom-color: rgba(255,255,255,0.08);
}
.process-steps-dark::before {
  background: linear-gradient(to bottom, var(--gold), rgba(200,168,75,0.2));
}
.process-steps-dark .step-content h3 {
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.process-steps-dark .step-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ============================================================
   SPLIT INFOGRAPHIC COLUMN
   ============================================================ */
.split-infographic {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.split-infographic .section-label {
  color: var(--gold);
}
.split-infographic .section-title {
  color: #fff;
}
.split-infographic .spectora-infographic {
  margin: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
/* Override split-section grid so infographic gets more width */
.split-section:has(.split-infographic) {
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) {
  .split-section:has(.split-infographic) {
    grid-template-columns: 1fr;
  }
  .split-infographic { margin-top: 0; }
}

/* Tips section on dark background */
.section-dark .feature-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.section-dark .feature-card h3 { color: #fff; }
.section-dark .feature-card p  { color: #8a9ab5; }
.section-dark .section-title   { color: #fff; }
.section-dark .section-subtitle{ color: #8a9ab5; }
.section-dark .section-label   { color: var(--gold); }

/* ============================================================
   YOUTUBE VIDEO EMBED — responsive 16:9
   ============================================================ */
.report-video-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  background: #000;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: var(--radius-md);
}

/* rf-icon with Tabler icons */
.rf-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--gold-pale) 0%, #fff5d6 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid rgba(200,168,75,0.2);
}
.rf-icon i { font-size: 24px; color: var(--navy); }

/* ============================================================
   QUOTE WIDGET — responsive, fits all screens
   ============================================================ */
.quote-widget-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.quote-iframe {
  border: 0;
  display: block;
  width: 1px;            /* trick: force iframe to fill container width */
  min-width: 100%;
  height: 78vh;
  min-height: 620px;
  max-height: 950px;
}
/* Tablet */
@media (max-width: 1024px) {
  .quote-widget-wrap { max-width: 100%; }
}
/* Mobile — give it lots of vertical room, full width, no side gap */
@media (max-width: 768px) {
  .quote-widget-wrap {
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
  .quote-iframe {
    height: auto;
    min-height: 1400px;   /* tall enough to show full form + price without inner scroll */
    max-height: none;
  }
}
@media (max-width: 480px) {
  .quote-iframe { min-height: 1500px; }
}

/* ============================================================
   MOBILE OVERFLOW GUARD — prevent horizontal scroll / black gap
   ============================================================ */
html, body { overflow-x: hidden; max-width: 100%; }
.section, .container { max-width: 100%; }

/* ============================================================
   CITY LANDING PAGES
   ============================================================ */
.city-page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  padding: 100px 28px 80px;
  position: relative;
  overflow: hidden;
}
.city-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
}
.city-page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}
.city-page-hero-content {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto;
}
.city-page-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: .75rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; padding: 7px 18px; border-radius: 100px;
  margin-bottom: 22px; box-shadow: var(--shadow-gold);
}
.city-page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 20px;
  max-width: 720px; text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.city-gold { color: var(--gold); }
.city-page-hero p {
  font-size: 1.08rem; color: #c8d4e4;
  max-width: 580px; margin-bottom: 36px; line-height: 1.75;
}

/* City included strip */
.city-included-strip {
  background: var(--gold);
  padding: 14px 28px;
}
.city-strip-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: center; gap: 28px; flex-wrap: wrap;
}
.city-strip-label {
  font-size: .7rem; font-weight: 900; letter-spacing: 2px;
  text-transform: uppercase; color: var(--navy); opacity: .7;
  font-family: 'Montserrat', sans-serif;
}
.city-strip-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .84rem; font-weight: 700; color: var(--navy);
}
.city-strip-item i { font-size: 1rem; }

/* City service card icons */
.city-sc-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold-pale), #fff5d6);
  border-radius: 12px; border: 1.5px solid rgba(200,168,75,.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.city-sc-icon i { font-size: 22px; color: var(--navy); }
.city-included-badge {
  display: inline-block; margin-top: 12px;
  font-size: .68rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); padding: 4px 10px; border-radius: 100px;
  letter-spacing: 1px; text-transform: uppercase;
}

/* City FAQ on dark background */
.city-faq-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; max-width: 960px; margin: 0 auto;
}
.city-faq-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 24px;
}
.city-faq-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .92rem; font-weight: 800; color: #fff;
  margin-bottom: 10px;
}
.city-faq-item p { font-size: .88rem; color: #8a9ab5; line-height: 1.65; }

/* Nearby cities bar */
.city-nearby {
  background: var(--navy-mid);
  padding: 20px 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.city-nearby-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.city-nearby-label {
  font-size: .75rem; font-weight: 700; color: var(--steel);
  text-transform: uppercase; letter-spacing: 1.5px; white-space: nowrap;
  margin-right: 4px;
}
.city-pill {
  font-size: .78rem; font-weight: 600; color: #6a7a94;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px; padding: 5px 14px;
  transition: all var(--transition); display: inline-block;
}
.city-pill:hover { color: var(--gold); border-color: rgba(200,168,75,.3); }

@media (max-width: 768px) {
  .city-faq-grid { grid-template-columns: 1fr; }
  .city-strip-inner { gap: 14px; justify-content: flex-start; }
  .city-page-hero { padding: 80px 20px 60px; }
}

/* City pills as links */
a.city-tag {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
a.city-tag:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* ============================================================
   SITE-WIDE INCLUDED STRIP (same style as city pages)
   ============================================================ */
.site-included-strip {
  background: var(--gold);
  padding: 14px 28px;
}
.site-included-strip .city-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
}

/* ============================================================
   HOW IT WORKS — homepage 3-step row
   ============================================================ */
.how-steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  transition: transform var(--transition);
}
.how-step:hover { transform: translateY(-4px); }
.how-step-num {
  width: 74px; height: 74px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem; font-weight: 900;
  margin-bottom: 22px;
  border: 4px solid #fff;
  box-shadow: var(--shadow-gold);
}
.how-step h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem; font-weight: 800;
  color: var(--navy); margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: .5px;
}
.how-step p {
  font-size: .92rem; color: var(--text-muted); line-height: 1.7;
  max-width: 220px;
}
.how-step-arrow {
  display: flex; align-items: flex-start;
  padding-top: 68px; color: var(--gold);
  font-size: 1.6rem; opacity: .7;
}

@media (max-width: 768px) {
  .how-steps-row {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .how-step-arrow { padding-top: 0; justify-content: center; transform: rotate(90deg); }
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: .94rem;
}
.compare-table thead tr {
  background: var(--navy);
}
.compare-table th {
  padding: 20px 24px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--steel);
}
.compare-table th.col-feature {
  text-align: left; color: #6a7a94; width: 40%;
}
.compare-table th.col-guardian { color: var(--gold); }
.th-guardian {
  display: flex; align-items: center;
  justify-content: center; gap: 10px;
}
.th-guardian strong { color: var(--gold); font-size: .85rem; }
.compare-table tbody tr { border-bottom: 1px solid var(--border); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr.row-alt { background: var(--light-bg); }
.compare-table tbody tr:hover { background: var(--gold-pale); }
.compare-table td {
  padding: 16px 24px;
  vertical-align: middle;
  color: var(--navy);
}
.compare-table td:not(:first-child) { text-align: center; }
.col-guardian { border-left: 3px solid var(--gold); border-right: 3px solid var(--gold); background: rgba(200,168,75,.04); }
.cell-yes { color: var(--green); font-weight: 700; }
.cell-yes i { font-size: 1rem; vertical-align: middle; margin-right: 4px; }
.cell-no { color: #c0392b; opacity: .75; }
.cell-no i { font-size: 1rem; vertical-align: middle; margin-right: 4px; }
.cell-partial { color: #e67e22; }
.cell-partial i { font-size: 1rem; vertical-align: middle; margin-right: 4px; }

@media (max-width: 640px) {
  .compare-table { font-size: .82rem; }
  .compare-table td, .compare-table th { padding: 12px 14px; }
}

/* ============================================================
   FOR AGENTS — nav active state
   ============================================================ */
.main-nav a.active {
  color: var(--gold-dark);
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
}

/* ============================================================
   FOR AGENTS SECTION — index.html + agents.html
   ============================================================ */
.agents-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.agents-content .section-label { color: var(--gold); }
.agents-content .section-title { color: #fff; margin-bottom: 20px; }
.agents-content > p { color: #b0bcd4; font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }

/* Stat card on the right */
.agents-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.agents-stat-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem; font-weight: 900;
  color: #fff; margin-bottom: 10px; letter-spacing: .3px;
}
.agents-stat-card > p {
  font-size: .9rem; color: #8a9ab5;
  line-height: 1.7; margin-bottom: 28px;
}
.agents-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.agent-stat-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  transition: background var(--transition);
}
.agent-stat-box:hover { background: rgba(255,255,255,0.09); }
.agent-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem; font-weight: 900;
  color: var(--gold); line-height: 1;
  margin-bottom: 6px; display: block;
}
.agent-stat-label {
  font-size: .75rem; color: #8a9ab5;
  letter-spacing: .5px; line-height: 1.4;
  display: block;
}
.agent-book-btn {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem; font-weight: 800;
  letter-spacing: .8px; text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(46,107,74,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.agent-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46,107,74,.5);
}

@media (max-width: 900px) {
  .agents-layout { grid-template-columns: 1fr; gap: 40px; }
  .agents-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .agents-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   HOMEPAGE ADDITIONS — Grand Slam Update
   ============================================================ */

/* Hero value line */
.hero-value-line {
  background: rgba(200,168,75,.12);
  border-left: 3px solid var(--gold);
  color: var(--gold-light);
  font-size: .92rem; font-weight: 700;
  padding: 10px 16px; margin-bottom: 28px;
  border-radius: 0 4px 4px 0;
  max-width: 560px;
}

/* ── Guarantee Bar ── */
.guarantee-bar {
  background: var(--navy);
  border-top: 2px solid rgba(200,168,75,.35);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 14px 28px;
}
.guarantee-bar-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: stretch; flex-wrap: wrap;
}
.guarantee-bar-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
  display: flex; align-items: center;
  padding-right: 20px; margin-right: 4px;
  border-right: 1px solid rgba(200,168,75,.3);
}
.guarantee-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 20px; flex: 1; min-width: 175px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.guarantee-badge:last-child { border-right: none; }
.guarantee-badge i { font-size: 20px; color: var(--gold); flex-shrink: 0; }
.guarantee-badge-text strong {
  display: block; color: #fff;
  font-size: .78rem; font-weight: 700; line-height: 1.2;
}
.guarantee-badge-text span { color: var(--steel); font-size: .7rem; }

@media (max-width: 768px) {
  .guarantee-badge { min-width: 140px; padding: 8px 12px; }
  .guarantee-bar-label { width: 100%; border-right: none; border-bottom: 1px solid rgba(200,168,75,.2); margin-bottom: 8px; padding-bottom: 8px; }
}

/* ── Quote urgency note ── */
.quote-urgency-note {
  text-align: center; margin-top: 16px;
  font-size: .88rem; color: var(--text-muted); line-height: 1.6;
}
.quote-urgency-note strong { color: var(--navy); }

/* ── Value Stack Table ── */
.value-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin: 32px 0 20px;
}
.value-table {
  width: 100%; border-collapse: collapse;
  background: var(--navy-mid); font-size: .94rem;
}
.value-table thead tr { background: rgba(200,168,75,.15); }
.value-table thead th {
  padding: 14px 20px; text-align: left;
  color: var(--gold); font-size: .75rem;
  font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
}
.value-table thead th:last-child { text-align: right; }
.value-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.07); }
.value-table tbody tr:hover { background: rgba(255,255,255,.03); }
.value-table td { padding: 14px 20px; color: #b0bcd4; font-size: .9rem; }
.value-table td:last-child { text-align: right; color: var(--gold-light); font-weight: 700; }
.value-table td.service-name { color: #fff; font-weight: 600; }
.value-table td.service-desc { font-size: .82rem; color: var(--steel); }
.row-alt-dark { background: rgba(255,255,255,.025); }
.value-total-row td {
  background: rgba(200,168,75,.1); color: #fff;
  font-weight: 800; font-size: 1rem;
  border-top: 2px solid var(--gold);
}
.value-total-row td:last-child { color: var(--gold); font-size: 1.1rem; }
.value-your-price-row td {
  background: var(--gold); color: var(--navy);
  font-weight: 900; font-size: 1.1rem;
}
.value-your-price-row td:last-child { color: var(--navy); font-size: 1.2rem; }
.value-savings {
  text-align: center; margin-top: 16px;
  color: var(--steel); font-size: .9rem;
}
.value-savings strong { color: var(--gold); font-size: 1.2rem; font-weight: 900; }

/* ── Guarantees Section ── */
.guarantees-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 20px; margin-top: 36px;
}
.guarantee-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px; position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.guarantee-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.guarantee-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.guarantee-icon {
  font-size: 1.9rem; color: var(--gold);
  margin-bottom: 12px;
}
.guarantee-icon i { font-size: 1.9rem; color: var(--gold); }
.guarantee-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 800;
  color: var(--navy); margin-bottom: 10px;
}
.guarantee-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }
.guarantee-fine {
  margin-top: 12px; font-size: .78rem;
  font-style: italic; color: var(--green); font-weight: 700;
}

@media (max-width: 640px) { .guarantees-grid { grid-template-columns: 1fr; } }

/* ── Sewer Scope Section ── */
.sewer-upsell {
  position: relative; overflow: hidden;
}
.sewer-upsell::after {
  content: '💧'; position: absolute;
  right: 40px; top: 50%; transform: translateY(-50%);
  font-size: 120px; opacity: .05; pointer-events: none;
}
.sewer-inner {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 48px; align-items: center;
}
.sewer-content h2 { margin-bottom: 20px; }
.sewer-content p { color: #8a9ab5; font-size: .97rem; line-height: 1.75; margin-bottom: 14px; }
.sewer-stat {
  background: rgba(200,168,75,.12);
  border-left: 3px solid var(--gold);
  padding: 14px 18px; margin-bottom: 20px;
  border-radius: 0 6px 6px 0;
}
.sewer-stat strong { color: var(--gold); font-size: 1rem; display: block; margin-bottom: 4px; }
.sewer-stat span { color: #b0bcd4; font-size: .86rem; }
.sewer-social-proof {
  display: flex; align-items: center; gap: 10px;
  color: var(--steel); font-size: .88rem; margin-bottom: 24px;
}
.sewer-dot {
  width: 8px; height: 8px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0;
}
.sewer-social-proof strong { color: #fff; }
.sewer-price-card {
  background: var(--gold); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow-gold);
}
.sewer-standalone-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: rgba(15,22,40,.55); margin-bottom: 2px;
}
.sewer-standalone-price {
  font-size: 1.1rem; font-weight: 700;
  color: rgba(15,22,40,.4); text-decoration: line-through; margin-bottom: 14px;
}
.sewer-addon-label {
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--navy);
}
.sewer-addon-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem; font-weight: 900;
  color: var(--navy); line-height: 1;
}
.sewer-addon-sub { font-size: .75rem; color: rgba(15,22,40,.55); margin-bottom: 20px; }
.sewer-book-btn {
  display: block; background: var(--navy);
  color: var(--gold); padding: 12px 16px;
  border-radius: var(--radius-sm); font-weight: 800;
  font-size: .88rem; text-align: center;
  transition: background var(--transition), color var(--transition);
}
.sewer-book-btn:hover { background: var(--navy-mid); color: var(--gold-light); }

@media (max-width: 768px) {
  .sewer-inner { grid-template-columns: 1fr; }
  .sewer-upsell::after { display: none; }
}

/* ── Comparison table additions ── */
.compare-divider td {
  background: var(--navy) !important;
  color: var(--gold) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem !important; font-weight: 800 !important;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 24px !important;
}
.compare-footnote {
  font-size: .78rem; color: var(--text-muted);
  font-style: italic; text-align: left; margin-top: 12px;
}

/* ── Agent guarantee box ── */
.agent-guarantee-box {
  background: rgba(200,168,75,.1);
  border: 1px solid rgba(200,168,75,.3);
  border-radius: var(--radius-sm);
  padding: 14px 16px; margin: 14px 0;
  font-size: .86rem; color: var(--gold-light);
  font-weight: 600; line-height: 1.6;
}
