/* ============================================================
   OPTIMAL PHC — Main Stylesheet
   Brand: #d6b23a (gold) | #040404 (black) | #ffffff (white)
   Fonts: Archivo Black (headings) | Inter (body/nav/buttons)
   Background: White only throughout
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #d6b23a;
  --gold-dark:  #b8952a;
  --gold-light: #e8c84d;
  --gold-pale:  #fdf6e3;
  --gold-pale2: #f5e9c0;
  --black:      #040404;
  --black-2:    #0f0f0f;
  --black-3:    #1a1a1a;
  --white:      #ffffff;
  --off-white:  #fafaf8;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-300:   #d1d5db;
  --gray-400:   #9ca3af;
  --gray-500:   #6b7280;
  --gray-700:   #374151;
  --gray-900:   #111827;

  --font-heading: 'Archivo Black', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-width:  1600px;
  --radius:     6px;
  --radius-lg:  12px;
  --radius-xl:  20px;

  --shadow-xs:  0 1px 3px rgba(0,0,0,.06);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.1);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.13);
  --shadow-gold: 0 4px 20px rgba(214,178,58,.3);

  --transition:      all .3s cubic-bezier(.4,0,.2,1);
  --transition-fast: all .18s cubic-bezier(.4,0,.2,1);

  --topbar-h:    38px;
  --header-main-h: 72px;
  --header-h:    110px;
}

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
}

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

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.95rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.3rem; }
p  { font-size: 1.05rem; color: var(--gray-500); line-height: 1.8; margin: 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.text-gold   { color: var(--gold); }
.text-black  { color: var(--black); }
.text-center { text-align: center; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(214,178,58,.4);
}
.btn-outline-black {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-black:hover {
  background: var(--black);
  color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--black-3);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ---------- ANNOUNCEMENT BAR ---------- */
