/*
Theme Name:   GeneratePress Child
Description:  Child theme for RealtorColoradoSprings.com
Author:       Jerrod Butler
Template:     generatepress
Version:      1.0.0
*/

/* ============================================
   IMPORT PARENT THEME
   ============================================ */
@import url("../generatepress/style.css");

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --navy:    #3B0E82;
  --navy-2:  #2a0070;
  --navy-3:  #4c1e92;
  --gold:    #EBCA52;
  --gold-2:  #d4b43a;
  --gold-3:  #f5d668;
  --gold-pale: #EBCA52;
  --cream:   #f4f0e8;
  --white:   #faf8f4;
  --mist:    #7a8fa8;
  --mist-2:  #a8bccf;
}

/* ============================================
   RESET GENERATEPRESS DEFAULTS ON BLANK PAGES
   ============================================ */
.rcs-blank-page .site-header,
.rcs-blank-page .site-footer,
.rcs-blank-page .nav-primary,
.rcs-blank-page .inside-article > .entry-header,
.rcs-blank-page .inside-article > .entry-footer {
  display: none !important;
}
.rcs-blank-page .site-main,
.rcs-blank-page .content-area,
.rcs-blank-page article.post,
.rcs-blank-page .inside-article {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
.rcs-blank-page .site-content .content-area {
  width: 100% !important;
  float: none !important;
}
body.rcs-blank-page {
  background: #3B0E82;
  overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav#rcs-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  transition: all 0.4s;
}
nav#rcs-nav.scrolled {
  background: rgba(59,14,130,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(235,202,82,0.15);
  padding: 0.9rem 4rem;
}
.rcs-nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); text-decoration: none;
}
.rcs-nav-brand span { color: var(--gold); }
.rcs-nav-links { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.rcs-nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mist-2); text-decoration: none;
  transition: color 0.3s;
}
.rcs-nav-links a:hover { color: var(--gold); }
.rcs-nav-cta {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  background: var(--gold); color: var(--navy);
  text-decoration: none; transition: background 0.3s;
}
.rcs-nav-cta:hover { background: var(--gold-2); }

/* ============================================
   HERO
   ============================================ */
.rcs-hero {
  min-height: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.rcs-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 65% 40%, rgba(235,202,82,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 15% 85%, rgba(139,32,48,0.08) 0%, transparent 55%);
}
.rcs-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(235,202,82,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(235,202,82,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.rcs-hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 3rem 5rem;
  position: relative; z-index: 2;
}
.rcs-hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.8rem;
  opacity: 0; animation: rcsFadeUp 0.8s 0.1s ease forwards;
}
.rcs-hero-eyebrow::before { content: ''; width: 2rem; height: 1px; background: var(--gold); }
.rcs-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900; line-height: 0.95;
  color: var(--white);
  margin-bottom: 0.5rem;
  opacity: 0; animation: rcsFadeUp 0.8s 0.25s ease forwards;
}
.rcs-hero h1 .rcs-accent { font-style: italic; color: var(--gold); display: block; }
.rcs-hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 300;
  color: var(--mist-2); margin-bottom: 2rem;
  opacity: 0; animation: rcsFadeUp 0.8s 0.4s ease forwards;
}
.rcs-hero-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; line-height: 1.85;
  color: var(--mist-2); max-width: 460px; margin-bottom: 2.5rem;
  opacity: 0; animation: rcsFadeUp 0.8s 0.55s ease forwards;
}
.rcs-hero-pills {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 3rem;
  opacity: 0; animation: rcsFadeUp 0.8s 0.7s ease forwards;
}
.rcs-pill {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(235,202,82,0.35);
  color: var(--gold-pale);
}
.rcs-hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: rcsFadeUp 0.8s 0.85s ease forwards;
}
.rcs-btn-primary {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem 2.4rem;
  background: var(--gold); color: var(--navy);
  text-decoration: none; transition: all 0.3s; display: inline-block;
}
.rcs-btn-primary:hover { background: var(--gold-2); transform: translateY(-2px); }
.rcs-btn-secondary {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: 1px solid rgba(235,202,82,0.4);
  color: var(--gold); text-decoration: none;
  transition: all 0.3s; display: inline-block;
}
.rcs-btn-secondary:hover { border-color: var(--gold); background: rgba(235,202,82,0.06); }
.rcs-hero-right {
  position: relative; background: var(--navy-2);
  display: flex; align-items: flex-start; justify-content: center; padding-top: 5rem; overflow: hidden;
}
.rcs-hero-pattern {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(235,202,82,0.025) 40px, rgba(235,202,82,0.025) 41px
  );
}
.rcs-hero-photo {
  position: relative; z-index: 2;
  width: 300px; height: 360px;
  border: 1px solid rgba(235,202,82,0.25);
  overflow: hidden;
}
.rcs-hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
}
.rcs-hero-photo-placeholder {
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.02);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
}
.rcs-nameplate {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--gold); padding: 0.9rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.rcs-nameplate strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--navy);
}
.rcs-nameplate span {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(59,14,130,0.65);
}
.rcs-hero-stats {
  position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(235,202,82,0.15); z-index: 3;
}
.rcs-hstat {
  background: var(--navy-2); padding: 1.5rem 1rem; text-align: center;
}
.rcs-hstat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold); display: block; line-height: 1;
}
.rcs-hstat-l {
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mist); margin-top: 0.35rem; display: block;
}

/* ============================================
   TRUST BAR
   ============================================ */
.rcs-trust-bar {
  background: var(--gold);
  padding: 1.2rem 5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.rcs-trust-item {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy);
  display: flex; align-items: center; gap: 0.6rem;
}
.rcs-trust-item::before { content: '✓'; font-size: 0.9rem; font-weight: 900; }

/* ============================================
   SECTION UTILITIES
   ============================================ */
.rcs-sec { padding: 7rem 5rem; }
.rcs-sec-sm { padding: 5rem 5rem; }
.rcs-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(235,202,82,0.25), transparent); }
.rcs-sec-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.rcs-sec-label::before { content: ''; width: 2rem; height: 1px; background: var(--gold); }
.rcs-sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem;
  color: var(--white);
}
.rcs-sec-title em { font-style: italic; color: var(--gold); }

/* ============================================
   ABOUT SECTION
   ============================================ */
.rcs-about { background: var(--navy-2); }
.rcs-about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; align-items: start; }
.rcs-about-img {
  position: relative; width: 100%; aspect-ratio: 3/4;
  border: 1px solid rgba(235,202,82,0.2); overflow: hidden;
}
.rcs-about-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.rcs-about-img::after {
  content: 'Jerrod Butler · Colorado Springs Realtor';
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--gold); color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  text-align: center; padding: 0.7rem;
}
.rcs-about-text p {
  font-family: 'Outfit', sans-serif;
  color: var(--mist-2); line-height: 1.9; margin-bottom: 1.3rem; font-size: 0.98rem;
}
.rcs-cred-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(235,202,82,0.12); margin-top: 2.5rem;
}
.rcs-cred {
  background: var(--navy-2); padding: 1.3rem 1.4rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.rcs-cred-ico { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.rcs-cred strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold-pale); display: block; margin-bottom: 0.2rem;
}
.rcs-cred span { font-size: 0.8rem; color: var(--mist); }

