/* ═══════════════════════════════════════════════════════════
   RFH INC  –  Website 2026  |  Shared Stylesheet
   Brand: Charcoal Gray (#3D3D4D) + Orange (#C95520)
   Serif: Playfair Display  ·  Sans: Inter
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

/* ── BRAND TOKENS  (derived from logo) ─────────────────── */
:root {
  /* Brand grays – match "RFH" charcoal in logo */
  --charcoal:     #3D3D4D;
  --charcoal-dk:  #2A2A38;
  --charcoal-md:  #5C5C6C;
  --charcoal-lt:  #7A7A8C;

  /* Brand orange – match "INC" orange in logo */
  --orange:       #C95520;
  --orange-dk:    #A84215;
  --orange-lt:    #F5E4DC;
  --orange-xlt:   #FDF3EF;

  /* Neutrals */
  --white:        #FFFFFF;
  --off-white:    #F8F7F5;
  --gray-lt:      #F0EDEA;
  --gray-md:      #D6D2CB;
  --border:       #E0DDD8;

  /* Text */
  --text:         #242430;
  --text-md:      #5C5C6C;
  --text-lt:      #8C8C9C;

  /* Typography */
  --serif:        'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:         'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Elevation */
  --shadow-sm:    0 2px 8px rgba(42,42,56,.07);
  --shadow-md:    0 8px 32px rgba(42,42,56,.11);
  --shadow-lg:    0 24px 64px rgba(42,42,56,.16);

  --radius:       4px;
  --radius-lg:    12px;
  --transition:   0.22s ease;
}

/* ── BASE ───────────────────────────────────────────────── */
body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 {
  font-family: var(--serif);
  line-height: 1.2;
  color: var(--charcoal-dk);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-md); line-height: 1.8; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-title  { font-family: var(--serif); color: var(--charcoal-dk); margin-bottom: 18px; }
.section-intro  { font-size: 1.05rem; color: var(--text-md); max-width: 600px; line-height: 1.85; }

.orange-bar {
  width: 48px; height: 3px;
  background: var(--orange);
  margin: 16px 0 30px;
  border-radius: 2px;
}

.text-center { text-align: center; }
.text-center .section-intro { margin: 0 auto; }
.text-center .orange-bar    { margin: 16px auto 30px; }

.page-body { padding-top: 84px; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 34px;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer;
  transition: all var(--transition); border: 2px solid transparent;
}
.btn-primary  { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover {
  background: var(--orange-dk); border-color: var(--orange-dk);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,85,32,.3);
}
.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent; color: var(--charcoal-dk); border-color: var(--charcoal-dk);
}
.btn-outline-dark:hover {
  background: var(--charcoal-dk); color: var(--white); transform: translateY(-2px);
}
.btn-sm { padding: 9px 22px; font-size: 0.74rem; }

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; max-width: 1200px; margin: 0 auto; padding: 0 40px;
}

/* Logo – mirrors the actual logo typography: RFH=orange, INC=grey */
.nav-logo { display: flex; align-items: center; gap: 0; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 54px; width: auto; display: block; }
.nav-logo-rfh {
  font-family: var(--serif); font-size: 2.1rem; font-weight: 900;
  color: var(--orange); letter-spacing: -0.03em; line-height: 1;
}
.nav-logo-inc {
  font-family: var(--serif); font-size: 2.1rem; font-weight: 900;
  color: var(--charcoal-md); letter-spacing: -0.03em; line-height: 1;
}
.nav-logo-sub {
  font-family: var(--serif); font-style: italic;
  font-size: 0.6rem; color: var(--charcoal-lt);
  letter-spacing: 0.01em; white-space: nowrap;
  display: block; margin-top: 2px;
}
.nav-logo-wrap { display: flex; flex-direction: column; }
.nav-logo-line {
  width: 100%; height: 1px; background: var(--charcoal-lt);
  display: block; margin: 2px 0;
}

.nav-links  { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; color: var(--text-md);
  padding: 7px 11px; border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal-dk); background: var(--gray-lt); }