/* ============================================================
   HEADER — Two-row Bardi-style sticky header
   Row 1: .header-topbar  (utility links + phone + CTA)
   Row 2: .header-main    (logo + primary nav)
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.1); }

/* ── Row 1: Utility bar ── */
.header-topbar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.header-topbar .container { width: 100%; }
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: color .18s;
  white-space: nowrap;
}
.topbar-links a i { font-size: .65rem; }
.topbar-links a:hover { color: var(--gold-dark); }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--black);
  transition: color .18s;
}
.topbar-phone i { color: var(--gold-dark); font-size: .8rem; }
.topbar-phone:hover { color: var(--gold-dark); }
.topbar-book-btn {
  padding: 6px 18px;
  font-size: .78rem;
  border-radius: 40px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── Row 2: Main nav bar ── */
.header-main {
  background: var(--white);
  height: var(--header-main-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray-200);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* ══════════════════════════════════════════════════════════════
   LOGO WRAPPER — applies a fixed height to the logo regardless
   of what Elementor or WordPress sets on the image widget.

   HOW TO USE IN ELEMENTOR:
     1. Add an Image widget with the logo PNG.
     2. Go to Advanced → CSS Classes on that widget.
     3. Type one of the class names below and save.
   ══════════════════════════════════════════════════════════════ */

/* Container behaviour */
.ophc-logo-wrap,
.ophc-logo-sm,
.ophc-logo-md,
.ophc-logo-lg {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 0 !important;
  overflow: visible !important;
  flex-shrink: 0;
  /* remove any default Elementor widget padding/margin */
  padding: 0 !important;
  margin: 0 !important;
}

/* Kill the Elementor widget-container padding so it doesn't add height */
.ophc-logo-wrap .elementor-widget-container,
.ophc-logo-sm  .elementor-widget-container,
.ophc-logo-md  .elementor-widget-container,
.ophc-logo-lg  .elementor-widget-container {
  line-height: 0 !important;
  font-size: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* The <figure> and <a> Elementor wraps around <img> must not constrain size */
.ophc-logo-wrap figure,
.ophc-logo-wrap a,
.ophc-logo-sm  figure,
.ophc-logo-sm  a,
.ophc-logo-md  figure,
.ophc-logo-md  a,
.ophc-logo-lg  figure,
.ophc-logo-lg  a {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ── The <img> itself — height is the ONLY dimension you control ── */
.ophc-logo-wrap img,
.ophc-logo-sm  img,
.ophc-logo-md  img,
.ophc-logo-lg  img {
  display: block !important;
  width: auto !important;         /* always keep aspect ratio */
  min-width: unset !important;
  max-width: unset !important;    /* never let Elementor squash it */
  object-fit: contain !important;
}

/* Size presets — edit these pixel values to resize */
.ophc-logo-wrap img { height: 48px !important; max-height: 48px !important; } /* default  */
.ophc-logo-sm   img { height: 36px !important; max-height: 36px !important; } /* compact  */
.ophc-logo-md   img { height: 56px !important; max-height: 56px !important; } /* medium   */
.ophc-logo-lg   img { height: 72px !important; max-height: 72px !important; } /* large    */

/* Fallback: any image widget in the header that doesn't have an ophc-logo-* class */
.elementor-location-header .elementor-widget-image img {
  height: 50px !important;
  width: auto !important;
  max-height: 50px !important;
  min-height: unset !important;
  max-width: unset !important;
  display: block !important;
  object-fit: contain !important;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--black);
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-text .logo-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--black);
  letter-spacing: .02em;
}
.logo-text .logo-sub {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item  { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--gold-dark); background: var(--gold-pale); }
.nav-link svg { width: 12px; height: 12px; transition: transform .2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: var(--transition-fast);
}
.nav-dropdown a:hover { background: var(--gold-pale); color: var(--black); }
.nav-dropdown a .dd-icon {
  width: 28px;
  height: 28px;
  background: var(--gold-pale2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 6px 0;
}


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-main-h);
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 999;
  padding: 24px;
  border-top: 1px solid var(--gray-200);
  max-height: calc(100vh - var(--header-main-h));
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .3s ease;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { transform: translateX(0); display: block; }
.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav-sub {
  padding: 8px 0 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-sub a {
  display: block;
  padding: 8px 0;
  font-size: .875rem;
  color: var(--gray-500);
}

/* ---------- DARK SECTION UTILITY ---------- */
/* Apply class "ophc-dark-section" to any Elementor section with a dark background
   so headings, paragraphs, and labels switch to light colours automatically. */
.ophc-dark-section,
.ophc-dark-section .e-con,
.ophc-dark-section .e-con-inner,
.ophc-dark-section .elementor-container {
  color: var(--white);
}
.ophc-dark-section h1,
.ophc-dark-section h2,
.ophc-dark-section h3,
.ophc-dark-section h4,
.ophc-dark-section h5,
.ophc-dark-section .elementor-heading-title {
  color: var(--white) !important;
}
.ophc-dark-section p,
.ophc-dark-section .elementor-widget-text-editor,
.ophc-dark-section .elementor-text-editor {
  color: rgba(255,255,255,.75) !important;
}
.ophc-dark-section .section-label {
  color: var(--gold-light);
}
.ophc-dark-section .section-label::before {
  background: var(--gold-light);
}

/* ---------- HERO — White background ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}

/* Hero background photo */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,.94) 38%, rgba(255,255,255,.65) 65%, rgba(255,255,255,.25) 100%);
  z-index: 1;
}
.hero-blob-1 {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(214,178,58,.12) 0%, rgba(214,178,58,.04) 50%, transparent 75%);
  border-radius: 50%;
}
.hero-blob-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(214,178,58,.07) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(214,178,58,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214,178,58,.05) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-pale2);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.08;
}
.hero h1 .highlight {
  color: var(--gold-dark);
  position: relative;
  display: inline-block;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  opacity: .5;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust   { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
}
.hero-trust-item .trust-icon {
  width: 28px;
  height: 28px;
  background: var(--gold-pale2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--gold-dark);
}

/* Hero right cards */
.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 46%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-cards-stack {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.hero-stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 300px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.hero-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale2);
}
.hero-stat-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hero-stat-info .num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--black);
  line-height: 1;
}
.hero-stat-info .label {
  font-size: .8rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 2px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.hero-scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ---------- SERVICE STRIP ---------- */
.service-strip { background: var(--gold); }
.service-strip .container { display: flex; }
.service-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
.service-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 36px;
  border-right: 1px solid rgba(4,4,4,.12);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.service-strip-item:last-child { border-right: none; }
.service-strip-item:hover { background: rgba(4,4,4,.06); }
.strip-icon {
  width: 52px;
  height: 52px;
  background: rgba(4,4,4,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.service-strip-item:hover .strip-icon { background: rgba(4,4,4,.18); }
.strip-info .strip-title { font-family: var(--font-heading); font-size: 1.05rem; color: var(--black); }
.strip-info .strip-sub   { font-size: .8rem; font-weight: 500; color: rgba(4,4,4,.6); margin-top: 2px; }

/* ---------- WHY CHOOSE US ---------- */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual { position: relative; }
.why-image-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 520px;
}
.why-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.why-image-box:hover .why-team-img { transform: scale(1.03); }
.why-badge {
  position: absolute;
  bottom: 32px;
  left: -32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  border: 1px solid var(--gray-100);
}
.why-badge .badge-num   { font-family: var(--font-heading); font-size: 2rem; color: var(--gold-dark); line-height: 1; }
.why-badge .badge-label { font-size: .82rem; font-weight: 600; color: var(--gray-700); line-height: 1.3; }

.why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.why-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.why-feature-item:hover {
  border-color: var(--gold-pale2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  background: var(--white);
}
.why-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-feature-text h4 { font-size: .95rem; color: var(--black); margin-bottom: 4px; }
.why-feature-text p  { font-size: .82rem; color: var(--gray-500); line-height: 1.5; }

/* ---------- STATS — White background ---------- */
.stats-section {
  background: var(--white);
  padding: 0;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--gray-100);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 52px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  background: var(--white);
}
.stat-item:hover { background: var(--gold-pale); }
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--gold-dark);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-top: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-divider {
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-200);
}
.stat-item:last-child .stat-divider { display: none; }

/* ---------- SERVICE SECTIONS ---------- */
.service-section { overflow: hidden; }
.service-section.alt-bg { background: var(--off-white); }

.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 580px;
}
.service-layout.reverse          { direction: rtl; }
.service-layout.reverse > *      { direction: ltr; }

.service-image-col { position: relative; overflow: hidden; min-height: 480px; }
.service-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.service-section:hover .service-img-bg { transform: scale(1.04); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,4,4,.55) 0%, rgba(4,4,4,.18) 100%);
}
.service-img-label {
  position: absolute;
  top: 28px;
  left: 28px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}
