/* ============================================================
   OMNISAGE CONSULTANCY GROUP — Main Stylesheet
   Primary Green  : #48513f
   Primary Gold   : #edba2a
   Light Gold     : #f0dd97
   Heading Font   : Philosopher (Google Fonts)
   Body Font      : Mulish (Google Fonts)
   ============================================================ */

:root {
  --primary: #48513f;
  --primary-dark: #363c2e;
  --primary-light: #5a6650;
  --secondary-gold: #edba2a;
  --secondary-dark: #c99c1a;
  --gold-light: #f0dd97;
  --gold-pale: #fdf8e8;
  --text-dark: #1a1f15;
  --text-body: #3d4535;
  --text-muted: #6e7a62;
  --bg-light: #f7f6f1;
  --bg-lighter: #fdfcf8;
  --border-light: #e3e6dc;
  --white: #ffffff;
  --font-heading: 'Philosopher', Georgia, serif;
  --font-body: 'Mulish', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(72,81,63,0.09);
  --shadow-lg: 0 12px 48px rgba(72,81,63,0.17);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

/* html: only scroll-behavior. No overflow-x here — it breaks sticky. */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  font-size: 0.95rem;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary-gold); }
img { max-width: 100%; display: block; }

.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.fw-600 { font-weight: 600; }

/* ============================================================
   HORIZONTAL SCROLL PREVENTION
   Rule 1: only body clips overflow (html must stay unclipped
   so position:sticky has a real scroll container to latch on).
   Rule 2: Bootstrap .row negative margins are zeroed out.
   Rule 3: full-bleed BG sections clip their own inner overflow.
   The navbar is NEVER given overflow:clip/hidden.
   ============================================================ */

/* Zero out Bootstrap row negative gutters — the #1 cause of
   the thin horizontal scrollbar on most pages */
.row {
  --bs-gutter-x: 1.5rem;
  margin-left: 0;
  margin-right: 0;
}

/* .container keeps Bootstrap's responsive max-widths intact.
   We only adjust padding. Never override max-width here —
   that defeats Bootstrap's breakpoint widths and makes
   all content stretch edge-to-edge like a full-bleed section. */
.container {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
@media (max-width: 576px) {
  .container { padding-left: 1rem !important; padding-right: 1rem !important; }
}

/* Full-bleed background sections: clip their own overflow so
   decorative abs-positioned children (overlays, patterns, circles)
   cannot bleed outside. The navbar is deliberately excluded. */
.hero-section,
.hero-banner,
.hero-trust-strip,
.stats-section,
.why-choose-section,
.reviews-section,
.cta-section,
.contact-promise-strip,
.contact-main-section,
.footer-info-bar,
.site-footer,
.footer-bottom,
.footer-main,
.page-header,
.sd-hero,
.sd-quote,
.sd-stats,
.sd-cta,
.bg-light-custom,
.bg-primary-dark,
.bg-secondary-light {
  width: 100%;
  overflow-x: clip;
}

/* ============================================================
   NAVBAR — sticky, never gets overflow
   ============================================================ */
.main-navbar {
  background: var(--white) !important;
  padding: 0.7rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: var(--transition);
  width: 100%;
  /* NO overflow property — it would break position:sticky */
}
.main-navbar.scrolled {
  padding: 0.45rem 0;
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.navbar-logo-img { height: 52px; width: auto; object-fit: contain; max-width: 200px; }
.brand-logo-text { display: flex; flex-direction: column; line-height: 1; }
.brand-omni { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; color: var(--primary) !important; letter-spacing: 1px; }
.brand-sage { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; color: var(--secondary-gold) !important; letter-spacing: 1px; }
.brand-subtitle { font-family: var(--font-body); font-size: 0.43rem; letter-spacing: 3px; color: rgba(72,81,63,0.45) !important; margin-top: 3px; text-transform: uppercase; }

.nav-link {
  color: var(--text-dark) !important;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 0.5rem 0.7rem !important;
  border-radius: 6px;
  transition: var(--transition);
  text-transform: uppercase;
}
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }

.dropdown-menu {
  border: none; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 0.5rem;
  min-width: 280px; margin-top: 8px; background: var(--white);
}
.dropdown-item {
  border-radius: 6px; padding: 0.5rem 0.9rem;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  color: var(--text-dark); transition: var(--transition);
}
.dropdown-item:hover { background: var(--bg-light); color: var(--primary); }
.dropdown-divider { border-color: var(--border-light); margin: 0.25rem 0.5rem; }
.text-secondary-gold { color: var(--secondary-gold); }

.btn-icon-nav {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-light); border: 1px solid var(--border-light);
  color: var(--text-body); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: var(--transition); padding: 0; flex-shrink: 0;
}
.btn-icon-nav:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

.btn-cta {
  background: var(--secondary-gold); color: var(--primary-dark) !important;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 0.55rem 1.4rem; border-radius: 50px;
  border: 2px solid var(--secondary-gold); transition: var(--transition);
  white-space: nowrap; flex-shrink: 0;
}
.btn-cta:hover { background: transparent; color: var(--secondary-gold) !important; }
.btn-cta-outline { background: transparent; color: var(--secondary-gold) !important; }

.navbar-actions { gap: 0.6rem; flex-wrap: wrap; }
.navbar-toggler { border-color: var(--border-light); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(72,81,63,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-top: 0.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 100%;
    /* overflow-x:hidden is safe here because the collapsed menu
       is NOT a scroll container for the page — sticky is already
       applied to .main-navbar above it */
    overflow-x: hidden;
  }
  .nav-link { color: var(--text-dark) !important; }
  .navbar-actions { padding: 0.75rem 0.5rem; border-top: 1px solid var(--border-light); margin-top: 0.5rem; }
}

/* ============================================================
   SEARCH MODAL
   ============================================================ */
