/*
 * Optimal PHC — Page v2 Styles
 * Auto-generated by html-to-elementor-converter
 * Source: pages/index.html
 */

/* ============================================================
   OPTIMAL PHC — v2 Stylesheet
   Brand: #d6b23a (gold) | #040404 (black) | #ffffff (white)
   Layout: Dark hero | Tab services | Dark stats | Stacked testimonials
   ============================================================ */

*, *::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-w:      1320px;
  --radius:     6px;
  --radius-lg:  12px;
  --radius-xl:  20px;

  --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,.14);
  --shadow-gold:0 4px 20px rgba(214,178,58,.3);

  --ease:       cubic-bezier(.4,0,.2,1);
  --t:          all .3s var(--ease);
  --tf:         all .18s var(--ease);
}

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); }

/*
  WORDPRESS/ELEMENTOR NOTE:
  For this 95% width to resolve against the viewport (not Elementor's
  inner box), every Elementor section containing this code must be set to:
    Section → Layout → Width: Full Width
    Section → Layout → Content Width: Full Width
    Column → Advanced → Padding: 0 0 0 0
  Also set: Elementor → Site Settings → Layout → Content Width → 1400
*/
.container { width: 95%; max-width: var(--max-w); margin: 0 auto; }
.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; }

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

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--t);
  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-dark         { background:var(--black); color:var(--white); }
.btn-dark:hover   { background:var(--black-3); transform:translateY(-2px); }
.btn-outline-white{ background:transparent; color:var(--white); border-color:rgba(255,255,255,.4); }
.btn-outline-white:hover { background:rgba(255,255,255,.1); border-color:var(--white); }
.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-sm { padding:10px 20px; font-size:.85rem; }
.btn-lg { padding:16px 34px; font-size:1rem; }

/* ============================================================
   HERO — Split dark/image
   Left: black panel (60%) with diagonal right cut
   Right: full-bleed photo (bleeds under the diagonal cut)
   ============================================================ */
.hero {
  display: flex;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-left {
  position: relative;
  z-index: 2;
  width: 60%;
  min-height: 100vh;
  background: var(--black-2);
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}
.hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero-right {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  z-index: 1;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,15,15,.85) 0%, rgba(15,15,15,.3) 50%, transparent 100%);
}

.hero-inner {
  width: 100%;
  max-width: 560px;
  padding: 120px 8% 88px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow-line { width: 36px; height: 2px; background: var(--gold); flex-shrink: 0; }

.hero h1 { color: var(--white); margin-bottom: 20px; line-height: 1.08; }
.hero h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.58);
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.1);
  margin-bottom: 32px;
}

.hero-stats { display: flex; gap: 36px; }
.hero-stat .num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .lbl {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============================================================
   TRUST STRIP — Certifications below hero
   ============================================================ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  border-right: 1px solid var(--gray-100);
  transition: background .2s;
  cursor: default;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--gold-pale); }
.trust-icon {
  width: 38px; height: 38px;
  background: var(--gold-pale2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  font-size: .9rem;
  flex-shrink: 0;
}
.trust-title { font-size: .875rem; font-weight: 700; color: var(--black); display: block; }
.trust-sub   { font-size: .72rem; color: var(--gray-400); font-weight: 500; }

/* ============================================================
   SERVICES — Vertical tab layout
   Left: dark tab nav | Right: content panel with image + list
   ============================================================ */
.services-section { background: var(--off-white); padding: 88px 0; }

.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 40px;
  max-width: 960px;
}
.services-head h2 { color: var(--black); }
.services-head-sub { max-width: 380px; }
.services-head-sub p { font-size: .9rem; color: var(--gray-500); }

.services-tab-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
}

/* Tab nav */
.services-tab-nav {
  background: var(--black-2);
  display: flex;
  flex-direction: column;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 30px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
  transition: background .2s;
  text-align: left;
  width: 100%;
  position: relative;
}
.tab-btn:last-child { border-bottom: none; }
.tab-btn:hover      { background: rgba(255,255,255,.04); }
.tab-btn.active     { background: rgba(214,178,58,.09); }
.tab-btn.active::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
}

.tab-btn-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.3);
  transition: var(--t);
}
.tab-btn.active .tab-btn-icon,
.tab-btn:hover  .tab-btn-icon { background: var(--gold-pale2); color: var(--gold-dark); }

