/* ═══════════════════════════════════════════
   RED BOX MOVING — Homepage Styles
   All classes prefixed with rbm- to avoid
   conflicts with Ekko parent theme
═══════════════════════════════════════════ */

:root {
  --rbm-red: #D42B2B;
  --rbm-red-dark: #A81E1E;
  --rbm-red-light: #FF3C3C;
  --rbm-navy: #0D1B2A;
  --rbm-navy-mid: #1A2D42;
  --rbm-charcoal: #2C3A47;
  --rbm-warm-white: #F9F6F1;
  --rbm-gray-light: #F0EDE8;
  --rbm-gray-mid: #C4BDB4;
  --rbm-gray-text: #6B6560;
  --rbm-yellow: #F5C518;
  --rbm-green: #2ECC71;

  --rbm-font-display: 'Bebas Neue', sans-serif;
  --rbm-font-condensed: 'Barlow Condensed', sans-serif;
  --rbm-font-body: 'Barlow', sans-serif;
}

/* Reset for homepage only */
body.rbm-homepage {
  margin: 0;
  padding: 0;
  font-family: var(--rbm-font-body);
  background: #EDEBE6;
  color: var(--rbm-navy);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.rbm-homepage *,
body.rbm-homepage *::before,
body.rbm-homepage *::after {
  box-sizing: border-box;
}

.rbm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}


/* ══════════════════════════════════
   §1 — TOP UTILITY BAR
══════════════════════════════════ */
.rbm-topbar {
  background: var(--rbm-navy);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-family: var(--rbm-font-body);
  font-weight: 500;
  padding: 8px 0;
}
.rbm-topbar .rbm-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rbm-topbar a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.rbm-topbar a:hover { color: white; }
.rbm-topbar-hours { display: flex; align-items: center; gap: 6px; }
.rbm-topbar-right { display: flex; gap: 24px; }
.rbm-dot {
  width: 6px; height: 6px;
  background: var(--rbm-green);
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}


/* ══════════════════════════════════
   §2 — STICKY NAVIGATION
══════════════════════════════════ */
.rbm-nav {
  background: white;
  border-bottom: 3px solid var(--rbm-red);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.rbm-nav .rbm-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.rbm-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.rbm-logo-box {
  width: 48px; height: 48px;
  background: var(--rbm-red);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rbm-logo-box span { color: white; font-size: 22px; }
.rbm-logo-text {
  font-family: var(--rbm-font-condensed);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--rbm-navy);
}
.rbm-logo-text em { color: var(--rbm-red); font-style: normal; }

.rbm-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-family: var(--rbm-font-body);
  font-weight: 600;
  font-size: 14px;
  margin: 0;
  padding: 0;
}
.rbm-nav-links a {
  color: var(--rbm-charcoal);
  text-decoration: none;
  transition: color 0.2s;
}
.rbm-nav-links a:hover { color: var(--rbm-red); }

/* Nav dropdowns */
.rbm-nav-links li { position: relative; }
.rbm-nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 0 0 6px 6px;
  border-top: 3px solid var(--rbm-red);
  padding: 8px 0;
  z-index: 200;
  list-style: none;
  margin: 0;
}
.rbm-nav-links li:hover > .rbm-nav-dropdown { display: block; }
.rbm-nav-dropdown li { padding: 0; }
.rbm-nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rbm-charcoal);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.rbm-nav-dropdown a:hover {
  background: var(--rbm-warm-white);
  color: var(--rbm-red);
}