.search-modal-dialog { max-width: 680px; margin: 3rem auto; }
.search-modal-content { background: transparent; border: none; box-shadow: none; }
.search-modal-inner {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem 2.5rem 2rem; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
}
.search-form { width: 100%; }
.search-input-wrap {
  display: flex; align-items: center;
  background: var(--bg-light); border: 2px solid var(--border-light);
  border-radius: 50px; padding: 0 1.2rem;
  transition: var(--transition); overflow: hidden;
}
.search-input-wrap:focus-within {
  border-color: var(--primary); background: var(--white);
  box-shadow: 0 0 0 3px rgba(72,81,63,0.10);
}
.search-icon { color: var(--text-muted); font-size: 1rem; flex-shrink: 0; margin-right: 0.8rem; }
.search-input {
  flex-grow: 1; border: none; background: transparent;
  font-family: var(--font-body); font-size: 1.05rem;
  color: var(--text-dark); padding: 0.9rem 0; outline: none; min-width: 0;
}
.search-input::placeholder { color: var(--text-muted); }
.search-btn {
  background: var(--primary); color: var(--white);
  border: none; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
  padding: 0.5rem 1.2rem; cursor: pointer; transition: var(--transition);
  white-space: nowrap; margin: 0.3rem 0; flex-shrink: 0;
}
.search-btn:hover { background: var(--secondary-gold); color: var(--primary-dark); }
.search-quick-links { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.search-quick-label { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.search-quick-links a {
  display: inline-block; padding: 0.25rem 0.8rem; border-radius: 50px;
  background: var(--bg-light); border: 1px solid var(--border-light);
  font-size: 0.78rem; font-weight: 600; color: var(--text-body); transition: var(--transition);
}
.search-quick-links a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-search-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 1.1rem;
  transition: var(--transition); padding: 0.2rem 0.4rem;
}
.btn-search-close:hover { color: var(--primary); }

@media (max-width: 991px) { .search-modal-inner { padding: 1.8rem; } }
@media (max-width: 767px) { .search-modal-dialog { margin: 1rem; } .search-modal-inner { padding: 1.4rem; } }

/* ============================================================
   LIVE SEARCH RESULTS
   ============================================================ */
.search-spinner { color: var(--text-muted); font-size: 1rem; margin-left: 0.5rem; }
.search-results-box {
  margin-top: 0.75rem; border: 1.5px solid var(--border-light);
  border-radius: var(--radius); overflow: hidden;
  background: var(--white); max-height: 360px; overflow-y: auto;
}
.sr-list { display: flex; flex-direction: column; }
.sr-item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.75rem 1.1rem; text-decoration: none;
  border-bottom: 1px solid var(--border-light); transition: background 0.18s; min-width: 0;
}
.sr-item:last-child { border-bottom: none; }
.sr-item:hover { background: var(--bg-light); }
.sr-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--primary); color: var(--secondary-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex-shrink: 0;
}
.sr-content { flex: 1; min-width: 0; }
.sr-badge {
  display: inline-block; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase; color: var(--secondary-gold);
  background: rgba(237,186,42,0.10); border-radius: 4px; padding: 1px 6px; margin-bottom: 2px;
}
.sr-title { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-sub { display: block; font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-arrow { color: var(--text-muted); font-size: 0.75rem; flex-shrink: 0; }
.sr-item:hover .sr-arrow { color: var(--primary); }
.sr-empty { padding: 1.5rem; text-align: center; color: var(--text-muted); font-size: 0.88rem; }

/* ============================================================
   GLOBAL BUTTONS
   ============================================================ */
.btn-primary-custom {
  background: var(--primary); color: var(--white);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  padding: 0.7rem 1.8rem; border-radius: 50px;
  border: 2px solid var(--primary); transition: var(--transition);
  display: inline-flex; align-items: center;
}
.btn-primary-custom:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(72,81,63,0.32); }

.btn-outline-primary-custom {
  background: transparent; color: var(--primary);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  padding: 0.7rem 1.8rem; border-radius: 50px;
  border: 2px solid var(--primary); transition: var(--transition);
  display: inline-flex; align-items: center;
}
.btn-outline-primary-custom:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.btn-secondary-custom {
  background: var(--secondary-gold); color: var(--primary-dark);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  padding: 0.7rem 1.8rem; border-radius: 50px;
  border: 2px solid var(--secondary-gold); transition: var(--transition);
  display: inline-flex; align-items: center;
}
.btn-secondary-custom:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(237,186,42,0.38); }

/* ============================================================
   SECTION TYPOGRAPHY
   ============================================================ */
.section-eyebrow {
  display: inline-block; font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--secondary-gold); background: rgba(237,186,42,0.09);
  padding: 0.3rem 1rem; border-radius: 50px;
  border: 1px solid rgba(237,186,42,0.28); margin-bottom: 1rem;
}
.section-eyebrow-light {
  display: inline-block; font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 0.75rem;
}
.section-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.2vw, 2.7rem); font-weight: 700; color: var(--text-dark); margin-bottom: 1rem; line-height: 1.2; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.section-text { color: var(--text-body); line-height: 1.85; }
.highlight { color: var(--primary); }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  background: var(--primary); position: relative;
  padding: 4.5rem 0 3rem; overflow: hidden; width: 100%;
}
.page-header::before {
  content: ''; position: absolute; inset: 0; width: 100%; height: 100%;
  background: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?w=1600&q=60') center/cover no-repeat;
  opacity: 0.06;
}
.page-header-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); opacity: 0.93; }
.page-header-title { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.4rem); color: var(--white); font-weight: 700; margin-bottom: 0.5rem; }
.page-header-sub { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 600px; }
.page-header-icon { width: 50px; height: 50px; background: rgba(237,186,42,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--secondary-gold); }
.breadcrumb-light .breadcrumb-item a { color: rgba(255,255,255,0.55); }
.breadcrumb-light .breadcrumb-item a:hover { color: var(--secondary-gold); }
.breadcrumb-light .breadcrumb-item.active { color: rgba(255,255,255,0.38); }
.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.25); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden; width: 100%;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(130deg, rgba(22,28,18,0.93) 0%, rgba(72,81,63,0.80) 60%, rgba(72,81,63,0.40) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-light); background: rgba(237,186,42,0.09);
  border: 1px solid rgba(237,186,42,0.24);
  padding: 0.4rem 1.1rem; border-radius: 50px; margin-bottom: 1.4rem;
}
.hero-title { font-family: var(--font-heading); font-size: clamp(2.6rem, 6.5vw, 4.8rem); font-weight: 700; color: var(--white); line-height: 1.08; margin-bottom: 1.2rem; }
.hero-highlight { color: var(--secondary-gold); }
.hero-subtitle { color: rgba(255,255,255,0.72); font-size: clamp(0.92rem, 1.4vw, 1.05rem); max-width: 560px; line-height: 1.8; }