/* Services mega-dropdown */
.nav-item-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.82rem; font-weight: 500; color: var(--text-md);
  padding: 7px 11px; border-radius: var(--radius);
  background: none; border: none; cursor: pointer; font-family: var(--sans);
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown-toggle:hover { color: var(--charcoal-dk); background: var(--gray-lt); }
.nav-dropdown-toggle svg { width: 13px; height: 13px; transition: transform 0.2s; }
.nav-item-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 16px; min-width: 700px;
  display: none; grid-template-columns: repeat(3, 1fr); gap: 4px;
}
.nav-item-dropdown:hover .nav-dropdown-menu { display: grid; }
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
}

.nav-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius);
  transition: background var(--transition);
  font-size: 0.82rem; font-weight: 500; color: var(--text-md);
}
.nav-dropdown-item:hover { background: var(--orange-xlt); color: var(--charcoal-dk); }
.nav-dropdown-icon {
  width: 28px; height: 28px;
  background: var(--orange-lt); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.9rem;
}

/* Nav CTA */
.nav-cta   { display: flex; align-items: center; gap: 10px; margin-left: 6px; }
.nav-phone { font-size: 0.8rem; font-weight: 600; color: var(--charcoal-dk); }

/* Mobile */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal-dk); border-radius: 2px; transition: all 0.3s;
}
.nav-mobile-menu {
  display: none; position: fixed; top: 84px; left: 0; right: 0; bottom: 0;
  background: var(--white); overflow-y: auto; padding: 24px 20px; z-index: 999;
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-links { list-style: none; display: flex; flex-direction: column; gap: 3px; }
.nav-mobile-links a {
  display: block; padding: 11px 16px;
  font-size: 0.9rem; font-weight: 500; color: var(--text-md);
  border-radius: var(--radius); transition: background var(--transition);
}
.nav-mobile-links a:hover { background: var(--gray-lt); }
.nav-mobile-section {
  display: block; padding: 20px 16px 6px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange); cursor: default;
}

@media (max-width: 1020px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
}

/* ── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  background: var(--charcoal-dk);
  padding: 148px 0 84px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(201,85,32,.14) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -50px; left: -50px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,85,32,.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .section-label { color: var(--orange); }
.page-hero h1             { color: var(--white); margin-bottom: 18px; }
.page-hero p              { color: rgba(255,255,255,.72); max-width: 600px; font-size: 1.08rem; }
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 18px; font-size: 0.76rem; font-weight: 500; color: rgba(255,255,255,.45);
}
.page-hero .breadcrumb a { color: var(--orange); }
.page-hero .breadcrumb a:hover { opacity: 0.8; }

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition); overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-body { padding: 32px; }
.card-icon {
  width: 54px; height: 54px;
  background: var(--orange-lt); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.card h3   { color: var(--charcoal-dk); margin-bottom: 10px; font-size: 1.12rem; }
.card p    { font-size: 0.9rem; line-height: 1.75; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--orange);
  transition: gap var(--transition), color var(--transition);
}
.card-link:hover { gap: 10px; color: var(--orange-dk); }

/* ── GRIDS ──────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services-grid { grid-template-columns: 1fr; } }
.services-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
@media (max-width: 1024px) { .services-mini-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services-mini-grid { grid-template-columns: 1fr; } }

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-bar { background: var(--charcoal-dk); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.stat-number {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 700;
  color: var(--orange); display: block; line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}

/* ── TEAM CARDS ─────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 900px; margin: 0 auto; }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.team-card-header { background: var(--charcoal-dk); padding: 40px 32px; }
.team-card-initials {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
  margin-bottom: 16px; border: 3px solid rgba(255,255,255,.15);
}
.team-card-name  { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.team-card-title { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); }
.team-card-body  { padding: 32px; }
.team-card-body p { font-size: 0.92rem; color: var(--text-md); line-height: 1.8; }
.team-card-quals  { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.qual-badge {
  background: var(--orange-xlt); color: var(--orange-dk);
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 40px; border: 1px solid var(--orange-lt);
}

/* ── CONTACT ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info-item {
  display: flex; gap: 16px;
  padding: 22px 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 42px; height: 42px;
  background: var(--charcoal-dk); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem;
}
.contact-info-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 4px;
}
.contact-info-value { font-size: 0.92rem; font-weight: 500; color: var(--text); }

/* ── FORMS ──────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-md); margin-bottom: 7px;
}
.form-control {
  width: 100%; padding: 13px 17px;
  font-family: var(--sans); font-size: 0.94rem; color: var(--text);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(201,85,32,.13); }
.form-control::placeholder { color: var(--text-lt); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1E1E2A 0%, var(--charcoal-dk) 50%, var(--charcoal) 100%);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,85,32,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2  { color: var(--white); margin-bottom: 14px; }
.cta-banner p   { color: rgba(255,255,255,.68); max-width: 520px; margin: 0 auto 34px; font-size: 1.05rem; }
.cta-banner .btn-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── STEPS ──────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps-grid { grid-template-columns: 1fr; } }
.step-item  { text-align: center; }
.step-num {
  width: 56px; height: 56px; background: var(--orange); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700; margin: 0 auto 20px;
}
.step-item h4 { color: var(--charcoal-dk); margin-bottom: 9px; }
.step-item p  { font-size: 0.88rem; color: var(--text-md); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item  { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 19px 24px; background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.93rem; font-weight: 600;
  color: var(--charcoal-dk); text-align: left; transition: background var(--transition);
}
.faq-question:hover { background: var(--orange-xlt); }
.faq-question svg { width: 17px; height: 17px; flex-shrink: 0; transition: transform 0.25s; color: var(--orange); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 24px 18px; font-size: 0.9rem; color: var(--text-md); line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }

/* ── BLOG ───────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.blog-card-img {
  height: 200px; background: var(--charcoal);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.blog-card-category {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: var(--white);
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 40px;
}
.blog-card-icon { opacity: 0.22; color: var(--white); display: flex; align-items: center; justify-content: center; }
.blog-card-icon svg { width: 68px; height: 68px; }
.blog-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; gap: 12px; font-size: 0.74rem; color: var(--text-lt); font-weight: 500; margin-bottom: 10px; }
.blog-card-body h3 { font-size: 1.08rem; color: var(--charcoal-dk); margin-bottom: 9px; line-height: 1.4; }
.blog-card-body p  { font-size: 0.87rem; color: var(--text-md); line-height: 1.75; flex: 1; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--orange);
  transition: gap var(--transition);
}
.blog-read-more:hover { gap: 10px; }

/* ── FEATURE LIST ───────────────────────────────────────── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.92rem; color: var(--text-md);
}
.feature-list li::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px;
  background: var(--orange-lt); border: 2px solid var(--orange); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23C95520' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}

/* ── TWO-COLUMN ─────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 40px; } .two-col.reverse { direction: ltr; } }

/* ── INFO BOX ───────────────────────────────────────────── */
.info-box { background: var(--charcoal-dk); color: var(--white); padding: 40px; border-radius: var(--radius-lg); }
.info-box h3 { color: var(--white); margin-bottom: 12px; }
.info-box p  { color: rgba(255,255,255,.7); font-size: 0.92rem; margin-bottom: 20px; }
.info-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.info-box ul li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.88rem; color: rgba(255,255,255,.7);
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.info-box ul li:last-child { border-bottom: none; padding-bottom: 0; }
.info-box ul li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.info-box ul li > span { display: block; }
.info-box ul li strong { color: var(--white); display: block; font-size: 0.9rem; margin-bottom: 3px; }