.service-offer-card {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
}
.offer-badge {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  padding: 10px 14px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.offer-text .offer-title { font-weight: 700; color: var(--black); font-size: .95rem; }
.offer-text .offer-sub   { font-size: .8rem; color: var(--gray-500); margin-top: 2px; }

.service-content-col {
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.service-section.alt-bg .service-content-col { background: var(--off-white); }

.service-links { margin: 28px 0; }
.service-links h4 {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.service-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.service-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: var(--transition-fast);
  cursor: pointer;
}
.service-link-item:hover { background: var(--gold-pale); color: var(--black); }
.service-link-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}


/* ---------- FINANCING BANNER ---------- */
.financing-banner {
  background: var(--gold);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.financing-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -8%;
  width: 480px;
  height: 480px;
  background: rgba(4,4,4,.07);
  border-radius: 50%;
  pointer-events: none;
}
.financing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.financing-text h2 { color: var(--black); margin-bottom: 8px; }
.financing-text p  { color: rgba(4,4,4,.6); }
.financing-features { display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.fin-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--black);
}
.fin-feature::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(4,4,4,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
}
.financing-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--white); }
.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.review-score { display: flex; align-items: center; gap: 12px; }
.score-num    { font-family: var(--font-heading); font-size: 2.4rem; color: var(--black); line-height: 1; }
.score-stars  { color: var(--gold); font-size: 1.1rem; }
.score-label  { font-size: .8rem; color: var(--gray-500); }
.testimonials-controls { display: flex; gap: 8px; }
.ctrl-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--gray-700);
  cursor: pointer;
  transition: var(--transition-fast);
  background: none;
}
.ctrl-btn:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-pale); }

.testimonials-slider  { overflow: hidden; }
.testimonials-track   { display: flex; gap: 24px; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale2);
  transform: translateY(-4px);
  background: var(--white);
}
.testi-stars  { color: var(--gold); font-size: .95rem; margin-bottom: 16px; }
.testi-quote  { font-size: .95rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--black);
  flex-shrink: 0;
}
.testi-name     { font-weight: 700; font-size: .9rem; color: var(--black); }
.testi-location { font-size: .8rem; color: var(--gray-500); }
.testi-service  {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 6px;
}

/* ---------- SERVICE AREAS — White background ---------- */
.areas-section { background: var(--off-white); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.areas-content h2 { color: var(--black); margin-bottom: 12px; }
.areas-content > p { color: var(--gray-500); margin-bottom: 32px; }

.cities-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 32px; }
.city-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition-fast);
  cursor: default;
}
.city-tag:hover {
  background: var(--gold-pale);
  border-color: var(--gold-pale2);
  color: var(--black);
}
.city-tag::before { content: '📍'; font-size: .85rem; }

/* Area checker */
.area-checker h4 { font-size: .875rem; font-weight: 600; color: var(--gray-700); margin-bottom: 12px; }
.checker-form  { display: flex; gap: 10px; }
.checker-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  color: var(--black);
  font-family: var(--font-body);
  font-size: .9rem;
  outline: none;
  transition: var(--transition-fast);
}
.checker-input::placeholder { color: var(--gray-400); }
.checker-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214,178,58,.12); }
.checker-result { margin-top: 12px; padding: 12px 16px; border-radius: var(--radius); font-size: .875rem; font-weight: 600; display: none; }
.checker-result.success { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.25); color: #16a34a; display: block; }
.checker-result.error   { background: rgba(239,68,68,.07);  border: 1px solid rgba(239,68,68,.2);  color: #dc2626; display: block; }

/* Map visual */
.areas-map-visual { position: relative; }
.map-box {
  border-radius: var(--radius-xl);
  height: 480px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(4,4,4,.55) 0%, rgba(4,4,4,.2) 100%);
  z-index: 1;
}
.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(214,178,58,.3);
  animation: pulse-dot 2s infinite;
  z-index: 2;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 4px rgba(214,178,58,.3); }
  50%      { box-shadow: 0 0 0 10px rgba(214,178,58,.12); }
}
.map-label {
  position: absolute;
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
  z-index: 2;
}

/* ---------- BLOG ---------- */
.blog-section { background: var(--white); }
.blog-header  {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
}
.blog-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.blog-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.32) 100%);
  z-index: 1;
}
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}
.blog-body { padding: 24px; }
.blog-meta  { font-size: .78rem; color: var(--gray-400); font-weight: 500; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.05rem; color: var(--black); margin-bottom: 10px; line-height: 1.4; }
.blog-card p  { font-size: .875rem; margin-bottom: 20px; }
.blog-read-more {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}
.blog-read-more:hover { gap: 10px; }

/* ---------- CTA SECTION — White with gold accent ---------- */
.cta-section {
  background: var(--white);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gray-100);
}
.cta-inner-box {
  background: var(--gold-pale);
  border: 1px solid var(--gold-pale2);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}