.btn-hero-primary {
  background: var(--secondary-gold); color: var(--primary-dark);
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 800;
  padding: 0.9rem 2.2rem; border-radius: 50px; border: none; transition: var(--transition);
}
.btn-hero-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(237,186,42,0.38); color: var(--primary-dark); }

.btn-hero-secondary {
  background: rgba(255,255,255,0.07); color: var(--white);
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  padding: 0.9rem 2.2rem; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.28); transition: var(--transition);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.6); transform: translateY(-3px); }

.trust-badge { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.65); font-size: 0.78rem; font-weight: 600; }
.trust-badge i { color: var(--secondary-gold); font-size: 0.9rem; }

.hero-card-stack { position: relative; width: 280px; height: 360px; overflow: hidden; }
.hero-float-card {
  position: absolute; background: rgba(255,255,255,0.93); backdrop-filter: blur(12px);
  border-radius: 14px; padding: 1rem 1.3rem;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg); width: 200px;
}
.hero-float-card i { font-size: 1.4rem; flex-shrink: 0; }
.hero-float-card strong { display: block; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--primary-dark); line-height: 1; }
.hero-float-card span { font-size: 0.72rem; color: var(--text-muted); }
.hero-float-card   { top: 40px;  right: 0; }
.hero-float-card-2 { top: 160px; right: 40px; }
.hero-float-card-3 { top: 280px; right: 10px; }

.hero-scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; }
.hero-scroll-indicator span { color: rgba(255,255,255,0.35); font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(237,186,42,0.5), transparent); animation: scrollPulse 1.5s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ============================================================
   HERO BANNER CAROUSEL
   ============================================================ */
.hero-banner { position: relative; width: 100%; display: block; overflow: hidden; }
.hero-banner .carousel,
.hero-banner .carousel-inner { width: 100%; overflow: hidden; }

.hero-banner-slide {
  position: relative; width: 100%;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(22,28,18,0.82) 0%, rgba(54,60,46,0.68) 50%, rgba(72,81,63,0.30) 100%);
}
.hero-banner-content { position: relative; z-index: 2; }

.hero-banner-tag {
  display: inline-flex; align-items: center;
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid rgba(240,221,151,0.30);
  padding: 0.35rem 1rem; border-radius: 50px; margin-bottom: 1.4rem;
}
.hero-banner-title { font-family: var(--font-heading); font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 1.2rem; }
.hero-banner-em { font-style: italic; color: var(--secondary-gold); font-weight: 400; }
.hero-banner-sub {
  font-family: var(--font-body); font-size: 1rem;
  color: rgba(255,255,255,0.72); max-width: 520px;
  line-height: 1.78; margin-bottom: 2rem;
  text-align: center; margin-left: auto; margin-right: auto;
}
.hero-banner-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.btn-hb-primary {
  display: inline-block; background: var(--secondary-gold); color: var(--primary-dark);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 800;
  padding: 0.82rem 2rem; border-radius: 4px; text-decoration: none;
  letter-spacing: 0.3px; transition: var(--transition); border: 2px solid var(--secondary-gold);
}
.btn-hb-primary:hover { background: transparent; color: var(--secondary-gold); }

.btn-hb-secondary {
  display: inline-block; background: transparent; color: var(--white);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  padding: 0.82rem 2rem; border-radius: 4px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.40); transition: var(--transition);
}
.btn-hb-secondary:hover { border-color: var(--secondary-gold); color: var(--secondary-gold); }

.hb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.10); border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.95rem; z-index: 10; transition: var(--transition); opacity: 1;
}
.hb-arrow:hover { background: var(--secondary-gold); border-color: var(--secondary-gold); color: var(--primary-dark); }
.hb-arrow-prev { left: 24px; }
.hb-arrow-next { right: 24px; }
.hb-arrow .carousel-control-prev-icon,
.hb-arrow .carousel-control-next-icon { display: none; }

.hb-dots {
  position: absolute; bottom: 88px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hb-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none; padding: 0; cursor: pointer; transition: var(--transition);
}
.hb-dots button.active { background: var(--secondary-gold); width: 28px; border-radius: 4px; }

/* ============================================================
   HERO TRUST STRIP
   ============================================================ */