/* ── ALERT ──────────────────────────────────────────────── */
.alert-box {
  display: flex; gap: 16px; padding: 18px 22px;
  border-radius: var(--radius); border-left: 4px solid var(--orange);
  background: var(--orange-xlt); margin: 28px 0;
}
.alert-box-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.alert-box-content h4 { color: var(--charcoal-dk); font-size: 0.88rem; margin-bottom: 5px; }
.alert-box-content p  { font-size: 0.86rem; color: var(--text-md); margin: 0; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: #1A1A26; padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.07);
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px)  { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer-logo-wrap { display: flex; flex-direction: column; margin-bottom: 18px; }
.footer-logo-text { display: flex; align-items: baseline; gap: 0; }
.footer-logo-rfh  { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--orange); }
.footer-logo-inc  { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: #8C8C9C; }
.footer-logo-line { width: 100%; height: 1px; background: #5C5C6C; margin: 2px 0; }
.footer-logo-sub  { font-family: var(--serif); font-style: italic; font-size: 0.62rem; color: #5C5C6C; }

.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,.45); line-height: 1.75; margin-bottom: 24px; }
.footer-heading { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; }
.footer-links   { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.84rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-icon { color: var(--orange); font-size: 1rem; flex-shrink: 0; margin-top: 3px; }
.footer-contact-text { font-size: 0.84rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.footer-contact-text a { color: rgba(255,255,255,.5); }
.footer-contact-text a:hover { color: var(--orange); }

.footer-bottom {
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copyright   { font-size: 0.76rem; color: rgba(255,255,255,.28); }
.footer-legal-links { display: flex; gap: 18px; list-style: none; }
.footer-legal-links a { font-size: 0.76rem; color: rgba(255,255,255,.28); transition: color var(--transition); }
.footer-legal-links a:hover { color: rgba(255,255,255,.6); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up  { animation: fadeUp 0.55s ease both; }
.delay-1     { animation-delay: 0.1s; }
.delay-2     { animation-delay: 0.2s; }
.delay-3     { animation-delay: 0.3s; }
.delay-4     { animation-delay: 0.4s; }

/* ── UTILITIES ──────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* ═══════════════════════════════════════════════════════════
   CONTEMPORARY REFRESH 2026
   — Dark hero  · Scroll animations  · Chat widget
   — Bigger logo (overrides above)  · Office cards
═══════════════════════════════════════════════════════════ */

/* ── BIGGER FOOTER LOGO ─────────────────────────────────── */
.footer-logo-rfh { font-size: 2.4rem; font-weight: 900; letter-spacing: -0.03em; }
.footer-logo-inc { font-size: 2.4rem; font-weight: 900; letter-spacing: -0.03em; }

/* ── SCROLL REVEAL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.55s; }
.reveal-delay-6 { transition-delay: 0.7s; }

/* ── DARK HERO ───────────────────────────────────────────── */
.hero-dark {
  background: linear-gradient(160deg, #0D0D1A 0%, #18182A 45%, #1C1220 100%);
  min-height: 92vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
}
.hero-dark::before {
  content: ''; position: absolute; top: -15%; right: -8%;
  width: 65%; height: 110%;
  background: radial-gradient(ellipse at center, rgba(201,85,32,0.22) 0%, transparent 60%);
  pointer-events: none; animation: hero-glow 8s ease-in-out infinite alternate;
}
.hero-dark::after {
  content: ''; position: absolute; bottom: -10%; left: -5%;
  width: 45%; height: 70%;
  background: radial-gradient(ellipse at center, rgba(201,85,32,0.07) 0%, transparent 65%);
  pointer-events: none;
}
@keyframes hero-glow {
  from { transform: scale(1) translate(0,0); opacity: 1; }
  to   { transform: scale(1.15) translate(-3%,3%); opacity: 0.8; }
}

/* Gradient text headline */
.hero-gradient-text {
  background: linear-gradient(140deg, #ffffff 0%, #e8ddd4 45%, var(--orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-dark h1 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900; line-height: 1.06; margin-bottom: 28px;
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; width: 36px; height: 2px;
  background: var(--orange); display: inline-block; border-radius: 2px;
}
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,.58);
  max-width: 520px; line-height: 1.85; margin-bottom: 40px;
}
.hero-badge-row {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 38px;
}
.hero-badge {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.65); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; padding: 6px 14px; border-radius: 40px;
}
.hero-cta-group {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.hero-stats-strip {
  display: grid; grid-template-columns: repeat(3,1fr);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; overflow: hidden; margin-top: 72px;
}
.hero-stat-item {
  padding: 24px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.hero-stat-item:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
  color: var(--orange); display: block; line-height: 1; margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 0.68rem; font-weight: 500; color: rgba(255,255,255,.38);
  text-transform: uppercase; letter-spacing: 0.12em;
}

/* ── GRADIENT BUTTON ────────────────────────────────────── */
.btn-gradient {
  background: linear-gradient(135deg, #C95520 0%, #E8714A 100%);
  color: var(--white); border-color: transparent;
  box-shadow: 0 4px 22px rgba(201,85,32,.38);
}
.btn-gradient:hover {
  background: linear-gradient(135deg, #A84215 0%, #C95520 100%);
  transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,85,32,.48);
}

/* ── DARK SECTION ───────────────────────────────────────── */
.section-dark {
  background: #131320;
}
.section-dark .section-label { color: var(--orange); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-intro { color: rgba(255,255,255,.58); }

/* ── GLASS CARD (for dark backgrounds) ─────────────────── */
.card-glass {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: background .3s, border-color .3s, transform .3s;
}
.card-glass:hover {
  background: rgba(255,255,255,.07); border-color: rgba(201,85,32,.35);
  transform: translateY(-5px);
}
.card-glass h3 { color: var(--white); margin-bottom: 12px; }
.card-glass p  { color: rgba(255,255,255,.58); font-size: 0.9rem; line-height: 1.75; }
.card-glass .card-icon {
  background: rgba(201,85,32,.15); border: 1px solid rgba(201,85,32,.2); margin-bottom: 20px;
}
.card-glass .card-link { color: var(--orange); }

/* ── OFFICE CARDS ───────────────────────────────────────── */
.offices-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px;
}
@media (max-width: 680px) { .offices-grid { grid-template-columns: 1fr; } }
.office-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.office-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.office-card-header {
  background: var(--charcoal-dk); padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.office-card-city { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--white); }
.office-card-badge {
  background: var(--orange); color: white; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 12px; border-radius: 40px;
}
.office-card-body { padding: 28px; }
.office-detail-row {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px;
}
.office-detail-row:last-child { margin-bottom: 0; }
.office-detail-icon {
  width: 36px; height: 36px; background: var(--orange-lt); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.office-detail-label {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 2px;
}
.office-detail-value { font-size: 0.88rem; color: var(--text); font-weight: 500; line-height: 1.5; }

/* ── SECTION DIVIDER ────────────────────────────────────── */
.section-divider {
  height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── CHAT WIDGET ────────────────────────────────────────── */
#rfh-chat-toggle {
  position: fixed; bottom: 96px; right: 24px;
  width: 54px; height: 54px;
  background: var(--charcoal-dk); border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.28); z-index: 9000;
  transition: transform .22s, background .22s;
}
#rfh-chat-toggle:hover { transform: scale(1.09); background: #3a3a4a; }
#rfh-chat-toggle svg  { width: 22px; height: 22px; fill: white; }
.chat-unread-dot {
  position: absolute; top: 5px; right: 5px;
  width: 10px; height: 10px; background: var(--orange);
  border-radius: 50%; border: 2px solid white;
  animation: chat-pulse 2.2s ease-in-out infinite;
}
@keyframes chat-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(.8); opacity: .7; }
}
#rfh-chat-panel {
  position: fixed; bottom: 166px; right: 24px;
  width: 360px; max-height: 530px;
  background: var(--white); border-radius: 18px;
  box-shadow: 0 10px 48px rgba(0,0,0,.18);
  display: flex; flex-direction: column; z-index: 9001; overflow: hidden;
  transform: scale(.88) translateY(24px); opacity: 0; pointer-events: none;
  transition: transform .28s cubic-bezier(.4,0,.2,1), opacity .28s ease;
  transform-origin: bottom right;
}
#rfh-chat-panel.rfh-chat-open {
  transform: scale(1) translateY(0); opacity: 1; pointer-events: all;
}
@media (max-width: 480px) {
  #rfh-chat-panel  { right: 10px; width: calc(100vw - 20px); bottom: 158px; }
  #rfh-chat-toggle { right: 10px; }
}
.chat-panel-header {
  background: var(--charcoal-dk); padding: 16px 18px;
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.chat-avatar {
  width: 40px; height: 40px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 13px; font-weight: 700; color: white; flex-shrink: 0;
}
.chat-header-info { flex: 1; }
.chat-header-info strong { display: block; color: white; font-size: 0.86rem; font-weight: 600; }
.chat-online-dot {
  display: inline-block; width: 7px; height: 7px;
  background: #4ADE80; border-radius: 50%; margin-right: 5px;
}
.chat-header-info span { font-size: 0.72rem; color: rgba(255,255,255,.5); }
#rfh-chat-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.45); font-size: 20px; line-height: 1;
  padding: 4px; transition: color .2s;
}
#rfh-chat-close:hover { color: white; }
.chat-messages {
  flex: 1; overflow-y: auto; padding: 16px; display: flex;
  flex-direction: column; gap: 12px; scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.chat-msg { display: flex; gap: 8px; align-items: flex-end; max-width: 88%; }
.chat-msg.bot  { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.chat-msg-av {
  width: 28px; height: 28px; background: var(--orange-lt); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0;
}
.chat-bubble {
  padding: 10px 14px; border-radius: 16px; font-size: 0.83rem; line-height: 1.6;
}
.chat-msg.bot  .chat-bubble { background: var(--off-white); color: var(--text); border-bottom-left-radius: 4px; }
.chat-msg.user .chat-bubble { background: var(--charcoal-dk); color: white; border-bottom-right-radius: 4px; }
.chat-bubble a { color: var(--orange); text-decoration: underline; }
.chat-bubble strong { color: inherit; }
.chat-typing-wrap { align-self: flex-start; display: flex; gap: 8px; align-items: flex-end; }
.chat-typing-bubble {
  background: var(--off-white); border-radius: 16px; border-bottom-left-radius: 4px;
  padding: 12px 16px; display: flex; gap: 4px; align-items: center;
}
.chat-typing-bubble span {
  width: 6px; height: 6px; background: var(--charcoal-lt); border-radius: 50%;
  animation: typing-dot 1.2s ease infinite;
}
.chat-typing-bubble span:nth-child(2) { animation-delay: .2s; }
.chat-typing-bubble span:nth-child(3) { animation-delay: .4s; }
@keyframes typing-dot {
  0%,60%,100% { transform: translateY(0); }
  30%          { transform: translateY(-5px); }
}
.chat-qr-wrap {
  padding: 4px 16px 12px; display: flex; flex-wrap: wrap; gap: 6px; flex-shrink: 0;
}
.chat-qr {
  background: none; border: 1px solid var(--border); border-radius: 40px;
  padding: 6px 13px; font-size: 0.74rem; font-weight: 500; color: var(--text-md);
  cursor: pointer; transition: all .18s; font-family: var(--sans);
}
.chat-qr:hover { background: var(--orange); color: white; border-color: var(--orange); }
.chat-input-row {
  padding: 10px 14px; border-top: 1px solid var(--border);
  display: flex; gap: 8px; align-items: center; flex-shrink: 0;
}
#rfh-chat-input {
  flex: 1; border: 1px solid var(--border); border-radius: 40px;
  padding: 9px 16px; font-size: 0.82rem; font-family: var(--sans);
  color: var(--text); outline: none; transition: border-color .2s;
}
#rfh-chat-input:focus { border-color: var(--charcoal-dk); }
#rfh-chat-send {
  width: 36px; height: 36px; background: var(--charcoal-dk); color: white;
  border: none; border-radius: 50%; cursor: pointer; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s;
}
#rfh-chat-send:hover { background: var(--orange); }
#rfh-chat-send svg { width: 15px; height: 15px; fill: white; }

/* ═══════════════════════════════════════════════════════════
   MOBILE & TABLET RESPONSIVE ENHANCEMENTS
   — Article pages · Blog featured · Pricing · Hero stats
   — Touch targets · Overflow prevention
═══════════════════════════════════════════════════════════ */

/* ── ARTICLE PAGE STYLES (from inline <style> — responsive overrides) ── */
@media (max-width: 640px) {
  .art-body { padding: 0 2px; }
  .art-intro { font-size: 0.98rem; padding-left: 14px; margin-bottom: 28px; }
  .art-h2 { font-size: 1.12rem; margin: 28px 0 10px; }
  .art-takeaways { padding: 20px 18px; border-radius: 10px; margin: 32px 0 28px; }
  .art-cta { padding: 24px 20px; border-radius: 10px; margin-top: 28px; }
  .art-cta h3 { font-size: 1.05rem; }
  .art-note { padding: 14px 16px; }
}

/* ── BLOG FEATURED ARTICLE ────────────────────────────── */
.blog-featured {
  display: grid; min-height: 360px;
}
@media (max-width: 768px) {
  .blog-featured {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .blog-featured > div:first-child {
    min-height: 160px;
  }
  .blog-featured > div:last-child {
    padding: 28px 24px !important;
  }
  .blog-featured h2 {
    font-size: 1.25rem !important;
  }
}
@media (max-width: 480px) {
  .blog-featured > div:first-child {
    min-height: 120px;
  }
  .blog-featured > div:last-child {
    padding: 22px 18px !important;
  }
  .blog-featured h2 {
    font-size: 1.1rem !important;
  }
}

/* ── PRICING CARDS ────────────────────────────────────── */
.pricing-grid {
  display: grid; gap: 2rem;
}
@media (max-width: 480px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (min-width: 481px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* ── HERO STATS – stack on very small screens ────────── */
@media (max-width: 540px) {
  .hero-stats-strip {
    grid-template-columns: 1fr;
  }
  .hero-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 16px 20px;
  }
  .hero-stat-item:last-child { border-bottom: none; }
}

/* ── PAGE HERO – tighter on mobile ────────────────────── */
@media (max-width: 640px) {
  .page-hero { padding: 110px 0 48px !important; }
  .page-hero h1 { font-size: 1.55rem; }
  .page-hero p { font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .page-hero { padding: 100px 0 36px !important; }
  .page-hero h1 { font-size: 1.35rem; }
}

/* ── FILTER BUTTONS – horizontal scroll on mobile ────── */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 48px; padding-top: 40px;
}
@media (max-width: 640px) {
  .filter-bar {
    flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding-bottom: 8px; margin-bottom: 32px;
    scrollbar-width: none;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-bar .filter-btn {
    flex-shrink: 0;
    font-size: 0.72rem;
    padding: 7px 16px;
  }
}

/* ── GLOBAL OVERFLOW PREVENTION ───────────────────────── */
html, body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* ── TOUCH TARGET MINIMUM (44px) ──────────────────────── */
@media (max-width: 768px) {
  .btn, .btn-primary, .btn-outline, .btn-gradient,
  .filter-btn, .faq-question, .chat-qr {
    min-height: 44px;
    min-width: 44px;
  }
}

/* ── RESPONSIVE GRID UTILITIES ─────────────────────────── */
.rg-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
.rg-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.rg-4 { display: grid; grid-template-columns: repeat(4, 1fr); }
.rg-sidebar { display: grid; }

@media (max-width: 768px) {
  .rg-2 { grid-template-columns: 1fr !important; }
  .rg-3 { grid-template-columns: repeat(2, 1fr) !important; }
  .rg-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .rg-sidebar { grid-template-columns: 1fr !important; }
}
@media (max-width: 540px) {
  .rg-3 { grid-template-columns: 1fr !important; }
  .rg-4 { grid-template-columns: 1fr !important; }
}

/* ── CONTACT PAGE FORM – full width on mobile ─────────── */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* ── INFO BOX / CTA BOX – tighter padding on mobile ──── */
@media (max-width: 640px) {
  .info-box { padding: 24px 20px; }
  .alert-box { padding: 14px 16px; }
}

/* ── OFFICE CARDS – readable on small screens ─────────── */
@media (max-width: 480px) {
  .office-card-body { padding: 20px; }
  .office-card-header { padding: 16px 20px; }
  .office-card-city { font-size: 1.05rem; }
}

/* ── FOOTER – tighter on mobile ───────────────────────── */
@media (max-width: 480px) {
  .footer { padding-top: 48px; }
  .footer-grid { gap: 24px; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE & TABLET RESPONSIVENESS FIXES
   ══════════════════════════════════════════════════════════ */

/* ── NAV DROPDOWN – prevent 700px overflow on tablet ──── */
@media (max-width: 900px) {
  .nav-dropdown-menu {
    min-width: auto !important;
    width: calc(100vw - 40px);
    max-width: 700px;
    grid-template-columns: repeat(2, 1fr) !important;
    left: 50% !important;
  }
}

/* ── DECORATIVE PSEUDO-ELEMENTS – scale down on mobile ── */
@media (max-width: 768px) {
  .page-hero::before { width: 300px; height: 300px; right: -60px; top: -60px; }
  .page-hero::after  { width: 200px; height: 200px; left: -40px; bottom: -40px; }
  .cta-banner::before { width: 400px; height: 400px; }
  .cta-banner { padding: 64px 0; }
}
@media (max-width: 480px) {
  .page-hero::before { width: 200px; height: 200px; }
  .page-hero::after  { width: 150px; height: 150px; }
  .cta-banner::before { width: 250px; height: 250px; }
  .cta-banner { padding: 48px 0; }
}

/* ── TABLES – horizontal scroll on small screens ─────── */
@media (max-width: 768px) {
  .popia-table,
  table[style*="border-collapse"] {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.82rem;
  }
}

/* ── CONTACT GRID – better spacing on tablet ─────────── */
@media (max-width: 900px) {
  .contact-grid {
    padding: 2rem 1.5rem !important;
  }
}
@media (max-width: 480px) {
  .contact-grid {
    padding: 1.5rem 1rem !important;
  }
}

/* ── PRICING CARDS – stack on mobile ─────────────────── */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

/* ── INLINE SECTIONS – prevent overflow ──────────────── */
@media (max-width: 768px) {
  section[style*="max-width"] {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

/* ── FORM CARD – full width on mobile ────────────────── */
@media (max-width: 640px) {
  .form-card {
    padding: 1.25rem !important;
  }
}

/* ── CTA BUTTONS GROUP – stack vertically on mobile ──── */
@media (max-width: 480px) {
  .cta-banner .btn-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cta-banner .btn-group .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ── BLOG CARDS – tighter on mobile ──────────────────── */
@media (max-width: 480px) {
  .blog-card { border-radius: 8px; }
  .blog-card-body { padding: 16px; }
  .blog-card-title { font-size: 1rem; }
}

/* ── FAQs – tighter padding on mobile ────────────────── */
@media (max-width: 640px) {
  .faq-question { padding: 16px; font-size: 0.92rem; }
  .faq-answer { padding: 0 16px 16px; font-size: 0.88rem; }
}

/* ── SERVICE PAGES – inline grids stack on mobile ────── */
@media (max-width: 768px) {
  .two-col,
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── FLOATING CONTACT BAR – adjust for mobile ────────── */
@media (max-width: 480px) {
  #rfh-float-bar {
    bottom: 12px !important;
    right: 10px !important;
    gap: 8px !important;
  }
  #rfh-float-bar .rfh-fab {
    padding: 10px !important;
    border-radius: 50% !important;
  }
  #rfh-float-bar .rfh-fab span {
    display: none !important;
  }
  #rfh-float-bar .rfh-fab svg {
    width: 16px !important;
    height: 16px !important;
  }
}
/* On very small screens, keep only WhatsApp + Chat */
@media (max-width: 375px) {
  #rfh-float-bar .rfh-fab-email,
  #rfh-float-bar .rfh-fab-call {
    display: none !important;
  }
}