.rbm-nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rbm-phone-nav {
  font-family: var(--rbm-font-condensed);
  font-size: 20px;
  font-weight: 700;
  color: var(--rbm-red);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.rbm-btn-primary {
  background: var(--rbm-red);
  color: white;
  font-family: var(--rbm-font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.rbm-btn-primary:hover { background: var(--rbm-red-dark); color: white; }

/* Mobile toggle */
.rbm-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.rbm-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rbm-navy);
  transition: transform 0.2s;
}


/* ══════════════════════════════════
   §3 — HERO + QUOTE FORM
══════════════════════════════════ */
.rbm-hero {
  background: var(--rbm-navy);
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.rbm-hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(212,43,43,0.04) 40px,
      rgba(212,43,43,0.04) 41px
    );
}
.rbm-hero-red-stripe {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--rbm-red);
}
.rbm-hero .rbm-container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  z-index: 1;
}
.rbm-hero-eyebrow {
  font-family: var(--rbm-font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rbm-red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rbm-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--rbm-red);
}
.rbm-hero h1 {
  font-family: var(--rbm-font-display);
  font-size: clamp(56px, 7vw, 88px);
  line-height: 0.95;
  color: white;
  margin: 0 0 24px;
  letter-spacing: 0.01em;
}
.rbm-hero h1 em {
  color: var(--rbm-red);
  font-style: normal;
}
.rbm-hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 36px;
}
.rbm-hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.rbm-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
}
.rbm-badge-dot {
  width: 8px; height: 8px;
  background: var(--rbm-green);
  border-radius: 50%;
}

/* Hero Form Card */
.rbm-hero-form-card {
  background: white;
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  position: relative;
}
.rbm-hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--rbm-red);
  border-radius: 8px 8px 0 0;
}
.rbm-form-title {
  font-family: var(--rbm-font-condensed);
  font-size: 22px;
  font-weight: 800;
  color: var(--rbm-navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.rbm-form-sub { font-size: 13px; color: var(--rbm-gray-text); margin-bottom: 24px; }
.rbm-form-group { margin-bottom: 14px; }
.rbm-form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rbm-gray-text);
  display: block;
  margin-bottom: 5px;
}
.rbm-form-group input,
.rbm-form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #DDD;
  border-radius: 4px;
  font-family: var(--rbm-font-body);
  font-size: 14px;
  color: var(--rbm-navy);
  background: var(--rbm-warm-white);
  outline: none;
  transition: border-color 0.2s;
}
.rbm-form-group input:focus,
.rbm-form-group select:focus {
  border-color: var(--rbm-red);
}
.rbm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rbm-form-cta-btn {
  width: 100%;
  background: var(--rbm-red);
  color: white;
  font-family: var(--rbm-font-condensed);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.rbm-form-cta-btn:hover { background: var(--rbm-red-dark); }
.rbm-form-guarantee {
  text-align: center;
  font-size: 11px;
  color: var(--rbm-gray-text);
  margin-top: 10px;
}
.rbm-form-guarantee strong { color: var(--rbm-navy); }
.rbm-form-success { text-align: center; padding: 24px 0; }


/* ══════════════════════════════════
   §4 — TRUST STATS BAR
══════════════════════════════════ */
.rbm-trust-bar {
  background: var(--rbm-red);
  padding: 20px 0;
}
.rbm-trust-bar .rbm-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rbm-trust-stat { text-align: center; color: white; }
.rbm-trust-stat-num {
  font-family: var(--rbm-font-display);
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.03em;
}
.rbm-trust-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}
.rbm-trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}


/* ══════════════════════════════════
   SECTION SHARED STYLES
══════════════════════════════════ */
.rbm-section-eyebrow {
  font-family: var(--rbm-font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rbm-red);
  margin-bottom: 10px;
}
.rbm-section-title {
  font-family: var(--rbm-font-display);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 0.95;
  color: var(--rbm-navy);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.rbm-section-sub {
  font-size: 16px;
  color: var(--rbm-gray-text);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 48px;
}


/* ══════════════════════════════════
   §5 — SERVICES
══════════════════════════════════ */
.rbm-services {
  background: var(--rbm-warm-white);
  padding: 80px 0;
}
.rbm-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #DDD;
  border-radius: 8px;
  overflow: hidden;
}
.rbm-service-card {
  background: white;
  padding: 36px 28px;
  position: relative;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}