.cta-inner-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(214,178,58,.1);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner-box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(214,178,58,.07);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner-box h2 { color: var(--black); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-inner-box p  { color: var(--gray-500); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: .8rem;
  color: var(--gray-500);
  position: relative;
  z-index: 1;
}
.cta-guarantee span { color: var(--gold-dark); }

/* ---------- FOOTER — White / very light ---------- */
.site-footer {
  background: var(--off-white);
  border-top: 3px solid var(--gold);
}
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-img {
  height: 36px;
  max-height: 36px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
}
.footer-tagline { font-size: .9rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: var(--gray-500);
}
.footer-contact-item a { color: var(--gray-700); }
.footer-contact-item a:hover { color: var(--gold-dark); }
.footer-contact-icon {
  width: 30px;
  height: 30px;
  background: var(--gold-pale2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: .95rem;
  color: var(--black);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-pale2);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: .95rem;
  color: var(--gray-500);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-links a:hover { color: var(--gold-dark); padding-left: 4px; }

.footer-newsletter p { font-size: .875rem; color: var(--gray-500); margin-bottom: 16px; line-height: 1.6; }
.newsletter-form   { display: flex; flex-direction: column; gap: 10px; }
.newsletter-input {
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  color: var(--black);
  font-family: var(--font-body);
  font-size: .875rem;
  outline: none;
  transition: var(--transition-fast);
}
.newsletter-input::placeholder { color: var(--gray-400); }
.newsletter-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214,178,58,.1); }

.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--gray-500);
  transition: var(--transition-fast);
  background: var(--white);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-pale); }

.footer-licenses {
  padding: 24px 0;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.license-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-500);
}
.license-badge span { color: var(--gold-dark); font-size: .85rem; }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: .8rem; color: var(--gray-400); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .8rem; color: var(--gray-400); transition: var(--transition-fast); }
.footer-legal a:hover { color: var(--gold-dark); }

/* ---------- FLOATING ELEMENTS ---------- */
.emergency-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.emergency-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #dc2626;
  color: var(--white);
  padding: 14px 22px;
  border-radius: 40px;
  font-weight: 700;
  font-size: .875rem;
  box-shadow: 0 4px 20px rgba(220,38,38,.4);
  animation: emergency-pulse 2.5s infinite;
  transition: var(--transition);
  text-decoration: none;
}
.emergency-btn:hover { background: #b91c1c; transform: scale(1.04); color: var(--white); }
@keyframes emergency-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(220,38,38,.35); }
  50%      { box-shadow: 0 4px 32px rgba(220,38,38,.6); }
}
.scroll-top-btn {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover   { background: var(--gold-dark); transform: translateY(-3px); }

/* ---------- BOOKING MODAL ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,4,4,.55);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(.95) translateY(16px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-header {
  background: var(--black);
  padding: 28px 32px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: relative;
}
.modal-header h3 { color: var(--white); font-size: 1.3rem; }
.modal-header p  { color: rgba(255,255,255,.5); font-size: .875rem; margin-top: 4px; }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.modal-close:hover { background: rgba(255,255,255,.2); }
.modal-body { padding: 32px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group label .required { color: #dc2626; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--gray-900);
  outline: none;
  transition: var(--transition-fast);
  background: var(--white);
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214,178,58,.12); }
.form-control::placeholder { color: var(--gray-400); }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; -webkit-appearance: none; }
textarea.form-control { resize: vertical; min-height: 90px; }
.modal-footer { padding: 0 32px 32px; display: flex; flex-direction: column; gap: 12px; }
.form-consent {
  font-size: .78rem;
  color: var(--gray-500);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.form-consent input { margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); }

/* ---------- ANIMATE ON SCROLL ---------- */
.aos-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.aos-fade-up.visible { opacity: 1; transform: translateY(0); }
.aos-delay-1 { transition-delay: .1s; }
.aos-delay-2 { transition-delay: .2s; }
.aos-delay-3 { transition-delay: .3s; }
.aos-delay-4 { transition-delay: .4s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-layout { grid-template-columns: 1fr; }
  .service-image-col { min-height: 320px; }
  .service-content-col { padding: 48px 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .areas-grid { grid-template-columns: 1fr; }
  .areas-map-visual { display: none; }
  .hero-visual { display: none; }
  .financing-inner { flex-direction: column; text-align: center; }
  .financing-features { align-items: center; }
}

@media (max-width: 768px) {
  :root { --header-h: var(--header-main-h); }
  .header-topbar { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .service-strip-inner { grid-template-columns: 1fr; }
  .service-strip-item { border-right: none; border-bottom: 1px solid rgba(4,4,4,.12); }
  .service-strip-item:last-child { border-bottom: none; }
  .why-features { grid-template-columns: 1fr 1fr; }
  .ophc-qualify-list { grid-template-columns: 1fr 1fr; }
  .financing-features { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 14px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track .testimonial-card { flex: 0 0 85%; }
  .testimonials-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .service-links-grid { grid-template-columns: 1fr; }
  .service-layout.reverse { direction: ltr; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .checker-form { flex-direction: column; }
  .emergency-float { bottom: 20px; right: 16px; }
  .cta-inner-box { padding: 48px 24px; }
}

@media (max-width: 480px) {
  :root { --header-main-h: 64px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section-pad { padding: 64px 0; }
  .why-features { grid-template-columns: 1fr; }
  .ophc-qualify-list { grid-template-columns: 1fr; }
  .financing-features { flex-direction: column; gap: 10px; }
  .stats-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES FULL-SLIDE SECTION
   Each service occupies one full slider window (100% width)
   Image panel left/right alternating, content on opposite side
   ============================================================ */

.services-slider-section {
  padding: 88px 0 0;
  overflow: hidden;
  background: var(--white);
}

/* Header row: label + title left, arrows right */
.slider-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.slider-section-head h2 { color: var(--black); margin-bottom: 0; }
.slider-nav-arrows { display: flex; gap: 10px; flex-shrink: 0; }

/* Slider outer — no overflow so slides bleed full width */
.serv-slider-outer { position: relative; }

/* Track — each slide snaps to start */
.serv-slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.serv-slider-track::-webkit-scrollbar { display: none; }

/* ---- Individual Slide ---- */
.serv-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

/* ---- Image Panel ---- */
.serv-slide-img {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 48px;
}

/* Real photo + overlay for service slide image panel */
.slide-img-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.slide-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.45) 100%);
  z-index: 1;
}

/* Subtle dot-grid overlay */
.slide-img-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 2;
}

/* Bottom meta: label + badge */
.slide-img-meta {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.slide-img-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.slide-img-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--black);
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 40px;
}

/* Floating stat tile — top-left of image panel */
.slide-img-stat {
  position: absolute;
  top: 36px;
  left: 40px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 16px 20px;
  z-index: 3;
}
.sstat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.sstat-label {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
  margin-top: 4px;
}

/* ---- Content Panel ---- */
.serv-slide-content {
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

/* Category pill */
.slide-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 40px;
  font-size: .8rem;
  font-weight: 700;
  align-self: flex-start;
  margin-bottom: 20px;
}
.heat-pill  { background: #fff3e8; color: #b84500; }
.cool-pill  { background: #e8f0fd; color: #1a3fb5; }
.plumb-pill { background: #e6f5f0; color: #0a5c40; }

.serv-slide-content h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.3rem);
  color: var(--black);
  margin-bottom: 14px;
}
.serv-slide-content > p {
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* 2-column service list */
.slide-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 36px;
}
.slide-services-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: var(--gray-700);
  font-weight: 500;
}
.slide-services-list li i {
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0;
}

/* CTA row */
.slide-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- Dot indicators ---- */
.serv-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 28px 0 36px;
}
.scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-fast);
}
.scroll-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .serv-slide-content { padding: 48px 44px; }
  .serv-slide-img     { padding: 36px 36px; }
  .slide-img-stat     { top: 24px; left: 28px; }
}
@media (max-width: 768px) {
  .slider-section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .slider-nav-arrows { align-self: flex-end; }
  .serv-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 280px auto;
    min-height: unset;
  }
  /* Always put image on top on mobile */
  .serv-slide-img     { order: -1; padding: 28px 28px 32px; }
  .serv-slide-content { padding: 36px 28px 40px; }
  .slide-img-stat     { top: 20px; left: 20px; padding: 12px 16px; }
  .sstat-num          { font-size: 1.5rem; }
  .slide-services-list { grid-template-columns: 1fr 1fr; gap: 10px; }
  .slide-cta-row      { flex-direction: column; }
  .slide-cta-row .btn { width: 100%; justify-content: center; }
  .services-slider-section { padding: 64px 0 0; }
}
@media (max-width: 480px) {
  .serv-slide { grid-template-rows: 240px auto; }
  .serv-slide-content { padding: 28px 20px 32px; }
  .slide-img-stat { display: none; }
}