/* ============================================
   SERVICES SECTION
   ============================================ */
.rcs-services { background: var(--navy); }
.rcs-svc-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.rcs-svc-intro p { font-family: 'Outfit', sans-serif; color: var(--mist-2); line-height: 1.8; font-size: 0.95rem; }
.rcs-tabs {
  display: flex; border-bottom: 1px solid rgba(235,202,82,0.12);
  margin-bottom: 3rem; overflow-x: auto;
}
.rcs-tab {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.9rem 2rem; color: var(--mist);
  cursor: pointer; border: none; background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: all 0.3s; white-space: nowrap;
}
.rcs-tab.on { color: var(--gold); border-bottom-color: var(--gold); }
.rcs-tab:hover { color: var(--gold-pale); }
.rcs-pane { display: none; }
.rcs-pane.on { display: block; }
.rcs-nbh-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(235,202,82,0.1); }
.rcs-nbh { background: var(--navy-2); padding: 2rem; transition: background 0.3s; border-top: 2px solid transparent; }
.rcs-nbh:hover { background: var(--navy-3); border-top-color: var(--gold); }
.rcs-nbh h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.8rem; line-height: 1.3;
}
.rcs-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.rcs-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  background: rgba(235,202,82,0.1);
  border: 1px solid rgba(235,202,82,0.22);
  color: var(--gold);
}
.rcs-tag.rcs-b { background: rgba(59,14,130,0.5); border-color: rgba(168,188,207,0.2); color: var(--mist-2); }
.rcs-spec-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(235,202,82,0.1); }
.rcs-spec {
  background: var(--navy-2); padding: 2.5rem; transition: background 0.3s;
  position: relative; overflow: hidden;
}
.rcs-spec::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.rcs-spec:hover { background: var(--navy-3); }
.rcs-spec:hover::before { transform: scaleX(1); }
.rcs-spec-ico { font-size: 1.8rem; margin-bottom: 1rem; }
.rcs-spec h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 0.8rem; color: var(--white); }
.rcs-spec p { font-family: 'Outfit', sans-serif; font-size: 0.88rem; color: var(--mist); line-height: 1.75; }
.rcs-dist-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(235,202,82,0.1); }
.rcs-dist { background: var(--navy-2); padding: 2.2rem; transition: background 0.3s; }
.rcs-dist:hover { background: var(--navy-3); }
.rcs-dist h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--gold); margin-bottom: 0.6rem; }
.rcs-dist p { font-family: 'Outfit', sans-serif; font-size: 0.85rem; color: var(--mist); line-height: 1.7; }

/* ============================================
   MILITARY SECTION
   ============================================ */
.rcs-military {
  background: linear-gradient(135deg, var(--navy-3) 0%, #1a2d3f 100%);
  border-top: 1px solid rgba(235,202,82,0.15);
  border-bottom: 1px solid rgba(235,202,82,0.15);
  padding: 7rem 5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  position: relative; overflow: hidden;
}
.rcs-military::before {
  content: 'ARMY RANGER';
  position: absolute; right: -2rem; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Playfair Display', serif;
  font-size: 5rem; font-weight: 900; letter-spacing: 0.3em;
  color: rgba(235,202,82,0.035); white-space: nowrap; pointer-events: none;
}
.rcs-mil-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,3.5vw,3rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; color: var(--white); }
.rcs-mil-left h2 em { font-style: italic; color: var(--gold); }
.rcs-mil-left p { font-family: 'Outfit', sans-serif; color: var(--mist-2); line-height: 1.85; font-size: 0.97rem; margin-bottom: 1rem; }
.rcs-mil-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 0.7rem; padding: 0; }
.rcs-mil-list li { font-family: 'Outfit', sans-serif; display: flex; align-items: center; gap: 1rem; font-size: 0.82rem; color: var(--mist-2); }
.rcs-mil-list li::before { content: ''; width: 1.5rem; height: 1px; background: var(--gold); flex-shrink: 0; }
.rcs-mil-right { display: flex; flex-direction: column; gap: 1px; }
.rcs-base {
  background: rgba(59,14,130,0.6); padding: 1.8rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  border-left: 3px solid transparent; transition: all 0.3s;
}
.rcs-base:hover { background: rgba(59,14,130,0.9); border-left-color: var(--gold); }
.rcs-base h4 { font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.rcs-base span { font-family: 'Outfit', sans-serif; font-size: 0.8rem; color: var(--mist); }

/* ============================================
   DISTRESSED PROPERTY
   ============================================ */
.rcs-distressed { background: var(--navy-2); }
.rcs-dist-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 4rem; }
.rcs-dist-hero p { font-family: 'Outfit', sans-serif; color: var(--mist-2); line-height: 1.85; font-size: 0.97rem; margin-bottom: 1rem; }
.rcs-cert-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.rcs-cert-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 1rem;
  background: rgba(235,202,82,0.1);
  border: 1px solid rgba(235,202,82,0.3);
  color: var(--gold);
}
.rcs-dist-services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(235,202,82,0.1); }

/* ============================================
   INVESTMENT
   ============================================ */
.rcs-investment { background: var(--navy); }
.rcs-invest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(235,202,82,0.1); margin-top: 3rem; }
.rcs-invest-card { background: var(--navy-2); padding: 2.5rem; transition: background 0.3s; }
.rcs-invest-card:hover { background: var(--navy-3); }
.rcs-invest-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: rgba(235,202,82,0.12); line-height: 1; display: block; margin-bottom: 1rem; }
.rcs-invest-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 0.7rem; color: var(--white); }
.rcs-invest-card p { font-family: 'Outfit', sans-serif; font-size: 0.85rem; color: var(--mist); line-height: 1.7; }

/* ============================================
   COVERAGE MAP
   ============================================ */
.rcs-coverage { background: var(--navy-2); }
.rcs-cov-intro { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; margin-bottom: 3.5rem; }
.rcs-cov-intro p { font-family: 'Outfit', sans-serif; color: var(--mist-2); line-height: 1.8; }
.rcs-cov-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(235,202,82,0.08); }
.rcs-cov-item { background: var(--navy-2); padding: 1rem 1.4rem; display: flex; align-items: center; gap: 0.8rem; transition: background 0.3s; }
.rcs-cov-item:hover { background: var(--navy-3); }
.rcs-dot { width: 5px; height: 5px; background: var(--gold); flex-shrink: 0; }
.rcs-cov-item span { font-family: 'Outfit', sans-serif; font-size: 0.82rem; color: var(--mist-2); }

/* ============================================
   CREDENTIALS
   ============================================ */
