/* ============================================
   BALDWIN PREAUX WASH
   Clean, warm, professional home-service design
   ============================================ */

:root {
  /* Warm, trustworthy palette */
  --green-primary: #1B7A2B;
  --green-dark: #145F20;
  --green-light: #FDB813;
  --green-soft: #E8F5E9;
  --green-softer: #F1F8F2;
  --orange-accent: #ED5829;
  --orange-soft: #FFF3EE;

  /* Light, clean backgrounds */
  --white: #FFFFFF;
  --off-white: #FAFBFC;
  --light-gray: #F3F4F6;
  --border-color: #E5E7EB;
  --border-light: #F0F0F0;

  /* Text */
  --text-dark: #1A1D21;
  --text-body: #4B5563;
  --text-muted: #9CA3AF;
  --text-light: #FFFFFF;

  /* Functional */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-green: 0 4px 20px rgba(27,122,43,0.2);
  --transition: all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white); color: var(--text-dark);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ---- LOADER (Bubble Wave) ---- */
.loader-wrapper {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  overflow: hidden;
}
.loader-wrapper.hidden {
  animation: loader-wave-out 0.8s ease-in-out forwards;
}
@keyframes loader-wave-out {
  0% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 100% 0); opacity: 0; visibility: hidden; pointer-events: none; }
}
.loader-bubbles {
  position: absolute; inset: 0; pointer-events: none;
}
.loader-bubble {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(27,122,43,0.12), rgba(27,122,43,0.04));
  animation: bubble-float 3s ease-in-out infinite;
}
.loader-bubble:nth-child(1) { width: 80px; height: 80px; left: 10%; top: 60%; animation-delay: 0s; animation-duration: 2.5s; }
.loader-bubble:nth-child(2) { width: 50px; height: 50px; left: 25%; top: 75%; animation-delay: 0.3s; animation-duration: 3s; }
.loader-bubble:nth-child(3) { width: 120px; height: 120px; right: 15%; top: 50%; animation-delay: 0.1s; animation-duration: 2.8s; }
.loader-bubble:nth-child(4) { width: 40px; height: 40px; right: 30%; top: 70%; animation-delay: 0.5s; animation-duration: 2.2s; }
.loader-bubble:nth-child(5) { width: 65px; height: 65px; left: 50%; top: 55%; animation-delay: 0.2s; animation-duration: 3.2s; }
.loader-bubble:nth-child(6) { width: 35px; height: 35px; left: 70%; top: 80%; animation-delay: 0.4s; animation-duration: 2.6s; }
.loader-bubble:nth-child(7) { width: 90px; height: 90px; left: 40%; top: 30%; animation-delay: 0.15s; animation-duration: 2.9s; }
.loader-bubble:nth-child(8) { width: 45px; height: 45px; right: 5%; top: 25%; animation-delay: 0.35s; animation-duration: 3.1s; }
@keyframes bubble-float {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-30px) scale(1.1); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 0.6; }
}
.loader-wave {
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  overflow: hidden;
}
.loader-wave svg {
  position: absolute; bottom: 0; width: 200%; height: 100%;
  animation: wave-move 3s ease-in-out infinite;
}
@keyframes wave-move {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-25%); }
}
.loader-center {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.loader-droplets {
  display: flex; gap: 8px; margin-top: 4px;
}
.loader-droplet {
  width: 10px; height: 10px; border-radius: 50%;
  background: #FBB717;
  animation: droplet-bounce 1.4s ease-in-out infinite;
}
.loader-droplet:nth-child(2) { animation-delay: 0.15s; background: var(--green-light); }
.loader-droplet:nth-child(3) { animation-delay: 0.3s; }
.loader-droplet:nth-child(4) { animation-delay: 0.45s; background: var(--green-light); }
@keyframes droplet-bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1.2); opacity: 1; }
}
.loader-logo { width: 72px; height: 72px; border-radius: 16px; filter: drop-shadow(0 4px 12px rgba(27,122,43,0.2)); }
.loader-text { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.8rem; color: #FBB717; letter-spacing: 3px; text-transform: uppercase; }

/* ---- NAVIGATION ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
  background: rgba(255,255,255,0.9); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  padding: 12px 40px;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 48px; width: 48px; object-fit: contain; border-radius: 8px; }
.nav-logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem; font-weight: 700; color: var(--text-dark); line-height: 1.2; white-space: nowrap;
}
.nav-logo-text span { color: #FBB717; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--text-body); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; transition: color 0.2s ease;
}
.nav-links a:hover { color: #FBB717; }
.nav-cta-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-dark) !important; font-weight: 700 !important;
  font-size: 0.95rem !important;
}
.nav-cta-phone i { color: #FBB717; }
.nav-cta {
  background: #FBB717 !important; color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 50px;
  font-weight: 600 !important; font-size: 0.85rem !important;
  transition: var(--transition); box-shadow: var(--shadow-green);
}
.nav-cta:hover { background: var(--green-dark) !important; transform: translateY(-1px); }
.nav-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text-dark); transition: 0.3s; border-radius: 2px; }

@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 85%; height: 100vh;
    background: var(--white); flex-direction: column;
    justify-content: center; gap: 24px; padding: 40px;
    transition: right 0.35s ease; box-shadow: var(--shadow-lg);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.15rem; }
}

/* ---- HERO ---- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--off-white);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 40%, rgba(27,122,43,0.08) 100%);
}

/* Subtle water droplet particles */
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%; opacity: 0;
  background: #FBB717;
  animation: drop-particle 5s infinite;
}
@keyframes drop-particle {
  0% { opacity: 0; transform: translateY(-10vh) scale(0.3); }
  15% { opacity: 0.15; }
  100% { opacity: 0; transform: translateY(110vh) scale(0.8); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 650px; padding: 0 40px;
  margin-left: 8%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-soft); border: 1px solid rgba(27,122,43,0.15);
  padding: 8px 18px; border-radius: 50px; margin-bottom: 24px;
  font-size: 0.8rem; color: #FBB717; font-weight: 600;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-badge i { font-size: 0.75rem; color: #FFB800; }
.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800; line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-title .highlight {
  color: #FBB717;
  position: relative;
}
.hero-title .highlight::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
  height: 8px; background: rgba(76,175,80,0.2); border-radius: 4px; z-index: -1;
}
.hero-subtitle {
  font-size: 1.1rem; color: var(--text-body);
  max-width: 520px; margin-bottom: 36px; line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.35s both;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.5s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FBB717; color: var(--white);
  padding: 16px 32px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: var(--transition); box-shadow: var(--shadow-green);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(27,122,43,0.3); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--text-dark);
  padding: 16px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  border: 2px solid var(--border-color);
  transition: var(--transition); cursor: pointer;
}
.btn-secondary:hover { border-color: #FBB717; color: #FBB717; }

/* Hero content container */
.hero-content-box {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-radius: var(--radius-xl); padding: 48px 44px 40px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

/* Hero trust pills */
.hero-pills {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px;
  animation: fadeInUp 0.6s ease 0.55s both;
}
.hero-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border-color);
  padding: 10px 20px; border-radius: 50px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.hero-pill:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.hero-pill-icon {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-pill-icon.google { background: #F1F3F4; }
.hero-pill-icon.google img { width: 18px; height: 18px; }
.hero-pill-icon.location { background: var(--green-soft); color: #FBB717; font-size: 0.85rem; }
.hero-pill-text { line-height: 1.3; }
.hero-pill-title { font-weight: 700; font-size: 0.82rem; color: var(--text-dark); }
.hero-pill-sub { font-size: 0.72rem; color: var(--text-muted); }
.hero-pill-stars { display: flex; gap: 2px; margin-left: auto; }
.hero-pill-stars i { color: #FFB800; font-size: 0.6rem; }

/* Hero social proof faces cluster */
.hero-social-proof {
  display: flex; align-items: center; gap: 14px; margin-top: 28px;
  animation: fadeInUp 0.6s ease 0.55s both;
}
.hero-faces {
  display: flex; align-items: center;
}
.hero-faces img {
  width: 40px; height: 40px; border-radius: 50%; border: 2.5px solid var(--white);
  object-fit: cover; margin-left: -10px; box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  position: relative;
}
.hero-faces img:first-child { margin-left: 0; }
.hero-faces .face-count {
  width: 40px; height: 40px; min-width: 40px; border-radius: 50%; border: 2.5px solid var(--white);
  background: #FBB717; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 800; margin-left: -10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12); position: relative;
  aspect-ratio: 1; overflow: hidden; padding: 0;
}
.hero-social-text { line-height: 1.3; }
.hero-social-text .social-label { font-weight: 700; font-size: 0.85rem; color: var(--text-dark); }
.hero-social-text .social-rating { font-size: 0.75rem; color: #FBB717; font-weight: 600; }
.hero-social-text .social-rating i { color: #FFB800; font-size: 0.6rem; }

/* Hero trust badges */
.hero-trust {
  display: flex; align-items: center; gap: 20px; margin-top: 24px;
  animation: fadeInUp 0.6s ease 0.7s both;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-muted); font-weight: 500;
}
.hero-trust-item i { color: #FBB717; font-size: 1rem; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- STATS BAR ---- */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #FBB717;
}
.stat-item {
  padding: 36px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 2.2rem; font-weight: 800; color: var(--white);
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

@media (max-width: 768px) {
  .stats-bar { grid-template-columns: repeat(4, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { padding: 24px 16px; }
  .stat-number { font-size: 1.8rem; }
}

/* ---- SECTION SHARED ---- */
section { padding: 100px 40px; position: relative; }
@media (max-width: 768px) { section { padding: 60px 20px; } }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: #FBB717; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-label i { font-size: 0.7rem; }
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800;
  line-height: 1.12; margin-bottom: 16px; color: var(--text-dark);
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-body); max-width: 560px; line-height: 1.7;
}
.container { max-width: 1200px; margin: 0 auto; }

/* ---- INTERACTIVE HOUSE ---- */
.house-section {
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.house-section .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.house-visual {
  position: relative; aspect-ratio: 3/4; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); max-height: 600px;
}
.house-visual img { width: 100%; height: 100%; object-fit: cover; }
.house-hotspot {
  position: absolute; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5;
}
.house-hotspot .pulse-ring {
  position: absolute; width: 48px; height: 48px;
  border: 2px solid #FBB717; border-radius: 50%;
  animation: hotspot-pulse 2s infinite;
}
.house-hotspot .dot {
  width: 18px; height: 18px; background: #FBB717;
  border-radius: 50%; position: relative; z-index: 1;
  box-shadow: 0 2px 8px rgba(27,122,43,0.4);
  border: 3px solid var(--white);
}
@keyframes hotspot-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}
.hotspot-roof { top: 12%; left: 48%; }
.hotspot-siding { top: 38%; left: 22%; }
.hotspot-driveway { top: 78%; left: 45%; }

.house-info-panel {
  background: var(--white); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}
.house-info-panel .info-tag {
  display: inline-block; background: var(--green-soft); color: #FBB717;
  padding: 4px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
}
.house-info-panel h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark);
}
.house-info-panel p { color: var(--text-body); line-height: 1.7; margin-bottom: 18px; font-size: 0.95rem; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pros h4 { color: #FBB717; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.cons h4 { color: var(--orange-accent); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.pros li, .cons li { color: var(--text-body); font-size: 0.88rem; list-style: none; padding: 3px 0; display: flex; align-items: center; gap: 8px; }
.pros li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #FBB717; font-size: 0.65rem; }
.cons li::before { content: '\f071'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--orange-accent); font-size: 0.65rem; }

@media (max-width: 768px) {
  .house-section .container { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
}

/* ---- SERVICES ---- */
.services-section { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 48px;
}
.service-card {
  background: var(--white); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition); position: relative; overflow: hidden;
  text-decoration: none; color: var(--text-dark);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: #FBB717;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: rgba(27,122,43,0.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--green-soft); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem; color: #FBB717;
}
.service-card h3 { font-family: 'Sora'; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--text-body); font-size: 0.9rem; line-height: 1.6; }
.service-card .arrow {
  display: inline-flex; align-items: center; gap: 6px; color: #FBB717;
  font-size: 0.85rem; font-weight: 600; margin-top: 16px; transition: gap 0.3s ease;
}
.service-card:hover .arrow { gap: 12px; }

/* ---- BEFORE / AFTER ---- */
.ba-section { background: var(--off-white); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.ba-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 24px; margin-top: 48px; }
.ba-slider {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 16/10; cursor: col-resize; box-shadow: var(--shadow-md);
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); transition: clip-path 0.05s linear; }
.ba-slider .ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
  background: var(--white); z-index: 5;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
  transition: left 0.05s linear;
}
.ba-slider .ba-divider::after {
  content: '\f337'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  background: var(--white); color: #FBB717; width: 40px; height: 40px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.ba-tag {
  position: absolute; top: 12px; padding: 6px 14px; border-radius: 6px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; z-index: 6;
}
.ba-tag.before { left: 12px; background: rgba(237,88,41,0.9); color: var(--white); }
.ba-tag.after { right: 12px; background: rgba(27,122,43,0.9); color: var(--white); }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--white); }
.testimonial-wrapper { position: relative; }
.testimonial-track {
  display: flex; gap: 24px; overflow-x: auto; padding: 20px 4px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; scroll-behavior: smooth;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-color);
  background: var(--white); color: var(--text-dark); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12); transition: all 0.2s ease;
  font-size: 0.9rem;
}
.testimonial-nav:hover { background: #FBB717; color: var(--white); border-color: #FBB717; }
.testimonial-nav.prev { left: -22px; }
.testimonial-nav.next { right: -22px; }
.testimonial-nav:disabled { opacity: 0.3; pointer-events: none; }
@media (max-width: 768px) {
  .testimonial-nav.prev { left: -6px; }
  .testimonial-nav.next { right: -6px; }
  .testimonial-nav { width: 36px; height: 36px; font-size: 0.8rem; }
}
.testimonial-card {
  flex: 0 0 360px; scroll-snap-align: start;
  background: var(--white); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: #FFB800; font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text { color: var(--text-body); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: #FBB717; display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: 0.85rem; overflow: hidden; flex-shrink: 0;
}
.testimonial-avatar img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.testimonial-google-badge {
  display: flex; align-items: center; gap: 6px; margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--border-light); font-size: 0.75rem; color: var(--text-muted);
}
.testimonial-google-badge img { width: 16px; height: 16px; }
.testimonial-name { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); }
.testimonial-location { color: var(--text-muted); font-size: 0.8rem; }

