/* ============================================================
   MyCleanHaven – Design System
   Brand: Orange #FA903E | Green #8EC961 | Dark #1D1E20
   ============================================================ */

/* ---------- Booking Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
.modal-overlay.open {
  opacity: 1; visibility: visible;
}
.modal-card,
.modal-box {
  background: #fff; border-radius: 20px;
  width: 100%; max-width: 460px;
  padding: 40px 36px 36px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
  transform: translateY(24px) scale(.97);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.modal-overlay.open .modal-card,
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: #f3f4f6; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #6b7280;
  transition: background .2s, color .2s;
}
.modal-close:hover { background: #e5e7eb; color: #1D1E20; }
.modal-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(142,201,97,.12); color: #74b048;
  border: 1px solid rgba(142,201,97,.3);
  padding: 4px 12px; border-radius: 50px;
  font-size: .75rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; margin-bottom: 14px;
}
.modal-card h2 {
  font-size: 1.55rem; font-weight: 800; color: #1D1E20;
  line-height: 1.2; margin-bottom: 6px;
}
.modal-card .modal-sub {
  font-size: .9rem; color: #6b7280; margin-bottom: 28px; line-height: 1.6;
}
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .82rem; font-weight: 700; color: #1D1E20; letter-spacing: .02em;
}
.form-group input {
  padding: 13px 16px; border: 1.5px solid #e5e7eb; border-radius: 10px;
  font-size: .95rem; color: #1D1E20; background: #f9fafb;
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none; width: 100%; font-family: inherit;
}
.form-group input:focus {
  border-color: #FA903E; background: #fff;
  box-shadow: 0 0 0 3px rgba(250,144,62,.12);
}
.form-group input::placeholder { color: #9ca3af; }
.form-group input.error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }
.field-error { font-size: .78rem; color: #ef4444; font-weight: 600; display: none; }
.field-error.show { display: block; }
.modal-submit {
  width: 100%; padding: 15px; background: #FA903E; color: #fff;
  border: none; border-radius: 50px; font-size: 1rem; font-weight: 700;
  cursor: pointer; margin-top: 6px; letter-spacing: .02em;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit;
}
.modal-submit:hover:not(:disabled) {
  background: #e07d2f; transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(250,144,62,.4);
}
.modal-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.modal-trust {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 18px; flex-wrap: wrap;
}
.modal-trust span {
  font-size: .78rem; color: #9ca3af; font-weight: 600;
  display: flex; align-items: center; gap: 5px;
}
.modal-trust span::before { content: '✓'; color: #74b048; font-weight: 800; }

/* Success state */
.modal-success {
  display: none; flex-direction: column; align-items: center;
  text-align: center; padding: 20px 0;
}
.modal-success.show { display: flex; }
.modal-success-icon {
  width: 72px; height: 72px; background: #f0f9e8;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin-bottom: 20px;
  animation: popIn .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.modal-success h3 { font-size: 1.4rem; color: #1D1E20; margin-bottom: 8px; }
.modal-success p  { color: #6b7280; font-size: .95rem; }

/* Spinner */
.spinner {
  width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff; border-radius: 50%;
  animation: spin .7s linear infinite; display: none;
}
.modal-submit.loading .btn-label { display: none; }
.modal-submit.loading .spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 480px) {
  .modal-card, .modal-box { padding: 32px 22px 28px; }
  .modal-card h2, .modal-box h2 { font-size: 1.3rem; }
}

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

:root {
  --orange:    #FA903E;
  --orange-dk: #e07d2f;
  --green:     #8EC961;
  --green-dk:  #74b048;
  --green-lt:  #f0f9e8;
  --dark:      #1D1E20;
  --dark-2:    #262626;
  --dark-3:    #303030;
  --mid:       #454545;
  --gray:      #6b7280;
  --gray-lt:   #e5e7eb;
  --off-white: #F8F9FA;
  --white:     #FFFFFF;
  --font:      'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 4px 20px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); line-height: 1.6; background: var(--white); font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { color: var(--gray); line-height: 1.75; }
.text-white p, .dark-section p { color: rgba(255,255,255,.82); }

/* ---------- Utilities ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }
.text-orange { color: var(--green-dk); }
.text-green  { color: var(--green-dk); }
.text-white  { color: var(--white) !important; }
.bg-dark     { background: var(--dark-2); }
.bg-off      { background: var(--off-white); }
.bg-green-lt { background: var(--green-lt); }
.bg-orange   { background: var(--orange); }
.d-flex      { display: flex; }
.align-center{ align-items: center; }
.gap-sm      { gap: 12px; }
.gap-md      { gap: 24px; }
.gap-lg      { gap: 40px; }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 40px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 700;
  font-size: .95rem; letter-spacing: .02em; border: 2px solid transparent;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(250,144,62,.4); }
.btn-outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-outline-dark {
  background: transparent; color: var(--dark); border-color: var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .875rem; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); border-bottom: 1px solid var(--gray-lt);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 24px; max-width: 1160px; margin: 0 auto; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.3rem; color: var(--dark); }
.nav-logo .logo-icon { width: 38px; height: 38px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; }
.nav-logo-img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 600; font-size: .9rem; color: var(--dark); transition: color var(--transition); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px; background:var(--orange); transition: width var(--transition); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-links a.btn-primary, .nav-links a.btn-primary:hover, .nav-links a.btn-primary.active { color: #fff; }
.nav-links a.btn-primary::after { display: none; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-lt); min-width: 220px; padding: 8px;
  opacity: 0; visibility: hidden; transition: var(--transition); pointer-events: none;
}
/* Bridge pseudo-element fills the gap so mouse doesn't lose hover when crossing */
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
}
/* Open via both CSS hover AND JS .active class (JS provides the 200ms close delay) */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.nav-dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 6px; font-size: .875rem;
  font-weight: 600; color: var(--dark);
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: var(--off-white); color: var(--orange); }

/* Hamburger */
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.nav-mobile { display: none; background: var(--white); padding: 16px 24px 24px; border-top: 1px solid var(--gray-lt); }
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; padding: 10px 0; font-weight: 600; border-bottom: 1px solid var(--gray-lt); }
.nav-mobile a:last-child { border-bottom: none; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 60%);
  color: var(--white); padding: 96px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0;
  width: 45%; background: var(--orange); opacity: .08; clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(142,201,97,.22); color: #fff; border: 1px solid rgba(142,201,97,.55);
  padding: 5px 14px; border-radius: 50px; font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; margin-bottom: 18px;
}
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,.8); margin-bottom: 28px; max-width: 580px; line-height: 1.65; }
.hero-checks { display: flex; flex-direction: column; gap: 6px; margin-top: 24px; }
.hero-checks span { font-size: .88rem; color: rgba(255,255,255,.82); font-weight: 600; }
/* Stats grid (generated pages) — alias to standard stats bar layout */
.stats-grid {
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
}
.stat-number { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(142,201,97,.15); color: var(--green); border: 1px solid rgba(142,201,97,.3);
  padding: 6px 14px; border-radius: 50px; font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--green); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.82); margin-bottom: 32px; max-width: 500px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.9);
}
.hero-trust-item .icon { color: var(--green); font-size: 1rem; }
.hero-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.hero-image img { width: 100%; height: 420px; object-fit: cover; }
.hero-image-placeholder {
  width: 100%; height: 420px; background: var(--dark-3);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; color: rgba(255,255,255,.4); font-size: .9rem;
}
.hero-image-placeholder .ph-icon { font-size: 3rem; }