/* ============================================================
   INNER PAGE COMPONENTS
   Page Banner · Service Cards · Process Steps · FAQ
   ============================================================ */

/* ---------- PAGE BANNER (inner pages) ---------- */
.page-banner {
  position: relative;
  background: var(--black-3);
  padding: 80px 0 72px;
  overflow: hidden;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
}
.page-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(4,4,4,.85) 40%, rgba(4,4,4,.5) 100%);
}
.page-banner-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255,255,255,.25); font-size: .7rem; }
.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-banner .page-banner-sub {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.7;
}
.page-banner-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.page-banner-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.page-banner-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.page-banner-trust-item i { color: var(--gold); font-size: .75rem; }

/* ---------- SERVICE INTRO (split layout) ---------- */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.service-intro.reverse { direction: rtl; }
.service-intro.reverse > * { direction: ltr; }
.service-intro-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.service-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-intro-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--black);
  font-size: .78rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-intro-body { display: flex; flex-direction: column; gap: 20px; }
.service-intro-body p { color: var(--gray-500); line-height: 1.8; }
.service-intro-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.service-intro-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .93rem;
  color: var(--gray-700);
}
.service-intro-checklist li i {
  color: var(--gold-dark);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---------- SERVICE CARDS GRID ---------- */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(214,178,58,.18);
  transform: translateY(-4px);
}
.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 1.05rem;
  color: var(--gray-900);
  margin: 0;
}
.service-card p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: 4px;
}
.service-card-link:hover { gap: 8px; }

/* ---------- PROCESS STEPS ---------- */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps-grid::before { display: none; }
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--black);
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold-pale2);
}
.process-step h4 {
  font-size: .95rem;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.process-step p {
  font-size: .83rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ---------- FAQ ACCORDION ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--gold-pale2); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-size: .93rem;
  font-weight: 600;
  color: var(--gray-900);
  background: var(--white);
  gap: 12px;
}
.faq-question:hover { background: var(--gray-50); }
.faq-icon {
  color: var(--gold-dark);
  font-size: 1.1rem;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }
.faq-side-img {
  position: sticky;
  top: 130px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.faq-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- PAGE BANNER RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .service-intro  { gap: 40px; }
  .faq-grid       { gap: 40px; }
  .service-cards-grid { gap: 18px; }
}
@media (max-width: 768px) {
  .page-banner { padding: 56px 0 48px; }
  .service-intro { grid-template-columns: 1fr; gap: 40px; }
  .service-intro.reverse { direction: ltr; }
  /* On mobile, service cards and process steps go horizontal (2 per row) */
  .service-cards-grid { grid-template-columns: 1fr 1fr; }
  .process-steps-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-side-img { display: none; }
}
@media (max-width: 480px) {
  /* Small phones: back to single column */
  .service-cards-grid { grid-template-columns: 1fr; }
  .process-steps-grid { grid-template-columns: 1fr; }
  .ophc-plans-grid    { grid-template-columns: 1fr; }
}

/* ============================================================
   ELEMENTOR COMPATIBILITY
   Problem: Elementor's "Boxed" section layout limits its inner
   container to the Content Width setting (default ~1140px).
   Our .container then resolves width:95% against that narrow
   parent instead of the viewport, making content look tight.

   FIX A — Elementor Admin (recommended, do this first):
     Elementor → Site Settings → Layout → Content Width → 1400
     Per section in editor: Layout tab → Width → Full Width
     Per column: Advanced → Padding → 0 0 0 0

   FIX B — CSS overrides below (apply automatically when plugin
   is active, but only take full effect with Full Width sections):
   ============================================================ */

/* Remove default padding Elementor adds to HTML widget containers */
.elementor-widget-html > .elementor-widget-container {
  padding: 0 !important;
  max-width: none !important;
}

/* Ensure full-width Elementor sections don't cap their inner container */
.elementor-section.elementor-section-full_width > .elementor-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Remove Elementor column default padding when section wraps our layout */
.elementor-section.elementor-section-full_width .elementor-col-100 > .elementor-widget-wrap,
.elementor-section.elementor-section-full_width [class*="elementor-col-"] > .elementor-widget-wrap {
  padding: 0 !important;
}

/* Flexbox/Grid container sections (Elementor 3.6+ e-con structure) */
.e-con.e-con-full-width,
.e-con.e-con-full-width > .e-con-inner {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}

/* Our .container always takes 100% of whatever its parent is —
   parent must be full-width for this to match the static preview. */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   SHORTCODE RESPONSIVE GRID UTILITIES
   CSS classes that replace inline style="display:grid…" in
   shortcodes.php so media queries can override them.
   ============================================================ */

/* --- Page banner highlight span --- */
.page-banner h1 .highlight { color: var(--gold); }

/* --- Blog related-posts header row --- */
.blog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* --- Financing: stats bar — 4 across on desktop --- */
.ophc-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

/* --- Financing: plan cards — 3 across on desktop --- */
.ophc-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 100%;
  margin: 0 auto;
}

/* --- Financing: qualifying services + CTA card (2 col) --- */
.ophc-qualify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* --- Financing: qualifying service tile list --- */
.ophc-qualify-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* --- Service area archive: area cards (3 col) --- */
.ophc-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- Service area archive: text + service tiles overview (2 col) --- */
.ophc-local-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* --- Service area archive: 2×2 service tiles --- */
.ophc-local-svc-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- Testimonials inline grid (3 col) --- */
.ophc-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- Map + ZIP codes grid (column count from inline style; mobile override via !important) --- */
.ophc-map-zip-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

/* --- Blog single: article + sidebar --- */
.ophc-blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

/* --- Blog single: bottom CTA 2-col --- */
.ophc-blog-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}

/* --- ZIP checker flex row --- */
.ophc-zip-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.ophc-zip-row input { flex: 1; min-width: 0; }

/* ============================================================
   COMPONENT CSS — ophc-prefixed classes
   (Booking modal, emergency float, stats, area checker,
    testimonials slider, CTA banner — all used in shortcodes.php)
   ============================================================ */

/* --- Emergency float button --- */
.ophc-emergency-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.ophc-emergency-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #dc2626;
  color: #fff;
  padding: 14px 22px;
  border-radius: 40px;
  font-weight: 700;
  font-size: .875rem;
  box-shadow: 0 4px 20px rgba(220,38,38,.4);
  animation: emergency-pulse 2.5s infinite;
  transition: var(--transition);
  text-decoration: none;
}
.ophc-emergency-btn:hover { background: #b91c1c; transform: scale(1.04); color: #fff; }
.ophc-scroll-top {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.ophc-scroll-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* --- Booking modal --- */
.ophc-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(4,4,4,.55);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.ophc-modal-overlay.open { opacity: 1; visibility: visible; }
.ophc-modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%; max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(.95) translateY(16px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.ophc-modal-overlay.open .ophc-modal-box { transform: scale(1) translateY(0); }
.ophc-modal-header {
  background: var(--black);
  padding: 28px 32px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: relative;
}
.ophc-modal-header h3 { color: var(--white); font-size: 1.3rem; }
.ophc-modal-header p  { color: rgba(255,255,255,.5); font-size: .875rem; margin-top: 4px; }
.ophc-modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.1);
  border: none; border-radius: 50%;
  color: var(--white); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.ophc-modal-close:hover { background: rgba(255,255,255,.2); }
.ophc-form-body { padding: 24px 32px 0; }
.ophc-form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ophc-form-group { margin-bottom: 18px; }
.ophc-form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.ophc-form-group label .req { color: #dc2626; }
.ophc-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--gray-900);
  outline: none;
  transition: var(--transition-fast);
  background: var(--white);
}
.ophc-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214,178,58,.12); }
.ophc-input::placeholder { color: var(--gray-400); }
select.ophc-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  -webkit-appearance: none;
}
textarea.ophc-input { resize: vertical; min-height: 90px; }
.ophc-form-footer { padding: 0 32px 32px; display: flex; flex-direction: column; gap: 12px; }
.ophc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}
.ophc-btn-gold { background: var(--gold); color: var(--black); box-shadow: var(--shadow-gold); }
.ophc-btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.ophc-btn-full { width: 100%; justify-content: center; }
.ophc-btn-lg   { padding: 18px 36px; font-size: 1.05rem; }
.ophc-consent  { font-size: .78rem; color: var(--gray-500); display: flex; gap: 8px; align-items: flex-start; }
.ophc-consent input { margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); }
.ophc-form-msg { font-size: .85rem; font-weight: 600; border-radius: var(--radius); padding: 8px 12px; }