.rbm-service-card:hover { background: var(--rbm-navy); }
.rbm-service-card:hover .rbm-service-title,
.rbm-service-card:hover .rbm-service-desc { color: white; }
.rbm-service-card:hover .rbm-service-icon { background: var(--rbm-red); }

.rbm-service-icon {
  width: 52px; height: 52px;
  background: var(--rbm-gray-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: background 0.2s;
}
.rbm-service-title {
  font-family: var(--rbm-font-condensed);
  font-size: 20px;
  font-weight: 700;
  color: var(--rbm-navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.rbm-service-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--rbm-gray-text);
  transition: color 0.2s;
}
.rbm-service-arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  font-size: 18px;
  color: var(--rbm-red);
}


/* ══════════════════════════════════
   §6 — PACKAGES
══════════════════════════════════ */
.rbm-packages {
  background: var(--rbm-navy);
  padding: 80px 0;
}
.rbm-packages .rbm-section-title { color: white; }
.rbm-packages .rbm-section-eyebrow { color: var(--rbm-red); }
.rbm-packages .rbm-section-sub { color: rgba(255,255,255,0.55); }

.rbm-pkg-tabs {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 4px;
  width: fit-content;
  margin-bottom: 36px;
  border: 1px solid rgba(255,255,255,0.1);
}
.rbm-pkg-tab {
  font-family: var(--rbm-font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  background: transparent;
  transition: all 0.2s;
}
.rbm-pkg-tab.active {
  background: var(--rbm-red);
  color: white;
}

.rbm-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.rbm-pkg-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.2s;
}
.rbm-pkg-card.featured {
  border-color: var(--rbm-red);
  background: rgba(212,43,43,0.08);
}
.rbm-pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rbm-red);
  color: white;
  font-family: var(--rbm-font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.rbm-pkg-name {
  font-family: var(--rbm-font-display);
  font-size: 28px;
  color: white;
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}
.rbm-pkg-tagline { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 24px; line-height: 1.4; }
.rbm-pkg-price {
  font-family: var(--rbm-font-condensed);
  font-size: 15px;
  font-weight: 700;
  color: var(--rbm-red);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rbm-pkg-features { list-style: none; margin: 0 0 28px; padding: 0; }
.rbm-pkg-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.rbm-pkg-features li .check { color: var(--rbm-green); font-size: 14px; }
.rbm-pkg-features li .dash { color: rgba(255,255,255,0.2); font-size: 14px; }
.rbm-pkg-btn {
  width: 100%;
  padding: 14px;
  border-radius: 4px;
  font-family: var(--rbm-font-condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  color: white;
  transition: all 0.2s;
}
.rbm-pkg-btn:hover {
  background: rgba(255,255,255,0.1);
}
.rbm-pkg-card.featured .rbm-pkg-btn {
  background: var(--rbm-red);
  border-color: var(--rbm-red);
}
.rbm-pkg-card.featured .rbm-pkg-btn:hover {
  background: var(--rbm-red-dark);
  border-color: var(--rbm-red-dark);
}


/* ══════════════════════════════════
   §7 — THE RED BOX DIFFERENCE
══════════════════════════════════ */
.rbm-difference {
  background: white;
  padding: 80px 0;
}
.rbm-difference .rbm-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.rbm-diff-img-block { position: relative; }
.rbm-diff-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--rbm-gray-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--rbm-gray-text);
  font-style: italic;
  text-align: center;
  padding: 20px;
  border: 2px dashed var(--rbm-gray-mid);
}
.rbm-diff-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--rbm-red);
  color: white;
  border-radius: 6px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(212,43,43,0.3);
}
.rbm-diff-badge-num {
  font-family: var(--rbm-font-display);
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.rbm-diff-badge-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.rbm-diff-points { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.rbm-diff-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--rbm-warm-white);
  border-radius: 6px;
  border-left: 3px solid var(--rbm-red);
}
.rbm-diff-point-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.rbm-diff-point-title {
  font-family: var(--rbm-font-condensed);
  font-size: 16px;
  font-weight: 700;
  color: var(--rbm-navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}
.rbm-diff-point-desc { font-size: 13px; color: var(--rbm-gray-text); line-height: 1.5; }


/* ══════════════════════════════════
   §8 — HOW IT WORKS
══════════════════════════════════ */
.rbm-how {
  background: var(--rbm-gray-light);
  padding: 80px 0;
  text-align: center;
}
.rbm-how .rbm-section-title { margin: 0 auto 12px; }
.rbm-how .rbm-section-sub { margin: 0 auto 56px; text-align: center; }
.rbm-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  margin-bottom: 48px;
  background: #DDD;
  border-radius: 8px;
  overflow: hidden;
}
.rbm-how-step {
  background: white;
  padding: 40px 32px;
  text-align: left;
  position: relative;
}
.rbm-step-num {
  font-family: var(--rbm-font-display);
  font-size: 72px;
  color: rgba(212,43,43,0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.rbm-step-title {
  font-family: var(--rbm-font-condensed);
  font-size: 20px;
  font-weight: 700;
  color: var(--rbm-navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.rbm-step-desc { font-size: 14px; color: var(--rbm-gray-text); line-height: 1.6; }


/* ══════════════════════════════════
   §9 — LOCATIONS
══════════════════════════════════ */
.rbm-locations {
  background: var(--rbm-navy);
  padding: 80px 0;
}
.rbm-locations .rbm-section-title { color: white; }
.rbm-locations .rbm-section-eyebrow { color: var(--rbm-red); }
.rbm-locations .rbm-section-sub { color: rgba(255,255,255,0.5); }

.rbm-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
}
.rbm-location-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.03);
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: background 0.15s;
}
.rbm-location-card:hover { background: rgba(212,43,43,0.15); }
.rbm-loc-name {
  font-family: var(--rbm-font-condensed);
  font-size: 17px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.rbm-loc-tag { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.rbm-loc-arrow { color: var(--rbm-red); font-size: 18px; }


/* ══════════════════════════════════
   §10 — REVIEWS
══════════════════════════════════ */
.rbm-reviews {
  background: var(--rbm-warm-white);
  padding: 80px 0;
}
.rbm-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.rbm-reviews-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--rbm-navy);
  border-radius: 6px;
  padding: 16px 24px;
}
.rbm-rating-num {
  font-family: var(--rbm-font-display);
  font-size: 42px;
  color: white;
  line-height: 1;
}
.rbm-stars { color: var(--rbm-yellow); font-size: 18px; letter-spacing: 2px; }
.rbm-rating-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.rbm-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rbm-review-card {
  background: white;
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-top: 3px solid var(--rbm-red);
}
.rbm-review-stars { color: var(--rbm-yellow); font-size: 14px; margin-bottom: 12px; }
.rbm-review-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--rbm-charcoal);
  margin-bottom: 20px;
  font-style: italic;
}
.rbm-reviewer { display: flex; align-items: center; gap: 12px; }
.rbm-reviewer-avatar {
  width: 36px; height: 36px;
  background: var(--rbm-gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rbm-font-condensed);
  font-size: 14px;
  font-weight: 700;
  color: var(--rbm-red);
  flex-shrink: 0;
}
.rbm-reviewer-name { font-weight: 700; font-size: 14px; color: var(--rbm-navy); }
.rbm-reviewer-via { font-size: 11px; color: var(--rbm-gray-text); }