/* Compact hero for inner pages */
.hero-compact { padding: 64px 0 56px; }
.hero-compact .hero-inner { grid-template-columns: 1fr; max-width: 700px; }
.hero-compact .hero-sub { max-width: 100%; }

/* ---------- Stats Bar ---------- */
.stats-bar { background: var(--orange); color: var(--white); padding: 20px 0; }
.stats-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 40px; border-right: 1px solid rgba(255,255,255,.3);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 1.5rem; font-weight: 800; line-height: 1; color: var(--white); }
.stat-label { font-size: .8rem; font-weight: 600; opacity: .9; line-height: 1.3; color: var(--white); }
/* Stats grid — generated pages (stacked number + label layout) */
.stats-grid {
  display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap;
}
.stats-grid .stat-item {
  flex: 1; min-width: 160px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 14px 32px; gap: 5px;
}
.stat-number { font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label-text, .stats-grid .stat-label { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.88); text-transform: uppercase; letter-spacing: .07em; line-height: 1.3; }

/* ---------- Section Headers ---------- */
.section-header { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-header h2 { margin-bottom: 14px; }
.section-eyebrow {
  display: inline-block; color: var(--green-dk); font-weight: 700;
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-lt);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; font-size: 1.4rem;
  margin-bottom: 16px; flex-shrink: 0;
}
.card-icon-orange { background: rgba(250,144,62,.12); color: var(--orange); }
.card-icon-green  { background: rgba(142,201,97,.15); color: var(--green-dk); }
.card h3 { margin-bottom: 8px; color: var(--dark); }