/* --- Stats counter --- */
.ophc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--gray-100);
}
.ophc-stat-item {
  padding: 52px 32px;
  text-align: center;
  background: var(--white);
  transition: var(--transition);
  position: relative;
}
.ophc-stat-item + .ophc-stat-item::before {
  content: '';
  position: absolute; left: 0; top: 20%; height: 60%;
  width: 1px; background: var(--gray-200);
}
.ophc-stat-item:hover { background: var(--gold-pale); }
.ophc-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--gold-dark);
  line-height: 1;
  display: block;
}
.ophc-stat-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-top: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* --- Area checker --- */
.ophc-area-checker {
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.ophc-area-checker h4 { font-size: .9rem; font-weight: 600; color: var(--gray-700); margin-bottom: 14px; }
.ophc-checker-form { display: flex; gap: 10px; }
.ophc-checker-result { margin-top: 12px; padding: 12px 16px; border-radius: var(--radius); font-size: .875rem; font-weight: 600; }

/* --- Testimonials slider (ophc-prefixed) --- */
.ophc-testimonials-slider { overflow: hidden; position: relative; }
.ophc-testi-track { display: flex; gap: 24px; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.ophc-testi-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
}
.ophc-testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold-pale2); transform: translateY(-4px); background: var(--white); }
.ophc-testi-stars  { color: var(--gold); font-size: .95rem; margin-bottom: 16px; }
.ophc-testi-quote  { font-size: .95rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.ophc-testi-author { display: flex; align-items: center; gap: 12px; }
.ophc-testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1rem; color: var(--black); flex-shrink: 0; }
.ophc-testi-name   { font-weight: 700; font-size: .9rem; color: var(--black); }
.ophc-testi-city   { font-size: .8rem; color: var(--gray-500); }
.ophc-testi-service { display: inline-flex; align-items: center; gap: 4px; font-size: .75rem; font-weight: 600; color: var(--gold-dark); background: var(--gold-pale); padding: 3px 10px; border-radius: 20px; margin-top: 6px; }
.ophc-testi-controls { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.ophc-ctrl-btn { width: 44px; height: 44px; border: 2px solid var(--gray-200); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--gray-700); cursor: pointer; transition: var(--transition-fast); background: none; }
.ophc-ctrl-btn:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-pale); }