.rcs-credentials { background: var(--navy); }
.rcs-cred-full-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(235,202,82,0.1); margin-top: 3rem; }
.rcs-cred-full { background: var(--navy-2); padding: 2rem; text-align: center; transition: background 0.3s; }
.rcs-cred-full:hover { background: var(--navy-3); }
.rcs-cred-abbr { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.rcs-cred-full-name { font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 500; color: var(--mist-2); line-height: 1.5; }
.rcs-cred-org { font-family: 'Outfit', sans-serif; font-size: 0.65rem; color: var(--mist); margin-top: 0.4rem; display: block; }

/* ============================================
   FAQ
   ============================================ */
.rcs-faq { background: var(--navy-2); }
.rcs-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(235,202,82,0.1); margin-top: 3rem; }
.rcs-faq-item { background: var(--navy-2); padding: 2.5rem; cursor: pointer; }
.rcs-faq-item:hover { background: var(--navy-3); }
.rcs-faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--white); margin-bottom: 1rem; line-height: 1.4;
  display: flex; justify-content: space-between; align-items: start; gap: 1rem;
}
.rcs-faq-q span { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; }
.rcs-faq-a { font-family: 'Outfit', sans-serif; font-size: 0.88rem; color: var(--mist); line-height: 1.8; display: none; }
.rcs-faq-item.open .rcs-faq-a { display: block; }
.rcs-faq-item.open .rcs-faq-q span { transform: rotate(45deg); display: inline-block; }

/* ============================================
   WHY JERROD
   ============================================ */
.rcs-why { background: var(--navy); }
.rcs-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(235,202,82,0.1); margin-top: 3.5rem; }
.rcs-why-card { background: var(--navy-2); padding: 2.5rem 2rem; transition: background 0.3s; }
.rcs-why-card:hover { background: var(--navy-3); }
.rcs-why-n { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: rgba(235,202,82,0.12); line-height: 1; margin-bottom: 1rem; display: block; }
.rcs-why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 0.7rem; color: var(--white); }
.rcs-why-card p { font-family: 'Outfit', sans-serif; font-size: 0.85rem; color: var(--mist); line-height: 1.7; }

/* ============================================
   REVIEWS
   ============================================ */
.rcs-reviews { background: var(--navy-2); }
.rcs-reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(235,202,82,0.1); margin-top: 3.5rem; }
.rcs-review { background: var(--navy-2); padding: 2.5rem; }
.rcs-review-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.2em; margin-bottom: 1.2rem; }
.rcs-review p { font-family: 'Playfair Display', serif; font-size: 1rem; font-style: italic; color: var(--cream); line-height: 1.8; margin-bottom: 1.5rem; }
.rcs-review-by { font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.rcs-review-platform { font-family: 'Outfit', sans-serif; font-size: 0.65rem; color: var(--mist); margin-top: 0.3rem; }

/* ============================================
   BIG CTA
   ============================================ */
.rcs-bigcta {
  background: var(--gold); padding: 6rem 5rem;
  display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center;
}
.rcs-bigcta h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; color: var(--navy); line-height: 1.1; }
.rcs-bigcta h2 em { font-style: italic; }
.rcs-bigcta p { font-family: 'Outfit', sans-serif; color: rgba(59,14,130,0.65); margin-top: 0.8rem; font-size: 1rem; }
.rcs-cta-btns { display: flex; flex-direction: column; gap: 1rem; }
.rcs-btn-navy {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1.1rem 2.5rem; background: var(--navy); color: var(--gold);
  text-decoration: none; text-align: center; transition: background 0.3s; white-space: nowrap;
}
.rcs-btn-navy:hover { background: var(--navy-2); }
.rcs-btn-outline-navy {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1.1rem 2.5rem; border: 2px solid var(--navy); color: var(--navy);
  text-decoration: none; text-align: center; transition: all 0.3s; white-space: nowrap;
}
.rcs-btn-outline-navy:hover { background: rgba(59,14,130,0.1); }

/* ============================================
   CONTACT
   ============================================ */