/* Feature Grid */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

/* ---------- Checklist Grid & Cards ---------- */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.checklist-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  border-top: 4px solid var(--orange);
}
.checklist-card h3 { margin-bottom: 20px; font-size: 1.1rem; display: flex; align-items: center; gap: 8px; }
.checklist-card-addon { border-top-color: var(--green-dk); }
.checklist-note { margin-top: 16px; padding: 12px; background: rgba(0,0,0,.04); border-radius: 8px; font-size: .9rem; }

/* ---------- Checklist Two-Column ---------- */
.checklist-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
}
@media (max-width: 600px) { .checklist-two-col { grid-template-columns: 1fr; } }

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .93rem; font-weight: 500; color: var(--dark);
  background: #f8fafc;
  border-radius: 8px;
  padding: 10px 13px;
  border-left: 3px solid rgba(142,201,97,.5);
  transition: transform .15s ease, background .15s ease;
}
.checklist li:hover { transform: translateX(5px); background: #eef7e6; }
.checklist li::before {
  content: '✓'; min-width: 20px; height: 20px; background: var(--green-lt);
  color: var(--green-dk); border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: .75rem; flex-shrink: 0; margin-top: 1px;
}

/* ---------- Process Steps ---------- */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 30px; left: 15%; right: 15%; height: 2px;
  background: var(--gray-lt); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 60px; height: 60px; background: var(--green-dk); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(116,176,72,.4);
}
.step h3 { margin-bottom: 8px; }

/* ---------- Reviews & Testimonials ---------- */
.reviews-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card,
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 2px 24px rgba(0,0,0,.07);
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: .875rem;
  position: relative;
  overflow: hidden;
}
/* Decorative quote mark */
.review-card::before,
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  bottom: .75rem;
  right: 1.25rem;
  font-size: 5rem;
  color: var(--green);
  opacity: .08;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