/* --- CTA Banner (ophc-prefixed) --- */
.ophc-cta-banner { background: var(--gold-pale); border: 1px solid var(--gold-pale2); border-radius: var(--radius-xl); padding: 72px 48px; text-align: center; }
.ophc-cta-banner h2 { color: var(--black); margin-bottom: 14px; }
.ophc-cta-banner p  { color: var(--gray-500); margin-bottom: 36px; }
.ophc-cta-actions   { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   HELLO ELEMENTOR THEME COMPATIBILITY
   Hello Elementor resets some base styles differently from other
   themes. These rules lock in our values where conflicts exist.
   ============================================================ */

/* Hello Elementor adds p { margin: 0 0 20px } — kill it */
body.hello-elementor p,
body.hello-elementor .ophc-content p { margin: 0; }

/* Hello Elementor sets .site-header { position: relative } — enforce sticky */
body.hello-elementor .site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

/* Admin bar offset — WP adds 32px bar at top on desktop */
body.admin-bar.hello-elementor .site-header { top: 32px !important; }
@media screen and (max-width: 782px) {
  body.admin-bar.hello-elementor .site-header { top: 46px !important; }
}

/* Hello Elementor / Elementor default: img gets width:100% inside widgets.
   Our layout images are already handled by their own rules, but this
   prevents Elementor from stretching decorative images we don't control. */
body.hello-elementor .elementor-widget-image img { max-width: 100%; height: auto; }

/* Elementor adds .page-id-X to body — ensure our base color/font always apply */
body.hello-elementor {
  font-family: var(--font-body) !important;
  color: var(--gray-900);
  background: var(--white);
}

/* Elementor sometimes adds a default link color — keep ours */
body.hello-elementor a { color: inherit; text-decoration: none; }

/* Elementor Pro's .elementor-location-footer sometimes resets to display:block */
body.hello-elementor .site-footer { display: block; }

/* Ensure our sections aren't affected by Hello Elementor's .entry-content spacing */
body.hello-elementor .entry-content > * + * { margin-top: 0; }

/* ============================================================
   SHORTCODE RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Suppress <br> line-breaks inside page banner headings on small screens */
@media (max-width: 640px) {
  .page-banner h1 br,
  .page-banner h2 br { display: none; }
}

/* ≤ 1024px — tablet */
@media (max-width: 1024px) {
  .ophc-qualify-grid   { grid-template-columns: 1fr; gap: 40px; }
  .ophc-local-svc-grid { grid-template-columns: 1fr; gap: 40px; }
  .ophc-blog-layout    { grid-template-columns: 1fr; }
  .ophc-blog-layout aside { position: static !important; top: auto !important; }
}

/* ≤ 768px — mobile */
@media (max-width: 768px) {
  .ophc-stats-bar      { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ophc-plans-grid     { grid-template-columns: repeat(2, 1fr); }
  .ophc-areas-grid     { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ophc-local-svc-tiles { grid-template-columns: repeat(2, 1fr); }
  .ophc-testi-grid     { grid-template-columns: repeat(2, 1fr); }
  .ophc-map-zip-grid   { grid-template-columns: 1fr !important; }
  .ophc-blog-cta-grid  { grid-template-columns: 1fr; gap: 32px; }
  .ophc-zip-row        { flex-wrap: wrap; }
  .ophc-zip-row button { width: 100%; justify-content: center; }
  .ophc-qualify-list   { grid-template-columns: 1fr 1fr; }
  .ophc-stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .ophc-stat-item      { padding: 36px 20px; }
  .ophc-testi-card     { flex: 0 0 calc(85% - 12px); }
  .ophc-checker-form   { flex-direction: column; }
  .ophc-form-row       { grid-template-columns: 1fr; }
  .ophc-emergency-float { bottom: 20px; right: 16px; }
  .ophc-cta-banner     { padding: 48px 24px; }
  .blog-head           { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ophc-modal-box      { max-height: 95vh; }
}

/* ≤ 480px — small phones */
@media (max-width: 480px) {
  .ophc-areas-grid      { grid-template-columns: 1fr; }
  .ophc-local-svc-tiles { grid-template-columns: 1fr; }
  .ophc-testi-grid      { grid-template-columns: 1fr; }
  .ophc-stats-grid      { grid-template-columns: 1fr; }
  .ophc-stat-item       { padding: 28px 12px; }
  .ophc-stat-num        { font-size: 2rem; }
  .ophc-plans-grid      { grid-template-columns: 1fr; gap: 20px; }
  .ophc-stats-bar       { grid-template-columns: 1fr; }
}

/* ============================================================
   GENERAL MOBILE POLISH
   ============================================================ */

/* Reduce section padding on tablet */
@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }
}

/* Black CTA strips: stack text above buttons on mobile */
@media (max-width: 600px) {
  /* Any dark section CTA that uses flex justify-space-between */
  section[style*="background:var(--black"] > .container > div[style*="justify-content:space-between"],
  section[style*="background:#040404"] > .container > div[style*="justify-content:space-between"] {
    flex-direction: column;
    align-items: flex-start;
  }
  section[style*="background:var(--black"] > .container > div[style*="justify-content:space-between"] > div:last-child,
  section[style*="background:#040404"] > .container > div[style*="justify-content:space-between"] > div:last-child {
    width: 100%;
  }
  section[style*="background:var(--black"] .btn,
  section[style*="background:#040404"] .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Financing plan cards: on mobile each card should not overflow */
@media (max-width: 768px) {
  .ophc-plans-grid > div {
    padding: 32px 24px;
  }
}

/* Blog single: post meta bar wraps nicely on mobile */
@media (max-width: 480px) {
  .ophc-blog-layout article,
  .ophc-blog-layout aside {
    min-width: 0;
  }
}

/* Ensure images inside service-intro don't overflow on mobile */
@media (max-width: 768px) {
  .service-intro-img {
    aspect-ratio: 16 / 9;
  }
  .faq-side-img { display: none; }
}

/* Page banner actions: stack buttons on small phones */
@media (max-width: 480px) {
  .page-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .page-banner { padding: 48px 0 40px; }
  .page-banner h1 { font-size: 1.8rem; }
}

/* Trust bar: 2-col on mobile */
@media (max-width: 480px) {
  .page-banner-trust { gap: 12px; }
}

/* ============================================================
   ELEMENTOR FULL-WIDTH — EDGE TO EDGE, NO SIDE GAPS
   Makes every section and container span the full viewport.
   Works with both Elementor systems (new .e-con and old sections).
   ============================================================ */

/* Kill Elementor's content-width constraint variable */
:root {
  --container-max-width: 100%;
  --e-con-max-width:     100%;
}

/* ── Hello Elementor theme wrappers ────────────────────── */
.site-content,
.entry-content,
.page-content {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ── Top-level sections — full viewport width ──────────── */
.elementor > .e-con,
.elementor-top-section,
.elementor-section {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ── New Flexbox Container — kill Elementor inline padding ─ */
.elementor > .e-con {
  --padding-inline-start: 0px;
  --padding-inline-end:   0px;
}

.elementor > .e-con > .e-con-inner {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}

/* ── Old Section / Column System ───────────────────────── */
.elementor-container,
.elementor-top-section > .elementor-container {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ── Header & Footer location wrappers ─────────────────── */
.elementor-location-header,
.elementor-location-footer {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden;
}

[data-elementor-type="header"] > .e-con,
[data-elementor-type="footer"] > .e-con {
  --padding-inline-start: 0px;
  --padding-inline-end:   0px;
}

[data-elementor-type="header"] > .e-con > .e-con-inner,
[data-elementor-type="footer"] > .e-con > .e-con-inner {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.elementor-location-header .elementor-top-section > .elementor-container,
.elementor-location-footer .elementor-top-section > .elementor-container {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