/* ---- SERVICE AREAS ---- */
.areas-section { background: var(--off-white); border-top: 1px solid var(--border-light); }
.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 12px; margin-top: 40px;
}
.area-chip {
  background: var(--white); border: 1px solid var(--border-color);
  padding: 14px 16px; border-radius: var(--radius-sm);
  text-align: center; font-size: 0.9rem; font-weight: 500;
  transition: var(--transition); cursor: pointer; text-decoration: none; color: var(--text-dark);
}
.area-chip:hover {
  background: var(--green-soft); border-color: #FBB717;
  color: #FBB717; transform: translateY(-2px); box-shadow: var(--shadow-sm);
}

/* ---- QUOTE SECTION ---- */
.quote-section {
  background: var(--green-softer);
  border-top: 1px solid rgba(27,122,43,0.1);
}
.quote-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.quote-embed {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-lg);
  min-height: 500px;
}
.quote-embed iframe { width: 100%; height: 540px; border: none; }
@media (max-width: 768px) { .quote-section .container { grid-template-columns: 1fr; } }

.quote-features { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.quote-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 1rem; color: var(--text-body);
}
.quote-feature i { color: #FBB717; font-size: 1.1rem; width: 20px; text-align: center; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: #FBB717; padding: 60px 40px; text-align: center;
}
.cta-banner h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--white); margin-bottom: 12px;
}
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 24px; }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: #FBB717;
  padding: 16px 36px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: var(--transition); border: none; cursor: pointer;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* ---- FOOTER ---- */