/* Author row */
.review-top,
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
/* Avatar */
.review-avatar,
.author-avatar,
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-dk);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .03em;
}
/* Name & location */
.review-name,
.testimonial-name { font-weight: 700; font-size: .95rem; color: var(--dark); line-height: 1.2; }
.review-location { color: #888; font-size: .8rem; margin-top: 2px; }
.testimonial-author strong { font-weight: 700; font-size: .95rem; color: var(--dark); display: block; line-height: 1.3; }
.testimonial-author span { color: #888; font-size: .8rem; display: block; margin-top: 1px; }
/* Google badge */
.review-google {
  margin-left: auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.1);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800;
  color: #4285F4;
  flex-shrink: 0;
}
/* Stars */
.review-stars,
.stars,
.testimonial-stars { color: #FBBC05; font-size: 1rem; letter-spacing: .04em; line-height: 1; }
/* Review text */
.review-text,
.testimonial-text { color: #444; line-height: 1.75; font-size: .96rem; font-style: normal; margin: 0; flex: 1; }
/* Borough hub: plain <p> inside card */
.testimonial-card > p { color: #444; line-height: 1.75; font-size: .96rem; margin: 0; flex: 1; }
/* Simple author line (service pages) */
.review-author { font-size: .85rem; font-weight: 600; color: #888; margin-top: auto; }
.testimonial-verified,
.review-verified { font-size: .75rem; color: var(--green-dk); font-weight: 600; }
/* Reviews section aggregate badge */
.reviews-aggregate {
  display: flex; align-items: center; justify-content: center;
  gap: .625rem; flex-wrap: wrap; margin-bottom: .5rem;
}
.reviews-aggregate-stars { color: #FBBC05; font-size: 1.05rem; letter-spacing: .03em; }
.reviews-aggregate-text { font-size: .875rem; font-weight: 600; color: #555; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-lt); border-radius: var(--radius); margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 700; font-size: 1rem; color: var(--dark); cursor: pointer;
  text-align: left; gap: 16px; transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question.open { color: var(--green-dk); }
.faq-icon { min-width: 24px; font-size: 1.2rem; transition: transform var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; color: var(--gray); line-height: 1.75; }
.faq-answer.open { display: block; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-2), var(--dark));
  color: var(--white); padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(142,201,97,.12) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: 1.05rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary { font-size: 1.05rem; padding: 18px 40px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--off-white); padding: 12px 0; border-bottom: 1px solid var(--gray-lt);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: .85rem; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; color: var(--gray); }
.breadcrumb li a { color: var(--green-dk); font-weight: 600; }
.breadcrumb li a:hover { text-decoration: underline; }
.breadcrumb li::after { content: '/'; color: var(--gray-lt); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb li:last-child { color: var(--dark); font-weight: 600; }

/* ---------- Service Areas Grid ---------- */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.area-pill {
  background: var(--white); border: 1px solid var(--gray-lt); border-radius: 50px;
  padding: 10px 18px; text-align: center; font-weight: 600; font-size: .875rem;
  color: var(--dark); transition: var(--transition); display: block;
}
.area-pill:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.area-pill.current { background: var(--green-lt); border-color: var(--green-dk); color: var(--green-dk); }

/* ---------- Trust Bar ---------- */
.trust-bar { border-top: 1px solid var(--gray-lt); border-bottom: 1px solid var(--gray-lt); padding: 32px 0; }
.trust-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { font-size: 1.6rem; }
.trust-text strong { display: block; font-size: .95rem; color: var(--dark); }
.trust-text span { font-size: .8rem; color: var(--gray); }

/* ---------- Services Overview (Hub) ---------- */
.service-card-big {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 40px;
}
.service-card-big:nth-child(even) { direction: rtl; }
.service-card-big:nth-child(even) > * { direction: ltr; }
.service-card-img { min-height: 320px; background: var(--dark-3); position: relative; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; flex-direction: column; gap: 10px;
  color: rgba(255,255,255,.4); font-size: .9rem; min-height: 320px;
}
.service-card-img-placeholder .ph-icon { font-size: 2.5rem; }
.service-card-content { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.service-card-content h2 { margin-bottom: 14px; }
.service-card-content p { margin-bottom: 24px; }
.service-card-content .checklist { grid-template-columns: 1fr; margin-bottom: 28px; }

/* ---------- Location Hub Cards ---------- */
.location-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.location-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-lt); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.location-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.location-card-header {
  background: var(--dark-2); padding: 32px 28px; color: var(--white);
  position: relative; overflow: hidden;
}
.location-card-header::before {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 100px; height: 100px; background: var(--green); opacity: .2; border-radius: 50%;
}
.location-card-header h3 { color: var(--white); position: relative; z-index: 1; margin-bottom: 4px; }
.location-card-header span { font-size: .85rem; color: rgba(255,255,255,.7); position: relative; z-index: 1; }
.location-card-body { padding: 24px 28px; }
.location-card-links { display: flex; flex-direction: column; gap: 8px; }
.location-card-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-radius: 8px; font-size: .875rem; font-weight: 600;
  color: var(--dark); background: var(--off-white); transition: var(--transition);
}
.location-card-links a:hover { background: var(--green-dk); color: var(--white); }
.location-card-links a .arrow { font-size: .75rem; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: var(--white); padding: 56px 0 0; }
.footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px 48px;
  display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start;
}
.footer-left {}
.footer-brand { margin-bottom: 36px; }
.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-logo-img { height: 32px; width: auto; display: block; }
.footer-brand > p { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.65; max-width: 300px; margin: 0 0 8px; }
.footer-tagline { color: rgba(255,255,255,.35) !important; font-size: .8rem !important; margin: 0 !important; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col h4 { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 14px; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a, .footer-col > a { color: rgba(255,255,255,.68); font-size: .88rem; text-decoration: none; transition: color .2s; display: block; }
.footer-col ul a:hover, .footer-col > a:hover { color: var(--orange); }
.footer-address { color: rgba(255,255,255,.38); font-size: .82rem; margin-top: 12px; line-height: 1.55; }
.footer-map-wrap {
  width: 300px; height: 300px; border-radius: 14px; overflow: hidden; flex-shrink: 0;
  align-self: center; box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.footer-map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 18px 24px;
  max-width: 1160px; margin: 0 auto;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .78rem; }

/* ---------- Green Badge / USP Inline ---------- */
.green-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-lt); color: var(--green-dk); border: 1px solid rgba(142,201,97,.4);
  padding: 4px 12px; border-radius: 50px; font-size: .78rem; font-weight: 700;
}
.orange-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(250,144,62,.1); color: var(--orange); border: 1px solid rgba(250,144,62,.3);
  padding: 4px 12px; border-radius: 50px; font-size: .78rem; font-weight: 700;
}

/* ---------- Two-Column Sections ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-text h2 { margin-bottom: 16px; }
.two-col-text p { margin-bottom: 20px; }
.two-col-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.two-col-img img { width: 100%; height: 380px; object-fit: cover; }
.two-col-img-placeholder {
  width: 100%; height: 380px; background: var(--off-white); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 10px; color: var(--gray); font-size: .9rem; border: 2px dashed var(--gray-lt);
}
.two-col-img-placeholder .ph-icon { font-size: 2.5rem; }

/* ---------- Guarantee Box ---------- */
.guarantee-box {
  background: linear-gradient(135deg, var(--green-lt), rgba(255,255,255,.9));
  border: 2px solid rgba(142,201,97,.4); border-radius: var(--radius-lg);
  padding: 40px; display: flex; align-items: center; gap: 32px;
}
.guarantee-icon { font-size: 3.5rem; flex-shrink: 0; }
.guarantee-text h3 { color: var(--green-dk); margin-bottom: 10px; }
.guarantee-text p { color: var(--gray); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image, .hero-image-placeholder { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .two-col-img, .two-col-img-placeholder { height: 280px; }
  .two-col-img img { height: 280px; }
  .service-card-big { grid-template-columns: 1fr; }
  .service-card-big:nth-child(even) { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-map-wrap { width: 100%; height: 260px; align-self: auto; }
  .stat-item { padding: 8px 20px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 60px 0; }
  .hero { padding: 72px 0 60px; }
  .process-steps::before { display: none; }
  .guarantee-box { flex-direction: column; gap: 20px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { gap: 0; flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); width: 100%; justify-content: center; }
  .stat-item:last-child { border-bottom: none; }
  .trust-items { gap: 24px; }
}

@media (max-width: 480px) {
  .btn-lg { padding: 14px 24px; font-size: .95rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
}

/* ============================================================
   INTERACTIVITY & ANIMATIONS — v2
   ============================================================ */

/* ---------- Scroll-triggered fade-in ---------- */
[data-fade] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.25,.46,.45,.94), transform .65s cubic-bezier(.25,.46,.45,.94);
}
[data-fade].in-view { opacity: 1; transform: translateY(0); }
[data-fade="left"]  { transform: translateX(-32px); }
[data-fade="right"] { transform: translateX(32px); }
[data-fade="left"].in-view, [data-fade="right"].in-view { transform: translateX(0); }
[data-fade][data-delay="1"] { transition-delay: .1s; }
[data-fade][data-delay="2"] { transition-delay: .2s; }
[data-fade][data-delay="3"] { transition-delay: .3s; }
[data-fade][data-delay="4"] { transition-delay: .4s; }
[data-fade][data-delay="5"] { transition-delay: .5s; }

/* ---------- Enhanced card hover ---------- */
.card {
  transition: transform .28s cubic-bezier(.34,1.2,.64,1), box-shadow .28s ease, border-color .2s ease;
  cursor: default;
}
.card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 20px 60px rgba(0,0,0,.13);
  border-color: rgba(250,144,62,.2);
}

/* ---------- Enhanced button interactions ---------- */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity .2s;
  border-radius: inherit;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(0) scale(.97) !important; box-shadow: none !important; }
.btn-primary { transition: background .2s, transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(250,144,62,.45); }

/* ---------- Review / Testimonial card hover ---------- */
.review-card,
.testimonial-card {
  transition: transform .28s cubic-bezier(.34,1.2,.64,1), box-shadow .28s ease;
}
.review-card:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}

/* ---------- Area pill hover ---------- */
.area-pill {
  transition: background .2s ease, color .2s ease, transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
}
.area-pill:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 18px rgba(250,144,62,.25);
}