.tab-title {
  display: block;
  font-family: var(--font-heading);
  font-size: .92rem;
  color: rgba(255,255,255,.38);
  transition: color .2s;
}
.tab-btn.active .tab-title,
.tab-btn:hover  .tab-title { color: var(--white); }
.tab-sub {
  display: block;
  font-size: .73rem;
  color: rgba(255,255,255,.22);
  margin-top: 3px;
  transition: color .2s;
}
.tab-btn.active .tab-sub { color: rgba(255,255,255,.45); }

.tab-arrow {
  margin-left: auto;
  color: rgba(255,255,255,.14);
  font-size: .75rem;
  transition: var(--t);
  flex-shrink: 0;
}
.tab-btn.active .tab-arrow { color: var(--gold); transform: translateX(4px); }

/* Tab panels */
.services-tab-panels { position: relative; }

.tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.tab-panel.active { display: grid; }

.tab-panel-img {
  position: relative;
  overflow: hidden;
}
.tab-panel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.tab-panel:hover .tab-panel-img img { transform: scale(1.04); }
.tab-panel-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(4,4,4,.52) 0%, transparent 65%);
}
.tab-panel-badge {
  position: absolute;
  bottom: 22px; left: 22px;
  background: var(--gold);
  color: var(--black);
  font-size: .76rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 40px;
  display: flex; align-items: center; gap: 6px;
  z-index: 2;
}

.tab-panel-body {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.tab-panel-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px;
  border-radius: 40px;
  font-size: .76rem; font-weight: 700;
  align-self: flex-start;
  margin-bottom: 16px;
}
.pill-heat  { background: #fff3e8; color: #b84500; }
.pill-cool  { background: #e8f0fd; color: #1a3fb5; }
.pill-plumb { background: #e6f5f0; color: #0a5c40; }

.tab-panel-body h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  color: var(--black);
  margin-bottom: 12px;
}
.tab-panel-body > p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}
.tab-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin-bottom: 32px;
}
.tab-services-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--gray-700); font-weight: 500;
}
.tab-services-list li i { color: var(--gold-dark); font-size: .65rem; flex-shrink: 0; }
.tab-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   STATS — Dark full-bleed with large gold numbers
   ============================================================ */
.stats-section {
  background: var(--off-white);
  padding: 64px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--black-2);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.stat-item {
  padding: 52px 32px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .25s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover      { background: rgba(214,178,58,.05); }

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.32);
  margin-top: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ============================================================
   WHY US — Numbered feature blocks (3-col, then 3-col)
   ============================================================ */
.why-section { background: var(--white); padding: 96px 0; }

.why-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.why-head h2 { color: var(--black); }
.why-head-right p { color: var(--gray-500); line-height: 1.8; margin-bottom: 24px; }
.why-cta-row { display: flex; gap: 12px; }

.why-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.why-block {
  padding: 44px 36px;
  border-right: 1px solid var(--gray-200);
  position: relative;
  transition: var(--t);
  background: var(--white);
}
.why-block:last-child { border-right: none; }
.why-block:hover { background: var(--gold-pale); }

.why-block-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 20px;
  transition: color .25s;
  letter-spacing: -.02em;
}
.why-block:hover .why-block-num { color: var(--gold-pale2); }

.why-block-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.why-block h3 { font-size: 1.05rem; color: var(--black); margin-bottom: 10px; }
.why-block p  { font-size: .875rem; color: var(--gray-500); line-height: 1.7; }

.why-blocks-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gray-200);
  border-top: none;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  overflow: hidden;
}

/* ============================================================
   PROCESS — How it works (4 steps)
   ============================================================ */
.process-section {
  background: var(--off-white);
  padding: 80px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.process-head { text-align: center; margin-bottom: 56px; }
.process-head h2 { color: var(--black); margin-bottom: 8px; }
.process-head p   { color: var(--gray-500); max-width: 480px; margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 1px;
  background: var(--gray-200);
}
.process-step {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 16px; position: relative; z-index: 1;
}
.process-num {
  width: 54px; height: 54px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--black);
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 3px var(--gold-pale2), var(--shadow-sm);
  flex-shrink: 0;
}
.process-step h4 { font-size: .93rem; color: var(--gray-900); }
.process-step p  { font-size: .82rem; color: var(--gray-500); line-height: 1.55; }