.footer {
  background: #1A1D21; padding: 60px 40px 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  max-width: 1200px; margin: 0 auto;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; margin-top: 16px; }
.footer h4 {
  font-family: 'Sora'; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer a {
  color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.9rem;
  display: block; padding: 4px 0; transition: color 0.2s;
}
.footer a:hover { color: var(--white); }
.footer .nav-logo-text { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { font-size: 1.1rem; color: rgba(255,255,255,0.4); }
.footer-socials a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-content { margin-left: 0; padding: 0 16px; }
  .hero-content-box { padding: 32px 24px 28px; }
  .hero-pills { flex-direction: column; gap: 10px; }
  .hero-trust { flex-direction: row; gap: 10px; flex-wrap: wrap; }
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Utilities */
.text-green { color: #FBB717; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== ENHAALED MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
    /* Navigation mobile enhancements */
    .nav { padding: 12px 16px !important; }
    .nav-logo img { height: 36px !important; width: 36px !important; }
    .nav-logo-text { font-size: 0.72rem !important; }
    .nav-toggle { display: flex !important; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 1001; }
    .nav-toggle span { width: 24px; height: 2.5px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s ease; display: block; }
    .nav-links {
        display: none !important;
        position: fixed !important; top: 0 !important; left: 0 !important;
        right: 0 !important; bottom: 0 !important; width: 100% !important;
        height: 100vh !important; background: rgba(255,255,255,0.98) !important;
        backdrop-filter: blur(20px) !important; -webkit-backdrop-filter: blur(20px) !important;
        flex-direction: column !important; justify-content: center !important;
        align-items: center !important; gap: 20px !important; z-index: 999 !important;
        padding: 20px !important;
    }
    .nav-links.open { display: flex !important; }
    .nav-links a { font-size: 1.15rem !important; padding: 10px 16px !important; }
    .nav-cta { margin-top: 10px !important; padding: 14px 28px !important; font-size: 1rem !important; }

    /* Hero sections */
    .hero, .page-hero { min-height: auto !important; padding-top: 80px !important; padding-bottom: 40px !important; }
    .page-hero { padding: 100px 16px 40px !important; }
    .page-hero-content h1, .hero-content h1 { font-size: 1.7rem !important; line-height: 1.2 !important; }
    .hero-sub, .page-hero-content p { font-size: 0.95rem !important; }
    .hero-ctas { flex-direction: column !important; gap: 12px !important; align-items: stretch !important; }
    .hero-ctas a, .hero-ctas .btn-primary, .hero-ctas .btn-outline { width: 100% !important; text-align: center !important; justify-content: center !important; }
    .hero-content-box { margin-top: 0 !important; }
    .hero-trust { flex-direction: row !important; gap: 10px !important; flex-wrap: wrap !important; }
    .hero-trust-item { font-size: 0.72rem !important; white-space: nowrap !important; }

    /* Section spacing */
    section { padding: 48px 16px !important; }
    .section-title { font-size: 1.5rem !important; }
    .section-subtitle { font-size: 0.9rem !important; }

    /* Grid layouts */
    .services-grid, .work-grid, .blog-grid, .benefits-grid, .reviews-grid,
    .content-grid, .quote-section .container { 
        grid-template-columns: 1fr !important; gap: 20px !important; 
    }
    .stats-bar { grid-template-columns: repeat(4, 1fr) !important; gap: 0 !important; }

    /* Cards */
    .service-card, .work-card, .blog-card { border-radius: 12px !important; }
    .service-card-body, .work-card-body { padding: 16px !important; }

    /* Footer */
    .footer { padding: 36px 16px 20px !important; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
    .footer-bottom { flex-direction: column !important; gap: 12px !important; text-align: center !important; }

    /* CTA Banner */
    .cta-banner { padding: 36px 16px !important; }
    .cta-banner h2 { font-size: 1.3rem !important; }
    .cta-banner p { font-size: 0.9rem !important; }
    .btn-white, .btn-primary { padding: 14px 24px !important; font-size: 0.95rem !important; }

    /* Text readability */
    body { font-size: 15px !important; }
    p { font-size: 0.95rem !important; line-height: 1.65 !important; }
    h2 { font-size: 1.4rem !important; }
    h3 { font-size: 1.1rem !important; }

    /* Touch targets - minimum 44px */
    a, button { min-height: 44px; }
    .nav-links a { min-height: 44px !important; display: flex !important; align-items: center !important; }

    /* Prevent horizontal scroll */
    html, body { overflow-x: hidden !important; max-width: 100vw !important; }
    img, video, iframe { max-width: 100% !important; }

    /* Quote embed - hide on mobile, show button instead */
    .quote-embed { display: none !important; }
    .quote-mobile-btn { display: block !important; }

    /* FAQ */
    .faq-question { padding: 16px !important; font-size: 0.9rem !important; line-height: 1.4 !important; }
    .faq-answer { padding: 0 16px !important; font-size: 0.85rem !important; max-height: 0 !important; overflow: hidden !important; }
    .faq-item.open .faq-answer { max-height: 400px !important; padding: 0 16px 16px !important; }
    .faq-item { margin-bottom: 8px !important; }
    .faq-grid { margin-top: 24px !important; }

    /* Quote embed */
    .quote-embed { min-height: 480px !important; }
    .quote-embed iframe { height: 500px !important; }

    /* Testimonials */
    .testimonial-card { padding: 20px !important; }
    .testimonial-text { font-size: 0.9rem !important; }

    /* Area chips */
    .area-chips { gap: 8px !important; }
    .area-chip { padding: 10px 16px !important; font-size: 0.82rem !important; }

    /* FAQ */
    .faq-question { padding: 16px !important; font-size: 0.95rem !important; }
    .faq-answer { padding: 0 16px 16px !important; font-size: 0.9rem !important; }

    /* Before/After slider */
    .ba-section .container { grid-template-columns: 1fr !important; }
    .ba-card { height: 250px !important; }

    /* Content sections */
    .content-body { padding: 0 !important; }
    .content-body h2 { font-size: 1.25rem !important; margin-top: 28px !important; }
    .content-body ul, .content-body ol { padding-left: 20px !important; }
    .content-body li { font-size: 0.9rem !important; margin-bottom: 8px !important; }

    /* Breadcrumb */
    .breadcrumb { font-size: 0.78rem !important; }

    /* Pagination */
    .pagination { flex-wrap: wrap !important; gap: 6px !important; }
    .page-btn { min-width: 38px !important; height: 38px !important; font-size: 0.82rem !important; }
}

@media (max-width: 480px) {
    .nav-logo-text { font-size: 0.65rem !important; }
    .page-hero-content h1, .hero-content h1 { font-size: 1.4rem !important; }
    .section-title { font-size: 1.3rem !important; }
    .stats-bar { grid-template-columns: 1fr !important; }
    .stat-item { border-right: none !important; border-bottom: 1px solid var(--border-light) !important; }
    .hero-trust { flex-direction: row !important; gap: 8px !important; flex-wrap: wrap !important; }
    .trust-badges { flex-direction: column !important; align-items: center !important; gap: 8px !important; }
}
/* ===== END MOBILE OPTIMIZATION ===== */

/* ---- TRUST BADGE BAR ---- */
.trust-badge-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 18px 40px;
}
.trust-badge-bar .container {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-badge-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 600; color: var(--text-dark);
  white-space: nowrap;
}
.trust-badge-icon {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.trust-badge-icon.shield { background: var(--green-soft); color: #FBB717; }
.trust-badge-icon.star { background: #FFF8E1; color: #FFB800; }
.trust-badge-icon.check { background: #E3F2FD; color: #1976D2; }
.trust-badge-icon.heart { background: #FCE4EC; color: #E91E63; }
.trust-badge-item .badge-sub {
  font-size: 0.7rem; color: var(--text-muted); font-weight: 400;
  display: block; margin-top: 1px;
}
@media (max-width: 768px) {
  .trust-badge-bar { padding: 14px 16px; }
  .trust-badge-bar .container {
    gap: 16px; justify-content: center;
  }
  .trust-badge-item { font-size: 0.78rem; gap: 8px; }
  .trust-badge-icon { width: 32px; height: 32px; font-size: 0.85rem; }
}
@media (max-width: 480px) {
  .trust-badge-bar .container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  }
}

/* ---- FAQ SECTION (HOMEPAGE) ---- */
.home-faq-section {
  background: var(--white);
  border-top: 1px solid var(--border-light);
}
.faq-grid {
  max-width: 800px; margin: 40px auto 0;
}
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(27,122,43,0.25); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; cursor: pointer; gap: 16px;
  font-weight: 600; font-size: 0.95rem; color: var(--text-dark);
  background: var(--white); transition: background 0.2s;
}
.faq-question:hover { background: var(--off-white); }
.faq-question i {
  color: #FBB717; transition: transform 0.3s; font-size: 0.8rem;
  flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; padding: 0 24px;
  color: var(--text-body); font-size: 0.9rem; line-height: 1.7;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ---- QUOTE MOBILE BUTTON (hidden on desktop) ---- */
.quote-mobile-btn {
  display: none; margin-top: 28px;
}
.quote-mobile-btn a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--orange-accent); color: var(--white);
  padding: 18px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1.05rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(237,88,41,0.3);
  transition: var(--transition);
  font-family: "Sora", sans-serif;
}
.quote-mobile-btn a:hover { background: #d94d20; transform: translateY(-2px); }

/* ---- CHAT WIDGET ---- */
.chat-widget-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #FBB717; color: var(--white);
  border: none; cursor: pointer; font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(27,122,43,0.35);
  transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.chat-widget-btn:hover {
  background: var(--green-dark);
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(27,122,43,0.45);
}
.chat-widget-btn .chat-badge {
  position: absolute; top: -2px; right: -2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--orange-accent); border: 2px solid var(--white);
}
.chat-panel {
  position: fixed; bottom: 90px; right: 24px; z-index: 901;
  width: 340px; max-height: 440px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 10px 50px rgba(0,0,0,0.18);
  border: 1px solid var(--border-color);
  transform: scale(0.9) translateY(10px); opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  overflow: hidden;
}
.chat-panel.open {
  transform: scale(1) translateY(0); opacity: 1;
  pointer-events: all;
}
.chat-panel-header {
  background: #FBB717; color: var(--white);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 12px;
}
.chat-panel-header .chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.chat-panel-header .chat-header-text h4 {
  font-family: 'Sora', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 2px;
}
.chat-panel-header .chat-header-text p {
  font-size: 0.72rem; opacity: 0.8;
}
.chat-panel-close {
  margin-left: auto; background: none; border: none;
  color: rgba(255,255,255,0.7); cursor: pointer; font-size: 1rem;
  padding: 4px;
}
.chat-panel-close:hover { color: var(--white); }
.chat-panel-body {
  padding: 20px;
}
.chat-bubble {
  background: var(--green-soft); border-radius: 12px 12px 12px 4px;
  padding: 14px 16px; margin-bottom: 16px;
  font-size: 0.88rem; color: var(--text-dark); line-height: 1.6;
}
.chat-form { display: flex; flex-direction: column; gap: 10px; }
.chat-form input, .chat-form textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border-color);
  border-radius: var(--radius-sm); font-size: 0.85rem;
  font-family: 'Inter', sans-serif; transition: border 0.2s;
  background: var(--white); color: var(--text-dark);
}
.chat-form input:focus, .chat-form textarea:focus {
  outline: none; border-color: #FBB717;
}
.chat-form textarea { resize: none; height: 60px; }
.chat-form button {
  background: #FBB717; color: var(--white);
  border: none; padding: 11px 20px; border-radius: 50px;
  font-weight: 600; font-size: 0.85rem; cursor: pointer;
  transition: var(--transition);
}
.chat-form button:hover { background: var(--green-dark); }
.chat-success {
  text-align: center; padding: 20px 0;
}
.chat-success i { font-size: 2.5rem; color: #FBB717; margin-bottom: 12px; }
.chat-success h4 { font-family: 'Sora', sans-serif; font-size: 1rem; margin-bottom: 6px; }
.chat-success p { font-size: 0.85rem; color: var(--text-body); }
@media (max-width: 768px) {
  .chat-widget-btn { bottom: 80px; right: 16px; width: 50px; height: 50px; font-size: 1.15rem; }
  .chat-panel { bottom: 140px; right: 16px; width: calc(100vw - 32px); max-width: 340px; }
}

/* ---- STICKY MOBILE CTA ---- */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--white);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 10px 16px;
}
.sticky-mobile-cta .sticky-cta-inner {
  display: flex; gap: 10px; max-width: 500px; margin: 0 auto;
}
.sticky-mobile-cta .sticky-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 16px; border-radius: 50px; font-weight: 700;
  font-size: 0.85rem; text-decoration: none; transition: var(--transition);
  border: none; cursor: pointer;
}
.sticky-btn-call {
  background: var(--white); color: #FBB717;
  border: 2px solid #FBB717 !important;
}
.sticky-btn-call:hover { background: var(--green-soft); }
.sticky-btn-quote {
  background: #FBB717; color: var(--white);
  box-shadow: var(--shadow-green);
}
.sticky-btn-quote:hover { background: var(--green-dark); }
@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
  .chat-widget-btn { bottom: 76px; }
  .chat-panel { bottom: 136px; }
  body { padding-bottom: 64px; }
}