/* ---------- Location card hover ---------- */
.location-card {
  transition: transform .28s cubic-bezier(.34,1.2,.64,1), box-shadow .28s ease;
}
.location-card:hover { transform: translateY(-8px); box-shadow: 0 20px 56px rgba(0,0,0,.14); }
.location-card-links a {
  transition: background .2s, color .2s, transform .15s, padding-left .2s;
}
.location-card-links a:hover { padding-left: 20px; }

/* ---------- Hero photo background ---------- */
.hero { position: relative; overflow: hidden; }
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,16,18,.92) 0%, rgba(15,16,18,.65) 60%);
  z-index: 1;
}
.hero > .container { position: relative; z-index: 2; }
.hero::before { display: none; } /* remove old pseudo-element */

/* ---------- Stats bar pulse on scroll ---------- */
.stat-num { display: block; transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.stat-item:hover .stat-num { transform: scale(1.12); }

/* ---------- Service card big hover ---------- */
.service-card-big {
  transition: box-shadow .28s ease;
}
.service-card-big:hover { box-shadow: 0 24px 64px rgba(0,0,0,.14); }

/* ---------- FAQ hover ---------- */
.faq-question { transition: background .2s, color .2s, padding-left .2s; }
.faq-question:hover { padding-left: 30px; }

/* ---------- Guarantee box hover ---------- */
.guarantee-box {
  transition: transform .25s ease, box-shadow .25s ease;
}
.guarantee-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(142,201,97,.15);
}