.rbm-reviews-link {
  font-family: var(--rbm-font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rbm-red);
  text-decoration: none;
}
.rbm-reviews-link:hover { color: var(--rbm-red-dark); }


/* ══════════════════════════════════
   §11 — FAQ
══════════════════════════════════ */
.rbm-faq {
  background: white;
  padding: 80px 0;
}
.rbm-faq .rbm-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.rbm-faq-item {
  border-bottom: 1px solid var(--rbm-gray-light);
  padding: 20px 0;
}
.rbm-faq-q {
  font-family: var(--rbm-font-condensed);
  font-size: 16px;
  font-weight: 700;
  color: var(--rbm-navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
  gap: 16px;
}
.rbm-faq-plus {
  color: var(--rbm-red);
  font-size: 20px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.rbm-faq-item.open .rbm-faq-plus {
  transform: rotate(45deg);
}
.rbm-faq-a {
  font-size: 14px;
  color: var(--rbm-gray-text);
  line-height: 1.6;
  margin-top: 10px;
  display: none;
}
.rbm-faq-item.open .rbm-faq-a {
  display: block;
}


/* ══════════════════════════════════
   §12 — FINAL CTA
══════════════════════════════════ */
.rbm-final-cta {
  background: var(--rbm-red);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rbm-final-cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.04) 60px,
      rgba(255,255,255,0.04) 61px
    );
}
.rbm-final-cta .rbm-container { position: relative; z-index: 1; }
.rbm-final-cta h2 {
  font-family: var(--rbm-font-display);
  font-size: clamp(48px, 7vw, 80px);
  color: white;
  line-height: 0.95;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}