.hero-trust-strip {
  background: var(--primary-dark);
  border-top: 2px solid rgba(237,186,42,0.2);
  padding: 0.9rem 0; width: 100%;
}
.trust-strip-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  padding: 0.25rem 0; flex-wrap: wrap;
}
.trust-strip-item i { color: var(--secondary-gold); font-size: 1rem; width: 18px; text-align: center; flex-shrink: 0; }
.trust-strip-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section { background: var(--primary); width: 100%; }
.stat-item { text-align: center; padding: 2rem 1rem; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 1.4rem; color: var(--secondary-gold); margin-bottom: 0.5rem; }
.stat-value { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 700; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1.5px; font-family: var(--font-body); margin-top: 0.4rem; }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-img-wrap { position: relative; }
.about-img-badge {
  position: absolute; bottom: -8px; right: 0;
  background: var(--secondary-gold); color: var(--primary-dark);
  padding: 0.8rem 1.2rem; border-radius: var(--radius);
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; box-shadow: var(--shadow);
}
.about-feature { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.7rem; font-size: 0.88rem; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card-link { display: block; text-decoration: none; height: 100%; }
.service-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 2rem; height: 100%;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary-gold));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(72,81,63,0.22); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 54px; height: 54px; background: rgba(72,81,63,0.07); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--primary); margin-bottom: 1.2rem; transition: var(--transition); flex-shrink: 0;
}
.service-card:hover .service-card-icon { background: var(--primary); color: var(--secondary-gold); }
.service-card-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.service-card-tagline { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; flex-grow: 1; }
.service-card-cta { font-size: 0.78rem; font-weight: 700; color: var(--primary); letter-spacing: 0.5px; transition: var(--transition); }
.service-card:hover .service-card-cta { color: var(--secondary-gold); }
.service-card-lg { display: flex; flex-direction: column; }
.service-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.service-card-num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: rgba(72,81,63,0.08); line-height: 1; }

/* ============================================================
   BACKGROUNDS
   ============================================================ */
.bg-light-custom { background: var(--bg-light); }
.bg-primary-dark { background: var(--primary-dark); }
.bg-secondary-light { background: var(--gold-pale); }
.text-white-70 { color: rgba(255,255,255,0.7); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-step { text-align: center; padding: 2rem 1.5rem; position: relative; }
.how-step-number {
  width: 48px; height: 48px; background: var(--secondary-gold); color: var(--primary-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin: 0 auto 1rem; flex-shrink: 0;
}
.how-step-icon { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
.how-step-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-dark); }
.how-step-desc { font-size: 0.83rem; color: var(--text-muted); }
.how-connector { position: absolute; top: 24px; right: -24px; width: 48px; height: 2px; background: linear-gradient(90deg, var(--secondary-gold), transparent); }
.how-step:last-child .how-connector { display: none; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose-section {
  background: var(--primary); padding: 5rem 0;
  position: relative; background-size: cover; background-position: center; width: 100%;
}
.why-choose-overlay { position: absolute; inset: 0; background: rgba(22,28,18,0.80); pointer-events: none; }
.why-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius); padding: 1.5rem; transition: var(--transition); }
.why-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-4px); }
.why-card-icon { font-size: 1.4rem; color: var(--secondary-gold); margin-bottom: 0.75rem; }
.why-card-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.why-card-desc { font-size: 0.81rem; color: rgba(255,255,255,0.58); margin: 0; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--bg-lighter); width: 100%; }
.review-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 2rem; height: 100%;
  transition: var(--transition); display: flex; flex-direction: column;
}
.review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.review-stars { color: var(--secondary-gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-stars .far { color: #ddd; }
.review-quote-icon { font-size: 1.5rem; color: rgba(72,81,63,0.09); margin-bottom: 0.75rem; }
.review-text { font-size: 0.88rem; color: var(--text-body); line-height: 1.75; flex-grow: 1; font-style: italic; margin-bottom: 1.5rem; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; min-width: 0; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-light); flex-shrink: 0; }
.review-avatar-placeholder { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; flex-shrink: 0; }
.review-name { display: block; font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.review-role { display: block; font-size: 0.75rem; color: var(--text-muted); }
.btn-carousel { width: 42px; height: 42px; border-radius: 50%; background: var(--primary); color: var(--white); border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: var(--transition); padding: 0; flex-shrink: 0; }
.btn-carousel:hover { background: var(--secondary-gold); border-color: var(--secondary-gold); color: var(--primary-dark); }
.carousel-indicators-custom { display: flex; gap: 6px; align-items: center; }
.carousel-indicators-custom button { width: 8px; height: 8px; border-radius: 50%; background: var(--border-light); border: none; padding: 0; transition: var(--transition); cursor: pointer; }
.carousel-indicators-custom button.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* Single review card */
.review-card-single { padding: 2.5rem 3rem; text-align: center; }
.review-card-single .review-stars { justify-content: center; display: flex; gap: 4px; }
.review-card-single .review-quote-icon { font-size: 2.5rem; color: rgba(72,81,63,0.08); }
.review-text-lg { font-size: 1rem; line-height: 1.85; }
.review-card-single .review-author { justify-content: center; }

/* ============================================================
   MOBILE REVIEWS — 1 card per slide
   On mobile the carousel shows multiple cards side-by-side via
   Bootstrap columns (col-md-6 col-lg-4). Override to full-width
   so each slide shows exactly one card.
   ============================================================ */
@media (max-width: 767px) {
  /* Make every review column inside a carousel slide take full width */
  .reviews-section .carousel-item .col-md-6,
  .reviews-section .carousel-item .col-lg-4,
  .reviews-section .carousel-item [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  /* Remove horizontal gap so single card fills the slide */
  .reviews-section .carousel-item .row {
    --bs-gutter-x: 0;
  }
  /* Reduce single-card padding on mobile */
  .review-card-single { padding: 1.5rem 1.2rem; }
  /* Ensure the carousel itself doesn't show a sliver of the next card */
  .reviews-section .carousel { overflow: hidden; }
}

/* ============================================================
   INSIGHTS
   ============================================================ */
.insight-card-link { display: block; text-decoration: none; height: 100%; }
.insight-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; height: 100%; transition: var(--transition); display: flex; flex-direction: column; }
.insight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.insight-img-wrap { position: relative; height: 200px; overflow: hidden; flex-shrink: 0; }
.insight-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.insight-card:hover .insight-img { transform: scale(1.05); }
.insight-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
.insight-badge { position: absolute; top: 12px; right: 12px; background: var(--secondary-gold); color: var(--primary-dark); font-size: 0.65rem; font-weight: 800; font-family: var(--font-body); letter-spacing: 1px; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 50px; }
.insight-body { padding: 1.4rem; flex-grow: 1; display: flex; flex-direction: column; min-width: 0; }
.insight-topic { font-size: 0.68rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 0.5rem; }
.insight-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.75rem; line-height: 1.35; }
.insight-excerpt { font-size: 0.81rem; color: var(--text-muted); line-height: 1.65; flex-grow: 1; margin-bottom: 1rem; }
.insight-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; color: var(--text-muted); flex-wrap: wrap; gap: 0.25rem; }
.insight-read-more { color: var(--primary); font-weight: 700; }
.insight-badge-lg { background: var(--secondary-gold); color: var(--primary-dark); font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 50px; }
.insight-topic-lg { background: rgba(72,81,63,0.14); color: rgba(255,255,255,0.9); font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 50px; }
.insight-lead { font-size: 1.05rem; color: var(--text-body); line-height: 1.8; border-left: 3px solid var(--secondary-gold); padding-left: 1.2rem; }
.insight-detail-meta { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.related-insight-list { list-style: none; padding: 0; margin: 0; }
.related-insight-list li { margin-bottom: 0; }
.related-insight-list a { display: flex; flex-direction: column; padding: 0.9rem 0; border-bottom: 1px solid var(--border-light); text-decoration: none; }
.related-insight-list a:hover .related-insight-title { color: var(--primary); }
.related-insight-topic { font-size: 0.62rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--secondary-gold); margin-bottom: 0.25rem; }
.related-insight-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-dark); line-height: 1.35; margin-bottom: 0.25rem; transition: var(--transition); }
.related-insight-time { font-size: 0.7rem; color: var(--text-muted); }