/* ---------- Step hover ---------- */
.step { transition: transform .25s cubic-bezier(.34,1.2,.64,1); }
.step:hover { transform: translateY(-6px); }
.step:hover .step-num { box-shadow: 0 8px 24px rgba(250,144,62,.5); }

/* ============================================================
   NAV — FIXED DROPDOWN (hover-persistent + mobile accordion)
   ============================================================ */

/* Desktop: Services/Locations are button triggers only */
.nav-dropdown-btn {
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-weight: 600; font-size: .9rem; color: var(--dark);
  display: flex; align-items: center; gap: 4px;
  padding: 4px 0; transition: color var(--transition); position: relative;
}
.nav-dropdown-btn:hover, .nav-dropdown.active .nav-dropdown-btn { color: var(--orange); }
.nav-dropdown-btn::after {
  content:''; position:absolute; bottom:-4px; left:0; width:0;
  height:2px; background:var(--orange); transition: width var(--transition);
}
.nav-dropdown.active .nav-dropdown-btn::after,
.nav-dropdown-btn:hover::after { width:100%; }
.nav-dropdown-btn .caret {
  display: inline-block; transition: transform .2s;
  font-size: .7rem;
}
.nav-dropdown.active .nav-dropdown-btn .caret { transform: rotate(180deg); }