.rcs-contact {
  background: var(--navy-2); padding: 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.rcs-contact-info { display: flex; flex-direction: column; gap: 2rem; }
.rcs-ci { display: flex; align-items: flex-start; gap: 1.5rem; }
.rcs-ci-ico { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.rcs-ci strong { font-family: 'Outfit', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.3rem; }
.rcs-ci span, .rcs-ci a { font-family: 'Outfit', sans-serif; font-size: 0.95rem; color: var(--mist-2); text-decoration: none; }

/* WPForms overrides to match design */
.rcs-contact .wpforms-container { color: var(--white); }
.rcs-contact .wpforms-field-label { font-family: 'Outfit', sans-serif !important; font-size: 0.62rem !important; font-weight: 600 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; color: var(--mist) !important; margin-bottom: 0.4rem !important; }
.rcs-contact .wpforms-field input,
.rcs-contact .wpforms-field select,
.rcs-contact .wpforms-field textarea {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(235,202,82,0.2) !important;
  color: var(--white) !important;
  padding: 0.8rem 1rem !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.88rem !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.rcs-contact .wpforms-field input:focus,
.rcs-contact .wpforms-field select:focus,
.rcs-contact .wpforms-field textarea:focus { border-color: var(--gold) !important; outline: none !important; }
.rcs-contact .wpforms-submit {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.78rem !important; font-weight: 700 !important;
  letter-spacing: 0.14em !important; text-transform: uppercase !important;
  padding: 1rem 2rem !important; background: var(--gold) !important;
  color: var(--navy) !important; border: none !important;
  border-radius: 0 !important; cursor: pointer !important;
  transition: background 0.3s !important; width: 100% !important;
}
.rcs-contact .wpforms-submit:hover { background: var(--gold-2) !important; }

/* ============================================
   FOOTER
   ============================================ */
.rcs-footer { background: #1a0040; padding: 4rem 5rem 2rem; }
.rcs-foot-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(235,202,82,0.08);
}
.rcs-foot-brand h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); margin-bottom: 0.3rem; }
.rcs-foot-brand .rcs-tag { font-family: 'Outfit', sans-serif; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mist); }
.rcs-foot-brand p { font-family: 'Outfit', sans-serif; margin-top: 1.2rem; font-size: 0.82rem; color: var(--mist); line-height: 1.75; max-width: 260px; }
.rcs-fc h4 { font-family: 'Outfit', sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.rcs-fc h4 + h4 { margin-top: 1.5rem; }
.rcs-fc ul { list-style: none; padding: 0; margin: 0; }
.rcs-fc ul li { font-family: 'Outfit', sans-serif; font-size: 0.82rem; color: var(--mist); margin-bottom: 0.5rem; }
.rcs-fc ul li a { color: var(--mist); text-decoration: none; transition: color 0.3s; }
.rcs-fc ul li a:hover { color: var(--gold); }
.rcs-foot-bot { padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
.rcs-foot-bot p { font-family: 'Outfit', sans-serif; font-size: 0.74rem; color: var(--mist); }
.rcs-foot-lic { font-family: 'Outfit', sans-serif; font-size: 0.65rem; color: rgba(235,202,82,0.35); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes rcsFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media(max-width:1024px) {
  nav#rcs-nav, nav#rcs-nav.scrolled { padding: 1.2rem 2rem; }
  .rcs-nav-links { display: none; }
  .rcs-hero { grid-template-columns: 1fr; }
  .rcs-hero-left { padding: 7rem 2rem 3rem; }
  .rcs-hero-right { height: 380px; }
  .rcs-hero-stats { bottom: 1rem; left: 1rem; right: 1rem; }
  .rcs-sec, .rcs-sec-sm, .rcs-military, .rcs-coverage, .rcs-investment,
  .rcs-credentials, .rcs-faq, .rcs-why, .rcs-reviews,
  .rcs-bigcta, .rcs-contact, .rcs-footer, .rcs-distressed { padding-left: 2rem; padding-right: 2rem; }
  .rcs-about-grid, .rcs-svc-intro, .rcs-cov-intro,
  .rcs-military, .rcs-dist-hero, .rcs-contact, .rcs-bigcta { grid-template-columns: 1fr; gap: 3rem; }
  .rcs-nbh-grid, .rcs-why-grid, .rcs-cred-full-grid { grid-template-columns: 1fr 1fr; }
  .rcs-spec-grid, .rcs-dist-services-grid, .rcs-faq-grid { grid-template-columns: 1fr; }
  .rcs-dist-grid, .rcs-invest-grid, .rcs-reviews-grid { grid-template-columns: 1fr; }
  .rcs-cov-grid { grid-template-columns: repeat(2,1fr); }
  .rcs-foot-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .rcs-foot-bot { flex-direction: column; gap: 1rem; text-align: center; }
  .rcs-trust-bar { gap: 1.5rem; padding: 1rem 2rem; }
}
@media(max-width:600px) {
  .rcs-nbh-grid, .rcs-why-grid, .rcs-cred-full-grid { grid-template-columns: 1fr; }
  .rcs-foot-top { grid-template-columns: 1fr; }
}
/* ── NAV LOGO ──────────────────────────────────────────────── */
.rcs-nav-logo {
  height: 36px !important;
  width: auto !important;
  display: inline-block !important;
  vertical-align: middle !important;
  margin-right: 0.6rem !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
}
body.rcs-blank-page .rcs-nav-brand {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
}
@media(max-width:600px) {
  .rcs-nav-logo { height: 28px !important; }
}

/* ── HERO TAGLINE — BELOW PHOTO ────────────────────────────── */
.rcs-hero-tagline {
  padding: 1.5rem 2rem !important;
  background: rgba(59,14,130,0.5) !important;
  border-top: 1px solid rgba(235,202,82,0.2) !important;
  max-width: 340px !important;
  margin: 0 auto !important;
}
body.rcs-blank-page .rcs-hero-tagline p {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.82rem !important;
  line-height: 1.7 !important;
  color: #a8bccf !important;
  margin-bottom: 0.6rem !important;
}
body.rcs-blank-page .rcs-hero-tagline p strong {
  color: #EBCA52 !important;
  font-weight: 600 !important;
}
body.rcs-blank-page .rcs-motto {
  font-family: 'Playfair Display', serif !important;
  font-size: 0.95rem !important;
  font-style: italic !important;
  color: #EBCA52 !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}

/* ── CREDENTIAL STRIP ──────────────────────────────────────── */
.rcs-cred-strip {
  background: #2a0070 !important;
  padding: 0 !important;
  overflow-x: auto !important;
  border-top: 1px solid rgba(235,202,82,0.15) !important;
  border-bottom: 1px solid rgba(235,202,82,0.15) !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
}
.rcs-cred-strip::-webkit-scrollbar {
  display: none !important;
}
.rcs-cred-strip-inner {
  display: flex !important;
  align-items: stretch !important;
  min-width: max-content !important;
  padding: 0 2rem !important;
}
.rcs-cred-strip-item {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 1.4rem 2rem !important;
  white-space: nowrap !important;
  text-align: center !important;
  transition: background 0.3s !important;
}
.rcs-cred-strip-item:hover {
  background: rgba(235,202,82,0.06) !important;
}
body.rcs-blank-page .rcs-cred-strip-item strong {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #EBCA52 !important;
  display: block !important;
  margin-bottom: 0.25rem !important;
}
body.rcs-blank-page .rcs-cred-strip-item span {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.72rem !important;
  color: #a8bccf !important;
  display: block !important;
}
.rcs-cred-strip-divider {
  width: 1px !important;
  background: rgba(235,202,82,0.15) !important;
  align-self: stretch !important;
  flex-shrink: 0 !important;
  margin: 0.8rem 0 !important;
}

/* ── FEATURED LISTINGS ─────────────────────────────────────── */
.rcs-listings { background: var(--navy-2); }
.rcs-listings-header {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  margin-bottom: 3rem !important;
  flex-wrap: wrap !important;
  gap: 1.5rem !important;
}
.rcs-listings-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1px !important;
  background: rgba(235,202,82,0.1) !important;
}
.rcs-listing-card {
  background: #3B0E82 !important;
  transition: background 0.3s !important;
  display: flex !important;
  flex-direction: column !important;
}
.rcs-listing-card:hover { background: #4c1e92 !important; }
.rcs-listing-img {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 4/3 !important;
  overflow: hidden !important;
}
.rcs-listing-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: transform 0.4s ease !important;
}
.rcs-listing-card:hover .rcs-listing-img img {
  transform: scale(1.04) !important;
}
.rcs-listing-status {
  position: absolute !important;
  top: 1rem !important;
  left: 1rem !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 0.35rem 0.8rem !important;
  background: #EBCA52 !important;
  color: #3B0E82 !important;
}
.rcs-status-contract { background: #4a90d9 !important; color: #fff !important; }
.rcs-status-sold { background: #2a7a4a !important; color: #fff !important; }
.rcs-status-new { background: #8b2030 !important; color: #fff !important; }
.rcs-listing-body {
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}
body.rcs-blank-page .rcs-listing-price {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #EBCA52 !important;
  margin-bottom: 0.4rem !important;
}
body.rcs-blank-page .rcs-listing-address {
  font-family: 'Playfair Display', serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #faf8f4 !important;
  margin-bottom: 0.2rem !important;
}
body.rcs-blank-page .rcs-listing-location {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.78rem !important;
  color: #a8bccf !important;
  margin-bottom: 0.8rem !important;
}
.rcs-listing-details {
  display: flex !important;
  gap: 1rem !important;
  margin-bottom: 0.8rem !important;
  flex-wrap: wrap !important;
}
body.rcs-blank-page .rcs-listing-details span {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.75rem !important;
  color: #a8bccf !important;
}
body.rcs-blank-page .rcs-listing-desc {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.82rem !important;
  color: #7a8fa8 !important;
  line-height: 1.65 !important;
  margin-bottom: 1.2rem !important;
  flex: 1 !important;
}
.rcs-listing-btn {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 0.7rem 1.2rem !important;
  background: transparent !important;
  border: 1px solid rgba(235,202,82,0.4) !important;
  color: #EBCA52 !important;
  text-decoration: none !important;
  text-align: center !important;
  transition: all 0.3s !important;
  display: block !important;
  margin-top: auto !important;
}
.rcs-listing-btn:hover {
  background: #EBCA52 !important;
  color: #3B0E82 !important;
  border-color: #EBCA52 !important;
}

/* Responsive listings */
@media(max-width:1024px) {
  .rcs-listings-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .rcs-listings-header { flex-direction: column !important; align-items: flex-start !important; }
}
@media(max-width:600px) {
  .rcs-listings-grid { grid-template-columns: 1fr !important; }
}

/* ── DIFFERENTIATOR GRID (2 rows × 4 cols) ─────────────────── */
.rcs-diff-grid-sec {
  background: #2a0070 !important;
  padding: 0 !important;
  width: 100% !important;
}
.rcs-diff-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1px !important;
  background: rgba(235,202,82,0.12) !important;
  width: 100% !important;
}
.rcs-diff-item {
  background: #2a0070 !important;
  padding: 2rem 1.8rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  transition: background 0.3s !important;
  gap: 0.5rem !important;
}
.rcs-diff-item:hover {
  background: #4c1e92 !important;
}
.rcs-diff-ico {
  font-size: 2rem !important;
  display: block !important;
  margin-bottom: 0.3rem !important;
  line-height: 1 !important;
}
body.rcs-blank-page .rcs-diff-item strong {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #EBCA52 !important;
  display: block !important;
  line-height: 1.3 !important;
}
body.rcs-blank-page .rcs-diff-item span {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.72rem !important;
  color: #a8bccf !important;
  display: block !important;
  line-height: 1.4 !important;
}

/* Responsive differentiator grid */
@media(max-width:1024px) {
  .rcs-diff-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media(max-width:600px) {
  .rcs-diff-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .rcs-diff-item { padding: 1.5rem 1rem !important; }
  .rcs-diff-ico { font-size: 1.6rem !important; }
}

/* ── HERO TAGLINE REPOSITIONED — BELOW PHOTO ABOVE STATS ───── */
.rcs-hero-tagline {
  padding: 1.2rem 2rem !important;
  background: rgba(59,14,130,0.6) !important;
  border-top: 1px solid rgba(235,202,82,0.2) !important;
  border-bottom: 1px solid rgba(235,202,82,0.1) !important;
  width: 100% !important;
  text-align: center !important;
}
body.rcs-blank-page .rcs-hero-tagline p {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.8rem !important;
  line-height: 1.65 !important;
  color: #a8bccf !important;
  margin-bottom: 0.5rem !important;
  text-align: center !important;
  max-width: 100% !important;
}
body.rcs-blank-page .rcs-hero-tagline p:last-child {
  margin-bottom: 0 !important;
}

/* ── HERO RIGHT — STACK PHOTO + TAGLINE + STATS VERTICALLY ─── */
body.rcs-blank-page .rcs-hero-right {
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  padding-top: 0 !important;
}
body.rcs-blank-page .rcs-hero-photo {
  flex-shrink: 0 !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4/3 !important;
  position: relative !important;
}
body.rcs-blank-page .rcs-hero-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top !important;
  display: block !important;
}
body.rcs-blank-page .rcs-hero-tagline {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}
body.rcs-blank-page .rcs-hero-stats {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  margin-top: auto !important;
}

/* ── HERO PHOTO — RESTORE ORIGINAL SIZE ────────────────────── */
body.rcs-blank-page .rcs-hero-photo {
  width: 300px !important;
  height: 360px !important;
  aspect-ratio: unset !important;
  flex-shrink: 0 !important;
  position: relative !important;
  align-self: center !important;
}

/* ── HERO TAGLINE + STATS — MATCH PHOTO WIDTH ───────────────── */
body.rcs-blank-page .rcs-hero-tagline {
  width: 300px !important;
  max-width: 300px !important;
  align-self: center !important;
}
body.rcs-blank-page .rcs-hero-stats {
  width: 300px !important;
  align-self: center !important;
}

/* ── DISTRESSED SECTION — REDUCE PADDING & GAP ─────────────── */
body.rcs-blank-page .rcs-distressed {
  padding: 4rem 3rem !important;
}
body.rcs-blank-page .rcs-dist-hero {
  gap: 3rem !important;
  margin-bottom: 2rem !important;
}

/* ── HERO PHOTO — SHIFT DOWN ────────────────────────────────── */
body.rcs-blank-page .rcs-hero-right {
  padding-top: 4rem !important;
}

/* ── DISTRESSED SECTION — FORCE REDUCE VERTICAL PADDING ─────── */
body.rcs-blank-page section.rcs-distressed,
body.rcs-blank-page .rcs-distressed.rcs-sec {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
body.rcs-blank-page .rcs-distressed .rcs-dist-hero {
  gap: 2.5rem !important;
  margin-bottom: 1.5rem !important;
}
body.rcs-blank-page .rcs-distressed .rcs-dist-services-grid {
  gap: 1px !important;
}

/* ── DISTRESSED SECTION — 1rem TOP/BOTTOM ───────────────────── */
body.rcs-blank-page section.rcs-distressed,
body.rcs-blank-page .rcs-distressed.rcs-sec {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* ── DISTRESSED SERVICES GRID — TIGHTER TEXT & BOXES ────────── */
body.rcs-blank-page .rcs-dist-services-grid .rcs-spec {
  padding: 1.5rem !important;
}
body.rcs-blank-page .rcs-dist-services-grid .rcs-spec h3 {
  font-size: 1rem !important;
  margin-bottom: 0.5rem !important;
}
body.rcs-blank-page .rcs-dist-services-grid .rcs-spec p {
  font-size: 0.75rem !important;
  line-height: 1.55 !important;
}
body.rcs-blank-page .rcs-dist-services-grid .rcs-spec-ico {
  font-size: 1.3rem !important;
  margin-bottom: 0.6rem !important;
}

/* ── REDUCE TOP PADDING ON ALL CONTENT SECTIONS ─────────────── */
body.rcs-blank-page .rcs-services.rcs-sec,
body.rcs-blank-page .rcs-listings.rcs-sec,
body.rcs-blank-page .rcs-military,
body.rcs-blank-page .rcs-investment.rcs-sec,
body.rcs-blank-page .rcs-coverage.rcs-sec-sm,
body.rcs-blank-page .rcs-credentials.rcs-sec,
body.rcs-blank-page .rcs-faq.rcs-sec,
body.rcs-blank-page .rcs-why.rcs-sec,
body.rcs-blank-page .rcs-reviews.rcs-sec {
  padding-top: 3.5rem !important;
}

/* ── REDUCE TOP PADDING — ABOUT SECTION ─────────────────────── */
body.rcs-blank-page .rcs-about.rcs-sec {
  padding-top: 3.5rem !important;
}

/* ── REDUCE BOTTOM PADDING — ABOUT SECTION ──────────────────── */
body.rcs-blank-page .rcs-about.rcs-sec {
  padding-bottom: 3.5rem !important;
}

/* ── REDUCE BOTTOM PADDING — SERVICES SECTION ───────────────── */
body.rcs-blank-page .rcs-services.rcs-sec {
  padding-bottom: 3.5rem !important;
}

/* ── REDUCE BOTTOM PADDING — ALL MAJOR SECTIONS ─────────────── */
body.rcs-blank-page .rcs-services.rcs-sec,
body.rcs-blank-page .rcs-listings.rcs-sec,
body.rcs-blank-page .rcs-military,
body.rcs-blank-page .rcs-investment.rcs-sec,
body.rcs-blank-page .rcs-coverage.rcs-sec-sm,
body.rcs-blank-page .rcs-credentials.rcs-sec,
body.rcs-blank-page .rcs-faq.rcs-sec,
body.rcs-blank-page .rcs-why.rcs-sec,
body.rcs-blank-page .rcs-reviews.rcs-sec,
body.rcs-blank-page .rcs-bigcta,
body.rcs-blank-page .rcs-contact {
  padding-bottom: 3.5rem !important;
}

/* ── INCREASE TOP PADDING — DISTRESSED SECTION ──────────────── */
body.rcs-blank-page section.rcs-distressed,
body.rcs-blank-page .rcs-distressed.rcs-sec {
  padding-top: 4rem !important;
}

/* ── ABOUT SECTION — REDUCE BOTTOM PADDING ──────────────────── */
body.rcs-blank-page .rcs-about.rcs-sec {
  padding-bottom: 2rem !important;
}

/* ── DISTRESSED SECTION — SET TOP PADDING TO 3.5rem ─────────── */
body.rcs-blank-page section.rcs-distressed,
body.rcs-blank-page .rcs-distressed.rcs-sec {
  padding-top: 3.5rem !important;
}

/* ── HERO TAGLINE — WIDER BELOW PHOTO ───────────────────────── */
body.rcs-blank-page .rcs-hero-tagline {
  width: 100% !important;
  max-width: 100% !important;
  align-self: stretch !important;
  padding: 1.4rem 2.5rem !important;
  text-align: left !important;
}
body.rcs-blank-page .rcs-hero-tagline p {
  text-align: left !important;
  max-width: 100% !important;
}

/* ── NAV BRAND — STACKED WITH BROKERAGE NAME ────────────────── */
.rcs-nav-brand-text {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.2 !important;
}
.rcs-nav-brokerage {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.62rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: rgba(235,202,82,0.65) !important;
  margin-top: 0.15rem !important;
}

/* ── NAV BROKERAGE — TITLE CASE NOT ALL CAPS ────────────────── */
.rcs-nav-brokerage {
  text-transform: none !important;
  font-size: 0.65rem !important;
}

/* ── REVIEWS WIDGET CONTAINER ───────────────────────────────── */
.rcs-reviews-widget {
  width: 100% !important;
  background: rgba(59,14,130,0.4) !important;
  border-top: 1px solid rgba(235,202,82,0.1) !important;
  border-bottom: 1px solid rgba(235,202,82,0.1) !important;
  padding: 1.2rem 1.5rem !important;
  overflow: hidden !important;
}
.rcs-reviews-widget-placeholder {
  text-align: center !important;
  padding: 1.5rem !important;
  border: 1px dashed rgba(235,202,82,0.25) !important;
  border-radius: 4px !important;
}
body.rcs-blank-page .rcs-reviews-widget-placeholder p {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.9rem !important;
  color: #EBCA52 !important;
  margin-bottom: 0.3rem !important;
}
body.rcs-blank-page .rcs-reviews-widget-placeholder span {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.7rem !important;
  color: #7a8fa8 !important;
}

/* ── RANGER TAB SVG ──────────────────────────────────────────── */
.rcs-ranger-tab {
  width: 80px !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto !important;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4)) !important;
}
.rcs-ranger-tab-sm {
  width: 60px !important;
}

/* ── HERO PILLS — 3 PER ROW LAYOUT ──────────────────────────── */
body.rcs-blank-page .rcs-hero-pills {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
  max-width: 460px !important;
}
body.rcs-blank-page .rcs-pill {
  flex: 0 0 calc(33.333% - 0.35rem) !important;
  text-align: center !important;
  font-size: 0.62rem !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* ── HERO PILLS — EQUAL WIDTH RECTANGLE ─────────────────────── */
body.rcs-blank-page .rcs-hero-pills {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0.4rem !important;
  max-width: 420px !important;
}
body.rcs-blank-page .rcs-pill {
  flex: unset !important;
  text-align: center !important;
  font-size: 0.6rem !important;
  white-space: nowrap !important;
  padding: 0.35rem 0.5rem !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* ── HERO TAGLINE — LARGER TEXT ─────────────────────────────── */
body.rcs-blank-page .rcs-hero-tagline p {
  font-size: 0.95rem !important;
  line-height: 1.75 !important;
}
body.rcs-blank-page .rcs-motto {
  font-size: 1.1rem !important;
  line-height: 1.5 !important;
}

/* ── HERO PILLS — MATCH BUTTON ROW WIDTH ────────────────────── */
body.rcs-blank-page .rcs-hero-actions {
  flex-wrap: nowrap !important;
}
body.rcs-blank-page .rcs-hero-actions .rcs-btn-primary,
body.rcs-blank-page .rcs-hero-actions .rcs-btn-secondary {
  flex: 1 !important;
  text-align: center !important;
}
body.rcs-blank-page .rcs-hero-pills {
  max-width: 100% !important;
  width: 100% !important;
}

/* ── CALENDLY INLINE WIDGET ──────────────────────────────────── */
.rcs-calendly-wrap {
  width: 100% !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  border: 1px solid rgba(235,202,82,0.15) !important;
}
.rcs-calendly-wrap .calendly-inline-widget {
  width: 100% !important;
}

/* ── CTA LABEL — NON-CLICKABLE VALUE PROP ───────────────────── */
.rcs-cta-label {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 1.1rem 2.5rem !important;
  background: #3B0E82 !important;
  color: #EBCA52 !important;
  text-align: center !important;
  white-space: nowrap !important;
  cursor: default !important;
  user-select: none !important;
}

/* ── BIG CTA — REDUCE TOP/BOTTOM PADDING ────────────────────── */
body.rcs-blank-page .rcs-bigcta {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* ── CONTACT SECTION — REDUCE TOP/BOTTOM PADDING ────────────── */
body.rcs-blank-page .rcs-contact {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

/* ── CONTACT SECTION — ALIGN COLUMNS TO CALENDLY HEIGHT ─────── */
body.rcs-blank-page .rcs-contact {
  align-items: stretch !important;
}
body.rcs-blank-page .rcs-contact-info {
  justify-content: flex-start !important;
}
body.rcs-blank-page .rcs-calendly-wrap {
  height: 700px !important;
  overflow: hidden !important;
}
body.rcs-blank-page .rcs-calendly-wrap .calendly-inline-widget {
  height: 700px !important;
}

/* ── DIFF GRID — BALANCE ICON & RANGER TAB SIZES ────────────── */
body.rcs-blank-page .rcs-diff-ico {
  font-size: 2.6rem !important;
}
body.rcs-blank-page .rcs-diff-item .rcs-ranger-tab {
  width: 52px !important;
  height: auto !important;
  margin: 0 auto !important;
  display: block !important;
}

/* ── DIFF GRID — DOUBLE EMOJI ICON SIZE ─────────────────────── */
body.rcs-blank-page .rcs-diff-ico {
  font-size: 5.2rem !important;
}

/* ── TRUST BAR — 4 PER ROW ───────────────────────────────────── */
body.rcs-blank-page .rcs-trust-bar {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  padding: 0 !important;
}
body.rcs-blank-page .rcs-trust-item {
  padding: 1rem 1.5rem !important;
  justify-content: center !important;
  border-right: 1px solid rgba(11,20,38,0.15) !important;
  border-bottom: 1px solid rgba(11,20,38,0.15) !important;
}
body.rcs-blank-page .rcs-trust-item:nth-child(4n) {
  border-right: none !important;
}
body.rcs-blank-page .rcs-trust-item:nth-child(n+5) {
  border-bottom: none !important;
}

/* ── STATS BAR ───────────────────────────────────────────────── */
.rcs-stats-bar {
  background: #2a0070 !important;
  width: 100% !important;
  border-top: 1px solid rgba(235,202,82,0.15) !important;
  border-bottom: 1px solid rgba(235,202,82,0.15) !important;
}
.rcs-stats-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1px !important;
  background: rgba(235,202,82,0.12) !important;
}
.rcs-stat-item {
  background: #2a0070 !important;
  padding: 2.5rem 2rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  transition: background 0.3s !important;
  gap: 0.4rem !important;
}
.rcs-stat-item:hover {
  background: #4c1e92 !important;
}
.rcs-stat-num {
  font-family: 'Playfair Display', serif !important;
  font-size: 4rem !important;
  font-weight: 900 !important;
  color: #EBCA52 !important;
  line-height: 1 !important;
  display: block !important;
}
body.rcs-blank-page .rcs-stat-label {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #faf8f4 !important;
  display: block !important;
  margin-top: 0.3rem !important;
}
body.rcs-blank-page .rcs-stat-desc {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.72rem !important;
  color: #7a8fa8 !important;
  display: block !important;
  line-height: 1.5 !important;
  margin-top: 0.2rem !important;
}

/* Responsive stats bar */
@media(max-width:1024px) {
  .rcs-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media(max-width:600px) {
  .rcs-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .rcs-stat-num { font-size: 3rem !important; }
  .rcs-stat-item { padding: 1.5rem 1rem !important; }
}

/* ── CALENDLY EMBED — REDUCED HEIGHT ────────────────────────── */
body.rcs-blank-page .rcs-calendly-wrap {
  height: 550px !important;
}
body.rcs-blank-page .rcs-calendly-wrap .calendly-inline-widget {
  height: 550px !important;
}

/* ── DISTRESSED CERT BADGES — 3x3 GRID ──────────────────────── */
body.rcs-blank-page .rcs-cert-badges {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0.5rem !important;
  margin-top: 1.5rem !important;
}
body.rcs-blank-page .rcs-cert-badge {
  text-align: center !important;
  padding: 0.5rem 0.8rem !important;
  font-size: 0.65rem !important;
  white-space: nowrap !important;
}

/* ── CALENDLY EMBED — 570px HEIGHT ──────────────────────────── */
body.rcs-blank-page .rcs-calendly-wrap {
  height: 570px !important;
}
body.rcs-blank-page .rcs-calendly-wrap .calendly-inline-widget {
  height: 570px !important;
}

/* ── CALENDLY EMBED — 600px HEIGHT ──────────────────────────── */
body.rcs-blank-page .rcs-calendly-wrap {
  height: 600px !important;
}
body.rcs-blank-page .rcs-calendly-wrap .calendly-inline-widget {
  height: 600px !important;
}

/* ── HERO PHOTO — 20% SMALLER ───────────────────────────────── */
body.rcs-blank-page .rcs-hero-photo {
  width: 240px !important;
  height: 288px !important;
}

/* ── NAMEPLATE — STACK NAME ABOVE TITLE ─────────────────────── */
body.rcs-blank-page .rcs-nameplate {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.2rem !important;
  padding: 0.9rem 1.5rem !important;
}
body.rcs-blank-page .rcs-nameplate strong {
  font-size: 1.15rem !important;
  display: block !important;
  line-height: 1.2 !important;
}
body.rcs-blank-page .rcs-nameplate span {
  font-size: 0.68rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  display: block !important;
  line-height: 1.2 !important;
}

/* ── NAV PHONE NUMBER ────────────────────────────────────────── */
.rcs-nav-phone {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  color: #EBCA52 !important;
  text-decoration: none !important;
  transition: color 0.3s !important;
  white-space: nowrap !important;
}
.rcs-nav-phone:hover {
  color: #faf8f4 !important;
}
@media(max-width:1024px) {
  .rcs-nav-phone { display: none !important; }
}

/* ── FAQ GROUP LABELS ────────────────────────────────────────── */
.rcs-faq-group-label {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #EBCA52 !important;
  padding: 2rem 0 1rem 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
}
.rcs-faq-group-label::before {
  content: '' !important;
  width: 2rem !important;
  height: 1px !important;
  background: #EBCA52 !important;
}
.rcs-faq-group-label::after {
  content: '' !important;
  flex: 1 !important;
  height: 1px !important;
  background: rgba(235,202,82,0.15) !important;
}

/* ── FAQ SECTION — REDUCE TOP/BOTTOM PADDING ────────────────── */
body.rcs-blank-page .rcs-faq.rcs-sec {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
body.rcs-blank-page .rcs-faq-item {
  padding: 1.2rem 1.5rem !important;
}
body.rcs-blank-page .rcs-faq-group-label {
  padding-top: 1.2rem !important;
  padding-bottom: 0.5rem !important;
}

/* ── FAQ — REDUCE ALL PADDING BY HALF ───────────────────────── */
body.rcs-blank-page .rcs-faq.rcs-sec {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
body.rcs-blank-page .rcs-faq-group-label {
  padding-top: 0.6rem !important;
  padding-bottom: 0.25rem !important;
}
body.rcs-blank-page .rcs-faq-item {
  padding-top: 0.6rem !important;
  padding-bottom: 0.6rem !important;
}

/* ── FAQ GROUP LABEL — REDUCE TOP PADDING FURTHER ───────────── */
body.rcs-blank-page .rcs-faq-group-label {
  padding-top: 0.3rem !important;
}

/* ── BIG CTA — REDUCE BOTTOM PADDING FURTHER ────────────────── */
body.rcs-blank-page .rcs-bigcta {
  padding-bottom: 1.5rem !important;
}

/* ── FAQ SECTION — SET TOP PADDING TO 3.5rem ────────────────── */
body.rcs-blank-page .rcs-faq.rcs-sec {
  padding-top: 3.5rem !important;
}

/* ── FAQ GROUP LABEL — SET TOP PADDING TO 1.5rem ────────────── */
body.rcs-blank-page .rcs-faq-group-label {
  padding-top: 1.5rem !important;
}

/* ── FAQ GROUP LABEL — SET TOP PADDING TO 0.75rem ───────────── */
body.rcs-blank-page .rcs-faq-group-label {
  padding-top: 0.75rem !important;
}

/* ── FAQ GRID — REDUCE TOP SPACING BELOW GROUP LABEL ────────── */
body.rcs-blank-page .rcs-faq .rcs-faq-grid {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body.rcs-blank-page .rcs-faq-group-label {
  margin-bottom: 0.4rem !important;
}

/* ── SPECIALIZATIONS GRID — 10 BOXES (2 rows x 5) ───────────── */
#rcs-tab-spec .rcs-spec-grid {
  grid-template-columns: repeat(5, 1fr) !important;
}
@media(max-width:1024px) {
  #rcs-tab-spec .rcs-spec-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── SPECIALIZATIONS GRID — REDUCE BOX PADDING ──────────────── */
#rcs-tab-spec .rcs-spec {
  padding: 1.25rem 1.5rem !important;
}
#rcs-tab-spec .rcs-spec-ico {
  font-size: 1.4rem !important;
  margin-bottom: 0.5rem !important;
}

/* ── SERVICE TABS — MORE PROMINENT ──────────────────────────── */
body.rcs-blank-page .rcs-tab {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  padding: 1rem 2.5rem !important;
  color: #a8bccf !important;
  border-bottom: 3px solid transparent !important;
  transition: all 0.25s !important;
}
body.rcs-blank-page .rcs-tab:hover {
  color: #EBCA52 !important;
  background: rgba(235,202,82,0.05) !important;
}
body.rcs-blank-page .rcs-tab.on {
  color: #EBCA52 !important;
  border-bottom-color: #EBCA52 !important;
  background: rgba(235,202,82,0.07) !important;
}

/* ── MILITARY BASES — CLEANER FORMATTING ────────────────────── */
body.rcs-blank-page .rcs-mil-right {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  border: 1px solid rgba(235,202,82,0.15) !important;
}
body.rcs-blank-page .rcs-base {
  padding: 1.2rem 1.8rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.3rem !important;
  border-left: 3px solid transparent !important;
  border-bottom: 1px solid rgba(235,202,82,0.1) !important;
  transition: all 0.3s !important;
}
body.rcs-blank-page .rcs-base:last-child {
  border-bottom: none !important;
}
body.rcs-blank-page .rcs-base:hover {
  background: rgba(235,202,82,0.05) !important;
  border-left-color: #EBCA52 !important;
}
body.rcs-blank-page .rcs-base h4 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #EBCA52 !important;
  line-height: 1.2 !important;
}
body.rcs-blank-page .rcs-base span {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.78rem !important;
  color: #a8bccf !important;
  line-height: 1.4 !important;
}

/* ── COVERAGE SECTION — REDUCE INTRO BOTTOM SPACING ─────────── */
body.rcs-blank-page .rcs-cov-intro {
  margin-bottom: 1.75rem !important;
}

/* ── SERVICES — REDUCE SPACING BEFORE TABS ──────────────────── */
body.rcs-blank-page .rcs-svc-intro {
  margin-bottom: 2rem !important;
}
body.rcs-blank-page .rcs-tabs {
  margin-bottom: 1.5rem !important;
}

/* ── COVERAGE SECTION — TIGHTER & BIGGER TEXT ───────────────── */
body.rcs-blank-page .rcs-cov-intro {
  margin-bottom: 1rem !important;
}
body.rcs-blank-page .rcs-cov-item {
  padding: 0.8rem 1.2rem !important;
}
body.rcs-blank-page .rcs-cov-item span {
  font-size: 0.95rem !important;
  font-weight: 500 !important;
}


/* ============================================================
   SERVICE PAGE ADDITIONS
   Append to the bottom of style.css in your child theme.
   All rules are scoped to .rcs-service-page to prevent
   any bleed onto the home page.
   ============================================================ */

/* ── BREADCRUMB ─────────────────────────────────────────────── */
/* Breadcrumb — hidden visually; BreadcrumbList schema still outputs in <head> */
.rcs-breadcrumb {
  display: none;
}

/* ── SERVICE HERO — remove top padding offset (breadcrumb adds it) ── */
.rcs-service-page .rcs-svc-hero {
  margin-top: 0 !important;
}
.rcs-service-page .rcs-hero-left {
  padding-top: 4rem;
}
.rcs-service-page .rcs-hero-right {
  padding-top: 4rem;
}

/* ── WHAT YOU GET SECTION ──────────────────────────────────── */
.rcs-svc-what {
  padding: 5rem 5rem;
}
.rcs-svc-what .rcs-svc-intro {
  margin-bottom: 3rem;
}
/* Reuse rcs-spec-grid + rcs-spec from home page — no new rules needed */

/* ── PROCESS STEPS ─────────────────────────────────────────── */
/* Reuses rcs-invest-grid + rcs-invest-card from home page investment section */
.rcs-svc-process {
  padding: 5rem 5rem;
}

/* ── LOCAL MARKET SECTION ──────────────────────────────────── */
.rcs-svc-local {
  padding: 5rem 5rem;
}
.rcs-svc-local-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.rcs-svc-local-text p {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--mist-2);
  margin-bottom: 1rem;
}
.rcs-svc-local-hoods .rcs-sec-label {
  margin-bottom: 1.5rem;
}
/* Reuses .rcs-nbh-grid + .rcs-nbh from home page neighborhoods tab */

/* ── CREDENTIALS BAR ───────────────────────────────────────── */
.rcs-svc-creds {
  background: var(--navy-2);
  border-top: 1px solid rgba(235,202,82,0.12);
  border-bottom: 1px solid rgba(235,202,82,0.12);
  padding: 2rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.rcs-cred {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.rcs-cred-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  background: var(--gold);
  color: var(--navy);
  white-space: nowrap;
}
.rcs-cred span:last-child {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--mist-2);
  white-space: nowrap;
}
@media(max-width:768px) {
  .rcs-svc-creds {
    padding: 1.5rem;
    gap: 1.5rem;
    justify-content: flex-start;
  }
  .rcs-cred span:last-child { display: none; }
}

/* ── FAQ — reuses home-page rules, no additions needed ──────── */

/* ── RESPONSIVE OVERRIDES ──────────────────────────────────── */
@media(max-width:1024px) {
  .rcs-svc-local-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .rcs-svc-what,
  .rcs-svc-process,
  .rcs-svc-local {
    padding: 3rem 2rem;
  }
}
@media(max-width:768px) {
  .rcs-svc-what,
  .rcs-svc-process,
  .rcs-svc-local {
    padding: 2rem 1.5rem;
  }
}

/* ============================================================
   SERVICE PAGE — TRUST BAR TEXT FIX & REVIEWS WIDGET PADDING
   ============================================================ */

/* Trust bar text — force navy so it shows on gold background */
body.rcs-service-page .rcs-trust-item {
  color: var(--navy) !important;
}
body.rcs-service-page .rcs-trust-item::before {
  color: var(--navy) !important;
}

/* Reviews widget — reduce top padding by half */
body.rcs-service-page .rcs-reviews-widget {
  margin-top: 0.5rem !important;
  padding-top: 0 !important;
}

/* ============================================================
   SERVICE PAGE — PHONE BUTTON LARGER & CENTERED
   ============================================================ */

body.rcs-service-page .rcs-hero-actions {
  flex-wrap: nowrap !important;
}

body.rcs-service-page .rcs-hero-actions .rcs-btn-primary,
body.rcs-service-page .rcs-hero-actions .rcs-btn-secondary {
  flex: 1 !important;
  text-align: center !important;
  justify-content: center !important;
  font-size: 0.85rem !important;
  padding: 1.2rem 2rem !important;
}