.filter-btn { display: inline-block; padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; background: var(--bg-light); color: var(--text-muted); border: 1px solid var(--border-light); transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.filter-btn-sm { font-size: 0.68rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-quote { border-left: 3px solid var(--secondary-gold); padding-left: 1.5rem; color: var(--text-body); font-style: italic; font-size: 0.95rem; }
.about-quote-footer { margin-top: 0.75rem; font-style: normal; font-size: 0.8rem; font-weight: 700; color: var(--primary); display: block; }
.vm-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; height: 100%; }
.vm-icon { width: 64px; height: 64px; background: rgba(237,186,42,0.14); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--secondary-gold); margin: 0 auto 1.2rem; flex-shrink: 0; }
.vm-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.vm-text { color: rgba(255,255,255,0.58); font-size: 0.88rem; line-height: 1.75; margin: 0; }
.principle-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 1.8rem; height: 100%; transition: var(--transition); }
.principle-card:hover { box-shadow: var(--shadow); border-color: rgba(72,81,63,0.22); }
.principle-num { display: block; font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: rgba(72,81,63,0.07); line-height: 1; margin-bottom: 0.4rem; }
.principle-card h5 { font-family: var(--font-heading); font-size: 1.25rem; color: var(--primary); }
.principle-card p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }
.engagement-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 2rem; text-align: center; height: 100%; transition: var(--transition); }
.engagement-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.engagement-card i { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; display: block; }
.engagement-card h5 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.engagement-card p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   TEAM
   ============================================================ */