.rbm-final-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}
.rbm-btn-white {
  background: white;
  color: var(--rbm-red);
  font-family: var(--rbm-font-condensed);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 48px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: background 0.2s;
}
.rbm-btn-white:hover {
  background: var(--rbm-warm-white);
  color: var(--rbm-red);
}
.rbm-cta-phone {
  display: block;
  font-family: var(--rbm-font-display);
  font-size: 36px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  margin-top: 20px;
  text-decoration: none;
  transition: color 0.2s;
}
.rbm-cta-phone:hover { color: rgba(255,255,255,0.7); }


/* ══════════════════════════════════
   §13 — FOOTER
══════════════════════════════════ */
.rbm-footer {
  background: var(--rbm-navy);
  padding: 56px 0 24px;
}
.rbm-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.rbm-footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 260px;
}
.rbm-footer-col-title {
  font-family: var(--rbm-font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.rbm-footer-links { list-style: none; margin: 0; padding: 0; }
.rbm-footer-links li {
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.rbm-footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.rbm-footer-links a:hover { color: white; }
.rbm-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}


/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .rbm-hero .rbm-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rbm-hero-form-card { max-width: 480px; }
  .rbm-services-grid { grid-template-columns: repeat(2, 1fr); }
  .rbm-difference .rbm-container { grid-template-columns: 1fr; gap: 40px; }
  .rbm-how-steps { grid-template-columns: 1fr; }
  .rbm-reviews-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .rbm-faq .rbm-container { grid-template-columns: 1fr; gap: 40px; }
  .rbm-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Packages — horizontal carousel */
  .rbm-packages-grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 16px;
  }
  .rbm-pkg-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
  }

  /* Reviews — horizontal carousel */
  .rbm-reviews-grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 16px;
  }
  .rbm-review-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
  }
}