/* ============================================================
   TESTIMONIALS — Featured dark card + 3-col static grid
   ============================================================ */
.testimonials-section { background: var(--white); padding: 96px 0; }

.testimonials-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  max-width: 960px;
}
.testimonials-head h2 { color: var(--black); }
.testi-score { display: flex; align-items: center; gap: 14px; }
.score-big { font-family: var(--font-heading); font-size: 2.6rem; color: var(--black); line-height: 1; }
.score-right .stars { color: var(--gold); font-size: 1.1rem; }
.score-right .count { font-size: .8rem; color: var(--gray-400); }

/* Featured testimonial */
.testi-featured {
  background: var(--black-2);
  border-radius: var(--radius-xl);
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.testi-featured::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: 32px;
  font-family: Georgia, serif;
  font-size: 18rem;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
}
.testi-featured-quote {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 28px;
}
.testi-featured-author { display: flex; align-items: center; gap: 14px; }
.testi-feat-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: .95rem;
  flex-shrink: 0;
  background: var(--gold);
  color: var(--black);
}
.testi-feat-name { font-weight: 700; font-size: .9rem; color: var(--white); }
.testi-feat-loc  { font-size: .8rem; color: rgba(255,255,255,.4); }
.testi-feat-tag  {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .73rem; font-weight: 600;
  color: var(--gold);
  background: rgba(214,178,58,.12);
  padding: 3px 10px; border-radius: 20px;
  margin-top: 6px;
}
.testi-feat-stars {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  flex-shrink: 0;
}
.testi-feat-stars .stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.testi-feat-stars .stars-lbl { font-size: .72rem; color: rgba(255,255,255,.3); text-align: center; }

/* 3-col testimonial grid */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--t);
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale2);
  transform: translateY(-4px);
  background: var(--white);
}
.testi-card-stars { color: var(--gold); font-size: .9rem; margin-bottom: 14px; }
.testi-card-quote { font-size: .875rem; color: var(--gray-700); line-height: 1.72; font-style: italic; margin-bottom: 20px; }
.testi-card-author { display: flex; align-items: center; gap: 10px; }
.testi-card-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: .82rem;
  flex-shrink: 0;
}
.testi-card-name { font-size: .85rem; font-weight: 700; color: var(--black); }
.testi-card-loc  { font-size: .78rem; color: var(--gray-400); }
.testi-card-tag  {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .72rem; font-weight: 600;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 3px 8px; border-radius: 20px; margin-top: 5px;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section {
  background: var(--off-white);
  padding: 96px 0;
  border-top: 1px solid var(--gray-100);
}
.areas-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  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: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.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(--tf);
}
.city-tag:hover { background: var(--gold-pale); border-color: var(--gold-pale2); color: var(--black); }
.city-tag i { color: var(--gold-dark); font-size: .8rem; }

.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(--tf);
}
.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 */
.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); padding: 96px 0; }
.blog-head {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  max-width: 960px;
}
.blog-head h2 { color: var(--black); }
.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(--t);
}
.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;
  transition: transform .5s ease;
}
.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.03rem; 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(--tf);
}
.blog-read-more:hover { gap: 10px; }

/* ============================================================
   CTA — Split dark left / gold right (boxed card)
   ============================================================ */