.team-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-img-wrap { height: 220px; overflow: hidden; background: var(--bg-light); }
.team-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.team-card:hover .team-img { transform: scale(1.05); }
.team-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--primary); color: rgba(255,255,255,0.3); font-size: 3rem; }
.team-info { padding: 1.5rem; }
.team-name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.team-title { font-size: 0.72rem; color: var(--secondary-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 0.75rem; }
.team-bio { font-size: 0.79rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.75rem; }
.team-linkedin { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: var(--primary); color: var(--white); border-radius: 50%; font-size: 0.75rem; transition: var(--transition); }
.team-linkedin:hover { background: var(--secondary-gold); color: var(--primary-dark); }

/* ============================================================
   SERVICE DETAIL / SIDEBAR
   ============================================================ */
.service-detail-body { font-size: 0.95rem; line-height: 1.85; color: var(--text-body); }
.rich-content h2, .rich-content h3 { font-family: var(--font-heading); color: var(--text-dark); font-weight: 700; margin-top: 2rem; }
.rich-content p { margin-bottom: 1.1rem; }
.rich-content ul, .rich-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.rich-content li { margin-bottom: 0.4rem; }
.rich-content img { max-width: 100%; height: auto; display: block; }
.rich-content table { max-width: 100%; overflow-x: auto; display: block; }
.capabilities-box { background: var(--bg-light); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border-light); }
.capabilities-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1.2rem; }
.capabilities-list { list-style: none; padding: 0; margin: 0; }
.capabilities-list li { padding: 0.45rem 0; font-size: 0.875rem; color: var(--text-body); display: flex; align-items: flex-start; gap: 8px; border-bottom: 1px solid var(--border-light); }
.capabilities-list li:last-child { border-bottom: none; }
.sticky-sidebar { position: sticky; top: 100px; }
.service-sidebar { display: flex; flex-direction: column; gap: 1.2rem; }
.sidebar-cta-card { background: var(--primary); color: var(--white); border-radius: var(--radius-lg); padding: 1.8rem; }
.sidebar-cta-card h5 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.sidebar-cta-card p { color: rgba(255,255,255,0.70); font-size: 0.83rem; margin-bottom: 1rem; }
.btn-sidebar-email { background: rgba(255,255,255,0.12); color: var(--white) !important; font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; padding: 0.6rem 1.2rem; border-radius: 50px; border: 1px solid rgba(255,255,255,0.28); transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.btn-sidebar-email:hover { background: rgba(255,255,255,0.22); color: var(--white) !important; }
.sidebar-related { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 1.5rem; }
.sidebar-related-title { font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.related-service-list { list-style: none; padding: 0; margin: 0; }
.related-service-list li { margin-bottom: 0; }
.related-service-list a { display: flex; align-items: center; gap: 10px; padding: 0.6rem 0; border-bottom: 1px solid var(--border-light); text-decoration: none; color: var(--text-dark); font-size: 0.82rem; transition: var(--transition); min-width: 0; }
.related-service-list li:last-child a { border-bottom: none; }
.related-service-list a:hover { color: var(--primary); padding-left: 4px; }
.related-svc-icon { width: 28px; height: 28px; background: rgba(72,81,63,0.08); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--primary); flex-shrink: 0; }
.related-svc-text { flex-grow: 1; font-weight: 600; color: var(--text-dark); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.related-svc-arrow { font-size: 0.65rem; color: var(--text-muted); margin-left: auto; transition: var(--transition); flex-shrink: 0; }
.related-service-list a:hover .related-svc-arrow { color: var(--primary); transform: translateX(2px); }
.sidebar-contact-strip { background: var(--bg-light); border-radius: var(--radius); padding: 1rem 1.2rem; border: 1px solid var(--border-light); }
.contact-strip-item { display: flex; align-items: center; gap: 10px; padding: 0.4rem 0; font-size: 0.8rem; min-width: 0; }
.contact-strip-item i { color: var(--primary); width: 16px; text-align: center; flex-shrink: 0; }
.contact-strip-item a { color: var(--text-body); font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.contact-strip-item a:hover { color: var(--primary); }

/* ============================================================
   SECTORS
   ============================================================ */
.sector-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 2rem 1.2rem; transition: var(--transition); height: 100%; }
.sector-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(72,81,63,0.22); }
.sector-icon { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
.sector-card:hover .sector-icon { color: var(--secondary-gold); }
.sector-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.sector-desc { font-size: 0.79rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-title { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 700; color: var(--text-dark); }
.contact-info-items { display: flex; flex-direction: column; gap: 0; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid var(--border-light); min-width: 0; }
.contact-info-item:first-child { padding-top: 0; }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item strong { display: block; font-size: 0.78rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.contact-info-item p { margin: 0; font-size: 0.88rem; color: var(--text-body); word-break: break-word; }
.contact-info-item a { color: var(--text-body); word-break: break-all; }
.contact-info-item a:hover { color: var(--primary); }
.contact-icon-wrap { width: 40px; height: 40px; border-radius: 10px; background: var(--primary); color: var(--secondary-gold); display: flex; align-items: center; justify-content: center; font-size: 0.88rem; flex-shrink: 0; }
.contact-form-card { background: var(--white); border: 1.5px solid var(--border-light); border-radius: var(--radius-lg); padding: 2rem 2.5rem 2.5rem; box-shadow: var(--shadow); }
.contact-form-card-header { display: flex; align-items: center; gap: 1rem; padding-bottom: 1.25rem; border-bottom: 1.5px solid var(--border-light); flex-wrap: wrap; }
.cfh-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--primary); color: var(--secondary-gold); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.form-card-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin: 0; }
.form-card-sub { font-size: 0.82rem; color: var(--text-muted); margin: 2px 0 0; }
.form-label { font-size: 0.78rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.35rem; display: block; }
.form-control, .form-select {
  font-family: var(--font-body); font-size: 0.88rem; border: 1.5px solid var(--border-light);
  border-radius: 8px; padding: 0.6rem 0.9rem; color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s; width: 100%; max-width: 100%;
}
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(72,81,63,0.10); outline: none; }
.form-note { font-size: 0.78rem; color: var(--text-muted); }
.contact-feature i { font-size: 1.8rem; color: var(--primary); margin-bottom: 0.75rem; display: block; }
.contact-feature h6 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; }
.contact-feature p { font-size: 0.79rem; color: var(--text-muted); margin: 0; }

.contact-promise-strip { background: var(--primary); width: 100%; overflow-x: clip; }
.contact-promise-item { display: flex; align-items: center; gap: 14px; padding: 1.4rem 2rem; border-right: 1px solid rgba(255,255,255,0.12); transition: var(--transition); min-width: 0; }
.contact-promise-item:hover { background: rgba(255,255,255,0.05); }
.contact-promise-item i { font-size: 1.4rem; color: var(--secondary-gold); flex-shrink: 0; }
.contact-promise-item strong { display: block; font-family: var(--font-heading); font-size: 0.95rem; color: var(--white); margin-bottom: 0.1rem; }
.contact-promise-item span { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

.contact-main-section { background: var(--bg-lighter); width: 100%; }

.office-hours-card { border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border-light); }
.office-hours-header { background: var(--primary); color: var(--white); padding: 0.6rem 1rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.office-hours-body { padding: 0.75rem 1rem; background: var(--white); }
.oh-row { display: flex; justify-content: space-between; padding: 0.3rem 0; font-size: 0.84rem; border-bottom: 1px solid var(--border-light); gap: 0.5rem; }
.oh-row:last-of-type { border-bottom: none; }
.oh-day { color: var(--text-body); }
.oh-time { font-weight: 700; color: var(--primary); white-space: nowrap; }
.oh-closed { color: var(--text-muted); font-weight: 400; font-style: italic; }
.oh-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.5rem; }