@media (max-width: 768px) {
  .rbm-container { padding: 0 20px; }

  /* Topbar */
  .rbm-topbar .rbm-container { flex-direction: column; gap: 4px; text-align: center; }
  .rbm-topbar-right { flex-direction: column; gap: 4px; }

  /* Nav */
  .rbm-mobile-toggle { display: flex; }
  .rbm-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: white;
    padding: 20px 32px;
    border-bottom: 3px solid var(--rbm-red);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 16px;
  }
  .rbm-nav-links.open { display: flex; }
  .rbm-nav-cta { display: none; }
  .rbm-nav .rbm-container { flex-wrap: wrap; }

  /* Mobile nav dropdowns */
  .rbm-nav-dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    min-width: 0;
  }
  .rbm-nav-links li:hover > .rbm-nav-dropdown { display: none; }
  .rbm-nav-links li.dropdown-open > .rbm-nav-dropdown { display: block; }

  /* Hero */
  .rbm-hero h1 { font-size: clamp(40px, 10vw, 56px); }
  .rbm-hero-form-card { max-width: 100%; }
  .rbm-form-row { grid-template-columns: 1fr; }

  /* Trust bar */
  .rbm-trust-bar .rbm-container { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .rbm-trust-divider { display: none; }
  .rbm-trust-stat { min-width: 120px; }

  /* Services — horizontal carousel */
  .rbm-services-grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    background: #DDD;
    padding-bottom: 0;
  }
  .rbm-service-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    border-right: 2px solid #DDD;
  }

  /* Locations — 3x3 grid on mobile */
  .rbm-locations-grid { grid-template-columns: repeat(3, 1fr); }
  .rbm-location-card { padding: 16px 12px; }
  .rbm-loc-name { font-size: 13px; }
  .rbm-loc-tag { font-size: 9px; }
  .rbm-loc-arrow { font-size: 14px; }

  /* Packages — narrower cards on phone */
  .rbm-pkg-card { flex: 0 0 260px; }

  /* Reviews — narrower cards on phone */
  .rbm-review-card { flex: 0 0 280px; }

  /* Footer */
  .rbm-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .rbm-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ═══════════════════════════════════════════
   TESTIMONIALS PAGE
═══════════════════════════════════════════ */
.rbm-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rbm-testimonials-grid .rbm-review-card {
  flex: none;
  min-width: 0;
}
@media (max-width: 900px) {
  .rbm-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .rbm-testimonials-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.rbm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.rbm-contact-info-card {
  background: var(--rbm-navy);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.rbm-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.rbm-contact-detail-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.rbm-contact-detail-label {
  font-family: var(--rbm-font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.rbm-contact-detail-value {
  font-family: var(--rbm-font-body);
  font-size: 15px;
  color: white;
  text-decoration: none;
  line-height: 1.5;
}
.rbm-contact-detail-value:hover {
  color: var(--rbm-red);
}
.rbm-contact-form-card {
  background: white;
  padding: 48px 40px;
}
.rbm-contact-form-card .rbm-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--rbm-gray-mid);
  border-radius: 6px;
  font-family: var(--rbm-font-body);
  font-size: 15px;
  color: var(--rbm-charcoal);
  background: var(--rbm-warm-white);
  resize: vertical;
}
.rbm-contact-form-card .rbm-form-group textarea:focus {
  outline: none;
  border-color: var(--rbm-red);
  box-shadow: 0 0 0 3px rgba(212,43,43,0.12);
}
.rbm-svc-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rbm-font-condensed);
  font-size: 14px;
  color: var(--rbm-gray-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .rbm-contact-grid { grid-template-columns: 1fr; }
  .rbm-contact-info-card { padding: 36px 24px; }
  .rbm-contact-form-card { padding: 36px 24px; }
}

/* ═══════════════════════════════════════════
   PRIVACY POLICY PAGE
═══════════════════════════════════════════ */
.rbm-privacy-content {
  background: var(--rbm-warm-white);
  padding: 64px 0 80px;
}
.rbm-privacy-body {
  max-width: 780px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 48px 56px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  font-family: var(--rbm-font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--rbm-charcoal);
}
.rbm-privacy-body h2,
.rbm-privacy-body h3 {
  font-family: var(--rbm-font-display);
  color: var(--rbm-navy);
  margin: 32px 0 12px;
  line-height: 1.1;
}
.rbm-privacy-body h2 { font-size: 28px; }
.rbm-privacy-body h3 { font-size: 22px; }
.rbm-privacy-body p { margin: 0 0 16px; }
.rbm-privacy-body ul,
.rbm-privacy-body ol {
  padding-left: 24px;
  margin: 0 0 16px;
}
.rbm-privacy-body a {
  color: var(--rbm-red);
  text-decoration: underline;
}
.rbm-privacy-body a:hover {
  color: var(--rbm-red-dark);
}
@media (max-width: 768px) {
  .rbm-privacy-body { padding: 32px 24px; }
}