.cta-section {
  background: var(--off-white);
  padding: 80px 0;
  border-top: 1px solid var(--gray-100);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-left {
  background: var(--black-2);
  padding: 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.cta-left::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: rgba(214,178,58,.04);
  border-radius: 50%; pointer-events: none;
}
.cta-left h2 { color: var(--white); margin-bottom: 14px; }
.cta-left > p { color: rgba(255,255,255,.48); margin-bottom: 32px; max-width: 420px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-guarantee {
  margin-top: 28px;
  font-size: .78rem; color: rgba(255,255,255,.28);
  display: flex; align-items: center; gap: 6px;
}
.cta-guarantee i { color: var(--gold); }

.cta-right {
  background: var(--gold);
  padding: 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.cta-right::before {
  content: '';
  position: absolute; bottom: -80px; right: -60px;
  width: 280px; height: 280px;
  background: rgba(4,4,4,.07);
  border-radius: 50%; pointer-events: none;
}
.cta-right-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(4,4,4,.45); margin-bottom: 14px;
}
.cta-right-phone {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  color: var(--black); line-height: 1.1;
  margin-bottom: 6px; display: block;
}
.cta-right-phone:hover { color: var(--black-3); }
.cta-right-email {
  font-size: .9rem; font-weight: 600; color: rgba(4,4,4,.55);
  margin-bottom: 28px; display: block;
}
.cta-emergency-card {
  display: flex; align-items: center; gap: 12px;
  background: rgba(4,4,4,.1);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
}
.cta-emergency-icon {
  width: 44px; height: 44px;
  background: #dc2626;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.05rem;
  flex-shrink: 0;
  animation: em-pulse 2.5s infinite;
}
@keyframes em-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(220,38,38,.4); }
  50%      { box-shadow: 0 0 0 8px rgba(220,38,38,0); }
}
.cta-emergency-title { font-weight: 700; color: var(--black); font-size: .9rem; }
.cta-emergency-sub   { font-size: .8rem; color: rgba(4,4,4,.5); }

/* ============================================================
   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(--t);
}
.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(--t);
  box-shadow: var(--shadow-lg);
}
.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(--tf);
}
.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 .req { 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(--tf); 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; 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); }

/* ============================================================
   FLOATING — managed by ophc-emergency-float plugin class
   ============================================================ */

/* ============================================================
   AOS
   ============================================================ */
.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; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .hero-inner { padding: 100px 6% 72px; }
  .tab-panel-body { padding: 44px 40px; }
  .why-block { padding: 36px 28px; }
  .cta-left, .cta-right { padding: 64px 48px; }
  .areas-inner { gap: 48px; }
}

@media (max-width: 1024px) {
  .hero-left { width: 66%; clip-path: polygon(0 0,100% 0,91% 100%,0 100%); }
  .hero-right { width: 46%; }
  .services-tab-layout { grid-template-columns: 240px 1fr; }
  .tab-panel-body { padding: 36px 32px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.07); }
  .why-blocks, .why-blocks-row2 { grid-template-columns: 1fr 1fr; }
  .why-blocks .why-block:nth-child(2)     { border-right: none; }
  .why-blocks-row2 .why-block:nth-child(2){ border-right: none; }
  .why-head { grid-template-columns: 1fr; gap: 24px; }
  .areas-inner { grid-template-columns: 1fr; }
  .areas-map-visual { display: none; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-right { padding: 56px 48px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .hero { flex-direction: column; min-height: auto; }
  .hero-left { width: 100%; clip-path: none; min-height: auto; }
  .hero-inner { padding: 100px 24px 64px; max-width: 100%; }
  .hero-right { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .trust-strip-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .services-tab-layout { grid-template-columns: 1fr; }
  .services-tab-nav { flex-direction: row; overflow-x: auto; scrollbar-width: none; }
  .services-tab-nav::-webkit-scrollbar { display: none; }
  .tab-btn { flex-direction: column; align-items: center; text-align: center; padding: 16px 14px; min-width: 90px; border-bottom: none; border-right: 1px solid rgba(255,255,255,.06); }
  .tab-btn::after { display: none; }
  .tab-btn.active::before { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--gold); top:auto; width:100%; }
  .tab-arrow { display: none; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .tab-panel-img { height: 260px; }
  .tab-panel-body { padding: 32px 24px; }
  .tab-services-list { grid-template-columns: 1fr; }
  .testi-featured { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; }
  .testi-feat-stars { flex-direction: row; align-items: center; }
  .testi-grid { grid-template-columns: 1fr; }
  .why-blocks, .why-blocks-row2 { grid-template-columns: 1fr; }
  .why-block { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .why-block:last-child { border-bottom: none; }
  .why-blocks { border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
  .why-blocks-row2 { border-radius: 0 0 var(--radius-xl) var(--radius-xl); }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cities-grid { grid-template-columns: 1fr; }
  .checker-form { flex-direction: column; }
  .cta-left, .cta-right { padding: 64px 32px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .services-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.95rem; }
  h2 { font-size: 1.6rem; }
  .section-pad { padding: 64px 0; }
  .stats-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .process-steps { grid-template-columns: 1fr; }
  .testi-featured { padding: 28px 20px; }
  .testi-featured-quote { font-size: 1rem; }
}