.contact-social-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--primary); display: block; margin-bottom: 0.6rem; }
.contact-social-icons { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.contact-social-icons a { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: var(--transition); flex-shrink: 0; }
.contact-social-icons a:hover { background: var(--secondary-gold); color: var(--primary-dark); }

.engagement-opt-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 1.5rem 1.2rem; text-align: center; height: 100%; transition: var(--transition); }
.engagement-opt-card:hover { box-shadow: var(--shadow); border-color: rgba(72,81,63,0.2); transform: translateY(-3px); }
.eoc-icon { width: 48px; height: 48px; background: rgba(72,81,63,0.07); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; color: var(--primary); margin: 0 auto 0.9rem; transition: var(--transition); flex-shrink: 0; }
.engagement-opt-card:hover .eoc-icon { background: var(--primary); color: var(--secondary-gold); }
.engagement-opt-card h6 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.engagement-opt-card p { font-size: 0.78rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

.contact-map-section { position: relative; height: 420px; overflow: hidden; width: 100%; }
.map-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.contact-map-placeholder { position: relative; width: 100%; height: 420px; overflow: hidden; }
.contact-map-placeholder::after { content: ''; position: absolute; inset: 0; background: rgba(54,60,46,0.55); }
.map-overlay-card { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; background: var(--white); border-radius: var(--radius-lg); padding: 2rem 2.5rem; text-align: center; box-shadow: var(--shadow-lg); width: 90%; max-width: 340px; }
.map-pin-icon { width: 56px; height: 56px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--secondary-gold); margin: 0 auto 1rem; }
.map-overlay-card h4 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.map-overlay-card p { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 1.2rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { background: var(--white); border: 1px solid var(--border-light) !important; border-radius: var(--radius) !important; margin-bottom: 0.75rem; overflow: hidden; }
.faq-button { background: var(--white) !important; color: var(--text-dark) !important; font-family: var(--font-body); font-weight: 700; font-size: 0.88rem; display: flex; align-items: center; gap: 12px; padding: 1.1rem 1.4rem; box-shadow: none !important; border: none; width: 100%; text-align: left; }
.faq-button:not(.collapsed) { color: var(--primary) !important; background: var(--bg-light) !important; }
.faq-button::after { filter: none; flex-shrink: 0; }
.faq-q-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: rgba(72,81,63,0.08); border-radius: 6px; font-size: 0.72rem; color: var(--primary); flex-shrink: 0; font-weight: 800; }
.faq-button:not(.collapsed) .faq-q-num { background: var(--secondary-gold); color: var(--primary-dark); }
.faq-answer { padding: 1rem 1.4rem 1.4rem 3.2rem; color: var(--text-body); font-size: 0.88rem; line-height: 1.8; }

/* ============================================================
   STAR RATING
   ============================================================ */
.star-rating-input { display: flex; flex-direction: row-reverse; gap: 4px; flex-wrap: wrap; }
.star-label { cursor: pointer; font-size: 1.6rem; color: #ddd; transition: color 0.15s; }
.star-label input { display: none; }
.star-label:hover, .star-label:hover ~ .star-label { color: var(--secondary-gold); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--primary-dark); position: relative;
  padding: 5rem 0; overflow: hidden;
  background-size: cover; background-position: center; width: 100%;
}
.cta-overlay { position: absolute; inset: 0; background: rgba(22,28,18,0.78); }
.cta-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.cta-subtitle { color: rgba(255,255,255,0.58); font-size: 1rem; }
.btn-cta-main { background: var(--secondary-gold); color: var(--primary-dark); font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; padding: 0.9rem 2.2rem; border-radius: 50px; border: none; transition: var(--transition); display: inline-flex; align-items: center; }
.btn-cta-main:hover { background: var(--gold-light); transform: translateY(-3px); color: var(--primary-dark); }
.btn-cta-ghost { background: transparent; color: var(--white); font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; padding: 0.9rem 2.2rem; border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.28); transition: var(--transition); display: inline-flex; align-items: center; }
.btn-cta-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.mini-cta h3 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--text-dark); }

/* ============================================================
   FOOTER INFO BAR
   ============================================================ */
.footer-info-bar { background: var(--primary-light); padding: 1.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; }
.footer-info-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--secondary-gold); font-size: 1.1rem; flex-shrink: 0; }
.footer-info-label { font-size: 0.68rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.15rem; }
.footer-info-val { font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 500; word-break: break-word; }
.footer-info-val a { color: rgba(255,255,255,0.85); }
.footer-info-val a:hover { color: var(--secondary-gold); }

/* ============================================================
   FOOTER MAIN
   ============================================================ */
.site-footer { background: var(--primary-dark); width: 100%; }
.footer-main { padding: 4rem 0 2.5rem; }
.footer-logo-img { height: 48px; width: auto; object-fit: contain; max-width: 180px; }
.brand-omni-footer { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.brand-sage-footer { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--secondary-gold); letter-spacing: 1px; }
.footer-brand-sub { font-size: 0.42rem; letter-spacing: 3.5px; color: rgba(255,255,255,0.38); margin-top: 3px; text-transform: uppercase; }
.footer-about-text { color: rgba(255,255,255,0.48); font-size: 0.82rem; line-height: 1.75; }
.footer-heading { font-size: 0.68rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--secondary-gold); font-weight: 800; margin-bottom: 1.2rem; font-family: var(--font-body); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: rgba(255,255,255,0.48); font-size: 0.8rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--secondary-gold); padding-left: 4px; }
.footer-links a i { font-size: 0.55rem; flex-shrink: 0; }
.footer-cta-text { color: rgba(255,255,255,0.48); font-size: 0.8rem; line-height: 1.7; margin-bottom: 1rem; }
.btn-footer-cta { display: inline-flex; align-items: center; background: var(--secondary-gold); color: var(--primary-dark); font-family: var(--font-body); font-size: 0.78rem; font-weight: 800; padding: 0.6rem 1.4rem; border-radius: 50px; transition: var(--transition); }
.btn-footer-cta:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--primary-dark); }
.footer-social-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social-icons a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 0.75rem; transition: var(--transition); flex-shrink: 0; }
.footer-social-icons a:hover { background: var(--secondary-gold); border-color: var(--secondary-gold); color: var(--primary-dark); transform: translateY(-2px); }