</style>
<style>
.faq-answer{visibility:hidden;opacity:0}
.faq-item.open .faq-answer{visibility:visible;opacity:1}
@media(max-width:768px){
.hero-trust{flex-wrap:nowrap !important;gap:6px !important;justify-content:center !important}
.hero-trust-item{font-size:0.6rem !important;gap:4px !important}
.hero-trust-item i{font-size:0.55rem !important}
.hero-social-proof{gap:10px !important;margin-top:18px !important}
.hero-faces img{width:30px !important;height:30px !important;margin-left:-8px !important}
.hero-faces img:first-child{margin-left:0 !important}
.hero-faces .face-count{width:30px !important;height:30px !important;min-width:30px !important;font-size:0.5rem !important;margin-left:-8px !important}
.hero-social-text .social-label{font-size:0.75rem !important}
.hero-social-text .social-rating{font-size:0.65rem !important}
.hero-pills{gap:8px !important;margin-top:14px !important}
.hero-pill{padding:8px 12px !important}
.hero-pill-title{font-size:0.7rem !important}
.hero-pill-sub{font-size:0.6rem !important}
.hero-subtitle{font-size:0.88rem !important}
.stats-bar{grid-template-columns:repeat(4,1fr) !important;gap:0 !important;padding:12px 0 !important}
.stat-item{padding:10px 4px !important;border-right:1px solid rgba(255,255,255,0.15) !important;border-bottom:none !important}
.stat-item:last-child{border-right:none !important}
.stat-number{font-size:1.1rem !important}
.stat-label{font-size:0.5rem !important;letter-spacing:0.3px !important}
.faq-answer{padding:0 16px !important;font-size:0.85rem !important;max-height:0 !important;overflow:hidden !important;visibility:hidden !important;opacity:0 !important}
.faq-item.open .faq-answer{max-height:400px !important;padding:0 16px 16px !important;visibility:visible !important;opacity:1 !important}
.faq-item{margin-bottom:10px !important;border-radius:10px !important;border:1px solid var(--border-color) !important}
}
@media(max-width:480px){
.stats-bar{grid-template-columns:repeat(4,1fr) !important;gap:0 !important;padding:12px 0 !important}
.hero-faces img{width:26px !important;height:26px !important;margin-left:-6px !important}
.hero-faces .face-count{width:26px !important;height:26px !important;min-width:26px !important;font-size:0.45rem !important;margin-left:-6px !important}
.hero-social-text .social-label{font-size:0.68rem !important}
.hero-social-text .social-rating{font-size:0.6rem !important}
.stat-item{padding:8px 2px !important}
.stat-number{font-size:0.9rem !important}
.stat-label{font-size:0.42rem !important}
}
</style>
<style>
        .hero { position: relative !important; overflow: hidden !important; }
        .hero > *:not(.hero-video):not(.hero-overlay) { position: relative; z-index: 2; }
        .hero .container { position: relative; z-index: 2; }
        .hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
        .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.45); z-index: 1; }
        .hero h1, .hero h2, .hero p, .hero .hero-subtitle { color: #fff !important; }
        .hero .highlight { color: #FDB813 !important; }
    </style>
<style>
        .hero-content-box{background:transparent!important;backdrop-filter:none!important;-webkit-backdrop-filter:none!important;border:none!important;box-shadow:none!important;border-radius:0!important;padding:0!important;max-width:800px!important}
        .hero-overlay{background:linear-gradient(180deg,rgba(26,26,46,0.75) 0%,rgba(26,26,46,0.6) 100%)!important}
        .hero-content-box h1,.hero-content-box h2{color:#fff!important;font-size:3rem!important;font-weight:800!important;line-height:1.15!important;text-shadow:0 2px 8px rgba(0,0,0,0.4)!important}
        .hero-content-box p,.hero-content-box .hero-subtitle{color:rgba(255,255,255,0.92)!important;font-size:1.15rem!important;text-shadow:0 1px 4px rgba(0,0,0,0.3)!important}
        .hero-content-box .highlight{color:#FDB813!important}
        .hero-content-box .hero-pill{background:rgba(255,255,255,0.12)!important;color:#fff!important;border:1px solid rgba(255,255,255,0.2)!important}
        .hero-content-box .hero-pill .pill-icon{color:#FDB813!important}
</style>
<style>
        .hero-content-box .btn-primary {
            background: #FDB813 !important;
            color: #1a1a2e !important;
            font-weight: 700 !important;
        }
        .hero-content-box .btn-secondary {
            background: transparent !important;
            color: #fff !important;
            border: 2px solid #fff !important;
            font-weight: 600 !important;
        }
        .hero-content-box .btn-secondary:hover {
            background: rgba(255,255,255,0.1) !important;
        }
        .hero-content-box .social-label,
        .hero-content-box .social-rating {
            color: #fff !important;
        }
        .hero-content-box .hero-features span {
            color: rgba(255,255,255,0.9) !important;
        }
        .hero-content-box .hero-features .feature-icon {
            color: #FDB813 !important;
        }
</style>
<style>
        .hero-overlay{background:linear-gradient(90deg,rgba(26,26,46,0.92) 0%,rgba(26,26,46,0.85) 40%,rgba(26,26,46,0.4) 70%,rgba(26,26,46,0.1) 100%)!important}
        .hero-content-box .highlight{background:linear-gradient(135deg,#FDB813 0%,#FFD54F 50%,#FDB813 100%)!important;-webkit-background-clip:text!important;-webkit-text-fill-color:transparent!important;background-clip:text!important;font-weight:900!important}
        .hero-content-box .hero-pill{background:rgba(255,255,255,0.95)!important;color:#1a1a2e!important;border:none!important}
        .hero-content-box .hero-pill .pill-icon{color:#FDB813!important;-webkit-text-fill-color:#FDB813!important}
        .hero-content-box .hero-pill span{color:#1a1a2e!important}
        .hero-content-box .hero-pill .pill-text{color:#1a1a2e!important}
        .hero-content-box h1,.hero-content-box h2{font-size:3.2rem!important;line-height:1.2!important}
</style>
<style>
        .hero-content-box .btn-secondary{background:linear-gradient(135deg,#FDB813 0%,#f5a623 100%)!important;color:#1a1a2e!important;border:none!important;font-weight:700!important;font-size:1.1rem!important;padding:14px 28px!important;box-shadow:0 4px 15px rgba(253,184,19,0.4)!important}
        .hero-content-box .btn-secondary:hover{box-shadow:0 6px 20px rgba(253,184,19,0.6)!important;transform:translateY(-1px)}
</style>
<style>
        .hero-content-box{max-width:680px!important}
        .hero-content-box h1,.hero-content-box h2{font-size:2.8rem!important;line-height:1.18!important;letter-spacing:-0.5px!important}
        @media(min-width:768px){
          .hero-content-box h1,.hero-content-box h2{font-size:3.4rem!important}
          .hero-content-box{max-width:750px!important}
        }
</style>
<style>
        @media(min-width:768px){
          .hero-content-box{max-width:850px!important}
          .hero-content-box h1,.hero-content-box h2{font-size:3.1rem!important;white-space:normal!important}
        }
        @media(min-width:1024px){
          .hero-content-box{max-width:900px!important}
          .hero-content-box h1,.hero-content-box h2{font-size:3.5rem!important}
        }
</style>
<style>
        .hero-content-box .highlight{background:none!important;-webkit-background-clip:border-box!important;-webkit-text-fill-color:#FDB813!important;background-clip:border-box!important;color:#FDB813!important;font-weight:900!important;text-decoration:underline!important;text-decoration-color:#FDB813!important;text-underline-offset:4px!important;text-decoration-thickness:3px!important;text-shadow:none!important;box-shadow:none!important;filter:none!important;background-image:none!important}
</style>
<style>
        .bpw-quote-card{background:linear-gradient(135deg,#1a1a2e 0%,#16213e 100%);border-radius:16px;padding:40px 32px;text-align:center;color:#fff;box-shadow:0 8px 32px rgba(0,0,0,0.2)}
        .bpw-quote-card .bpw-quote-icon{font-size:2.5rem;color:#FDB813;margin-bottom:16px}
        .bpw-quote-card h3{font-size:1.6rem;font-weight:800;margin-bottom:12px;color:#fff}
        .bpw-quote-card p{color:rgba(255,255,255,0.8);font-size:1rem;line-height:1.6;margin-bottom:24px}
        .bpw-quote-btn{display:inline-block;background:linear-gradient(135deg,#FDB813 0%,#f5a623 100%);color:#1a1a2e!important;font-size:1.25rem;font-weight:700;padding:16px 36px;border-radius:50px;text-decoration:none;box-shadow:0 4px 15px rgba(253,184,19,0.4);transition:all 0.3s ease}
        .bpw-quote-btn:hover{box-shadow:0 6px 25px rgba(253,184,19,0.6);transform:translateY(-2px)}
        .bpw-quote-btn i{margin-right:8px}
        .bpw-quote-perks{margin-top:20px;display:flex;justify-content:center;gap:20px;flex-wrap:wrap}
        .bpw-quote-perks span{color:rgba(255,255,255,0.7);font-size:0.9rem}
        .bpw-quote-perks i{color:#FDB813;margin-right:6px}