/* Dropdown menu active state with slide animation — kept in sync with centering transform */
.nav-dropdown-menu {
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
  transform: translateX(-50%) translateY(0);
}

/* Mobile accordion */
.nav-mobile-group { border-bottom: 1px solid var(--gray-lt); }
.nav-mobile-toggle {
  width: 100%; background: none; border: none; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: .95rem; color: var(--dark);
  padding: 14px 0; display: flex; align-items: center; justify-content: space-between;
  text-align: left;
}
.nav-mobile-toggle .caret { font-size: .8rem; transition: transform .2s; }
.nav-mobile-toggle.open .caret { transform: rotate(180deg); }
.nav-mobile-sub {
  max-height: 0; overflow: hidden;
  transition: max-height .3s cubic-bezier(.25,.46,.45,.94);
}
.nav-mobile-sub.open { max-height: 300px; }
.nav-mobile-sub a {
  display: block; padding: 9px 0 9px 16px;
  font-size: .875rem; font-weight: 600; color: var(--gray);
  border: none !important;
}
.nav-mobile-sub a:hover { color: var(--orange); }

/* Checklist hover handled above */

/* ---------- Image placeholder improvement ---------- */
.hero-image-placeholder, .two-col-img-placeholder, .service-card-img-placeholder {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border: 2px dashed rgba(255,255,255,.1);
}

/* ---------- Trust bar item hover ---------- */
.trust-item {
  transition: transform .25s cubic-bezier(.34,1.2,.64,1);
}
.trust-item:hover { transform: translateY(-4px); }

/* ---------- Smooth page transitions ---------- */
body { animation: pageFadeIn .4s ease; }
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Highlight section on hover (subtle) ---------- */
.section:not(.cta-banner):not(.stats-bar) {
  transition: background .3s ease;
}

/* ---------- Checklist check icon pulse ---------- */
.checklist li::before {
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), background .2s;
}
.checklist li:hover::before { transform: scale(1.15); background: var(--green); color: white; }

/* ── Icon list for two-col content sections ── */
.icon-list { list-style: none; padding: 0; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 1.6rem; }
.icon-list li { display: flex; align-items: flex-start; gap: 1.25rem; }
.icon-list-icon { display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; min-width: 58px; font-size: 30px; background: rgba(250,144,62,.12); border: 1.5px solid rgba(250,144,62,.22); border-radius: 14px; flex-shrink: 0; }
.icon-list li > div { flex: 1; padding-top: 8px; }
.icon-list li strong { display: block; font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.icon-list li p { margin: 0; font-size: 0.93rem; color: var(--gray); line-height: 1.6; }

/* ── Checklist Accordion (mobile) ── */
.checklist-acc-btn {
  display: none;
}
@media (max-width: 767px) {
  .checklist-acc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: rgba(250,144,62,.12);
    border: 1.5px solid rgba(250,144,62,.3);
    border-radius: 50%;
    color: var(--orange);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: background .2s, transform .25s ease;
  }
  .checklist-acc-btn.open {
    background: rgba(250,144,62,.2);
  }
}

/* ── Visual how-steps ── */
.how-steps-visual { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.how-step-card { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.25rem 1.5rem; background: var(--off-white); border-radius: var(--radius-md); border-left: 4px solid var(--primary); }
.how-step-badge { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; min-width: 36px; background: var(--primary); color: #fff; border-radius: 50%; font-size: 1rem; font-weight: 800; }
.how-step-body { flex: 1; }
.how-step-body h4 { margin: 0 0 0.25rem; font-size: 1rem; font-weight: 700; color: var(--dark); }
.how-step-body p { margin: 0; font-size: 0.93rem; color: var(--gray); line-height: 1.5; }