.footer-bottom { background: #f7f6f1; border-top: 1px solid var(--border-light); padding: 1.2rem 0; width: 100%; }
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }
.developed-by { font-size: 0.75rem; }
.dusicode-link { color: var(--secondary-gold) !important; font-weight: 700; transition: var(--transition); }
.dusicode-link:hover { color: var(--gold-light) !important; }

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.sd-page-header { background-size: cover; background-position: center; background-repeat: no-repeat; }
.sd-has-bg .page-header-overlay { background: linear-gradient(135deg, rgba(54,60,46,0.88) 0%, rgba(72,81,63,0.72) 100%); }
.sd-section { position: relative; }
.bg-primary-section { background: var(--primary-dark); color: var(--white); width: 100%; }
.bg-primary-section .section-title, .bg-primary-section h2, .bg-primary-section h3 { color: var(--white); }
.bg-primary-section .section-eyebrow { color: var(--secondary-gold); }
.bg-primary-section .rich-content, .bg-primary-section p { color: rgba(255,255,255,0.85); }
.bg-gold-section { background: var(--gold-pale); width: 100%; }
.sd-img { width: 100%; object-fit: cover; max-height: 520px; display: block; }
.sd-img-wrap { position: relative; }
.sd-img-caption { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 0.6rem; font-style: italic; }

.sd-hero { min-height: 480px; display: flex; align-items: center; background-color: var(--primary-dark); background-size: cover; background-position: center; padding: 5rem 0; width: 100%; overflow: hidden; }
.sd-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(54,60,46,0.85) 0%, rgba(72,81,63,0.65) 100%); }
.sd-hero-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
.sd-hero-content { font-size: 1.05rem; margin-top: 1rem; }

.sd-full-image-wrap { margin: 0; padding: 0; width: 100%; overflow: hidden; }
.sd-full-image-img { width: 100%; max-height: 600px; object-fit: cover; display: block; }
.sd-full-image-caption { text-align: center; font-size: 0.82rem; color: var(--text-muted); font-style: italic; padding: 0.75rem 1rem; background: var(--bg-light); }

.sd-two-col-img-wrap { overflow: hidden; border-radius: var(--radius); }
.sd-two-col-img-wrap img { width: 100%; height: 340px; object-fit: cover; transition: transform 0.4s ease; display: block; }
.sd-two-col-img-wrap:hover img { transform: scale(1.03); }

.sd-quote { padding: 5rem 0; background: var(--bg-light); width: 100%; }
.sd-quote-wrap { text-align: center; padding: 2.5rem 2rem; }
.sd-quote-icon { font-size: 3rem; color: var(--secondary-gold); margin-bottom: 1.25rem; line-height: 1; }
.sd-quote-text { font-family: var(--font-heading); font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-style: italic; color: var(--primary); line-height: 1.5; margin: 0 0 1.5rem; }
.sd-quote-text p { margin: 0; }
.sd-quote-cite { font-size: 0.9rem; font-weight: 700; color: var(--text-muted); font-style: normal; letter-spacing: 0.5px; }

.sd-stats { padding: 4rem 0; background: var(--primary-dark); width: 100%; }
.sd-stats .stat-item { border-color: rgba(255,255,255,0.1); }
.sd-stats .stat-value { color: var(--secondary-gold); }
.sd-stats .stat-label { color: rgba(255,255,255,0.75); }

.sd-gallery-item { overflow: hidden; border-radius: var(--radius); }
.sd-gallery-img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s ease; display: block; }
.sd-gallery-item:hover .sd-gallery-img { transform: scale(1.05); }

.sd-cta { padding: 5rem 0; background-color: var(--primary-dark); background-size: cover; background-position: center; width: 100%; overflow: hidden; }
.sd-cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(54,60,46,0.88) 0%, rgba(72,81,63,0.72) 100%); }

.sd-video-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ============================================================
   ERROR PAGES
   ============================================================ */
.error-page { min-height: 60vh; display: flex; align-items: center; }
.error-code { font-family: var(--font-heading); font-size: clamp(6rem, 18vw, 11rem); font-weight: 700; color: rgba(72,81,63,0.07); line-height: 1; margin-bottom: 0.5rem; }
.error-title { font-family: var(--font-heading); font-size: 2rem; color: var(--text-dark); }
.error-sub { color: var(--text-muted); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top { position: fixed; bottom: 30px; right: 30px; z-index: 999; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; box-shadow: 0 4px 15px rgba(72,81,63,0.32); opacity: 0; visibility: hidden; transition: var(--transition); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--secondary-gold); color: var(--primary-dark); transform: translateY(-3px); }

/* ============================================================
   MEDIA QUERIES
   ============================================================ */
@media (max-width: 991px) {
  .hero-section { min-height: 90vh; }
  .py-6 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .sticky-sidebar { position: relative; top: 0; }
}

@media (max-width: 767px) {
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }
  .hero-title { font-size: 2.4rem; }
  .contact-form-card { padding: 1.5rem; }
  .footer-info-bar .row { text-align: center; }
  .footer-info-bar .col-md-4 { justify-content: center; }
  .contact-promise-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); padding: 1rem 1.2rem; }
  .contact-promise-item:last-child { border-bottom: none; }
  .hero-card-stack { display: none; }
  .review-card-single { padding: 1.5rem 1.2rem; }
}

@media (max-width: 480px) {
  .hero-banner-title { font-size: 1.9rem; }
  .hb-arrow { display: none; }
}