/*
Theme Name: HandySuperman
Theme URI: https://handysuperman.co.uk
Author: Ideal Trade Ltd
Author URI: https://handysuperman.co.uk
Description: Custom single-page landing theme for HandySuperman - handyman services in Leicester. Includes before/after portfolio gallery (requires Advanced Custom Fields plugin).
Version: 1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: handysuperman
*/

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #2D7A3A;
  --green-light: #3D9E4A;
  --green-pale: #EAF5EC;
  --orange: #E8650A;
  --orange-light: #FF7A1A;
  --orange-pale: #FFF0E6;
  --yellow: #F5C518;
  --dark: #1A1A1A;
  --dark2: #2E2E2E;
  --mid: #555;
  --light: #F7F7F5;
  --white: #FFFFFF;
  --border: #E0E0DC;
  --radius: 14px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Bricolage Grotesque', sans-serif; line-height: 1.15; }
a { text-decoration: none; color: inherit; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; font-weight: 800;
  display: flex; align-items: center; gap: 4px;
}

.handy-word {
  background: var(--green); color: white;
  padding: 2px 9px 3px; border-radius: 6px;
  font-size: 20px;
}

.nav-logo .brand { color: var(--dark); }

.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}

.nav-links a { font-size: 15px; font-weight: 500; color: var(--mid); transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }

.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  padding: 10px 22px; border-radius: 50px;
  font-weight: 600 !important; font-size: 14px !important;
  transition: background 0.2s, transform 0.1s !important;
}
.nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); }
.nav-phone {
  color: var(--green) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
}
.nav-phone:hover { color: var(--green-light) !important; }

/* HERO */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 75% 15%, rgba(78,232,122,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 15% 85%, rgba(232,101,10,0.14) 0%, transparent 55%),
    linear-gradient(135deg, #16401E 0%, #2D7A3A 48%, #15521F 100%);
  color: white;
  padding: 80px 5% 90px;
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 70%);
}

.hero-canvas { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-icon { position: absolute; opacity: 0.16; }
.fi-house  { animation: floatSway 7s ease-in-out infinite; }
.fi-brush  { animation: floatSway 5.5s ease-in-out infinite 1s; }
.fi-wrench { animation: floatSway 6.2s ease-in-out infinite 0.5s; }
.fi-roller { animation: floatSway 8s ease-in-out infinite 2s; }
.fi-leaf   { animation: floatSway 5s ease-in-out infinite 1.5s; }
.fi-hammer { animation: floatSway 6.8s ease-in-out infinite 0.8s; }
.fi-star   { animation: floatSway 4.5s ease-in-out infinite 2.5s; }
.fi-drop   { animation: floatSway 7.5s ease-in-out infinite 0.3s; }
.fi-tree   { animation: floatSway 9s ease-in-out infinite 1.2s; }
.fi-gear   { animation: floatSway 6s ease-in-out infinite 3s; }

@keyframes floatSway {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%       { transform: translateY(-20px) rotate(4deg); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 13px; font-weight: 500;
  padding: 7px 16px; border-radius: 50px; margin-bottom: 28px;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px;
  background: #4EE87A; border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; margin-bottom: 20px;
  max-width: 720px; letter-spacing: -0.5px;
}

.word-handy {
  display: inline-block;
  background: var(--yellow); color: var(--dark);
  padding: 0 14px 2px; border-radius: 8px;
  font-style: normal; position: relative; top: -2px;
}

.hero h1 em { font-style: normal; color: var(--yellow); }

.hero p {
  font-size: 18px; color: rgba(255,255,255,0.82);
  max-width: 560px; margin-bottom: 36px; line-height: 1.7;
}
.hero-sub-brand {
  font-size: 17px !important;
  color: var(--yellow) !important;
  font-weight: 600;
  margin-bottom: 14px !important;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-top: 22px;
}
.hero-trust span {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.btn-primary {
  background: var(--orange); color: white;
  padding: 14px 30px; border-radius: 50px;
  font-weight: 600; font-size: 15px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s; display: inline-block;
  box-shadow: 0 0 0 0 rgba(232,101,10,0.5);
  animation: ctaPulse 2.8s ease-in-out infinite;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); animation: none; }
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,101,10,0.45); }
  70%  { box-shadow: 0 0 0 14px rgba(232,101,10,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,101,10,0); }
}
@media (prefers-reduced-motion: reduce) { .btn-primary { animation: none; } }

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.5); color: white;
  padding: 12px 28px; border-radius: 50px; font-weight: 500; font-size: 15px;
  transition: border-color 0.2s, background 0.2s; display: inline-block;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

.hero-stats { display: flex; gap: 32px; margin-top: 44px; flex-wrap: wrap; }

/* Hero two-column layout */
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  max-width: 1280px;
}
@media(max-width: 900px){
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { display: none; }
}

/* Hero card (glassmorphism) */
.hero-card {
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 22px;
  padding: 38px 30px 30px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  text-align: center;
  position: relative;
  max-width: 380px;
  margin-left: auto;
}
.hc-seal {
  position: absolute; top: -18px; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow); color: var(--dark);
  border-radius: 50px; padding: 8px 20px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  white-space: nowrap;
}
.hc-seal-stars { font-size: 13px; letter-spacing: 2px; line-height: 1; color: #C99A00; }
.hc-seal-text { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.hc-emblem {
  margin: 14px auto 18px;
  width: 96px; height: 96px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hc-emblem svg { width: 66px; height: 66px; animation: floatSway 6s ease-in-out infinite; }
.hc-title {
  color: var(--dark); font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px; font-weight: 800; margin-bottom: 20px;
}
.hc-chips {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 9px; margin-bottom: 24px;
}
.hc-chip {
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--dark2); font-size: 13px; font-weight: 600;
  padding: 9px 10px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.hc-cta {
  display: block; background: var(--orange); color: white;
  padding: 14px; border-radius: 50px;
  font-weight: 700; font-size: 15px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 8px 20px rgba(232,101,10,0.3);
}
.hc-cta:hover { background: var(--orange-light); transform: translateY(-2px); }
.hc-foot { color: var(--mid); font-size: 12px; font-weight: 500; margin-top: 14px; }

.stat { border-left: 3px solid rgba(255,255,255,0.25); padding-left: 16px; }
.stat-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 26px; font-weight: 800; color: var(--yellow); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* HIGHLIGHT STRIP */
.highlight-strip {
  background: var(--orange);
  padding: 18px 5%;
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.strip-item {
  display: flex; align-items: center; gap: 10px;
  color: white; font-size: 15px; font-weight: 500;
}
.strip-item svg { width: 22px; height: 22px; flex-shrink: 0; }

/* TRUST / ACCREDITATION BAR */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 22px 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.trust-label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--mid);
}
.trust-logos {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}
.trust-logo {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--dark);
  background: var(--light);
  border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 8px;
  transition: border-color 0.2s, transform 0.15s;
}
.trust-logo:hover { border-color: var(--green); transform: translateY(-1px); }
.tl-check { color: var(--green); font-weight: 900; }
.tl-star { color: var(--yellow); font-size: 12px; letter-spacing: 1px; }
@media(max-width:768px){
  .trust-bar { gap: 14px; padding: 18px 4%; }
  .trust-logo { font-size: 12px; padding: 6px 10px; }
}

/* FEATURED SERVICES */
.featured-section { background: var(--green-pale); padding: 72px 5%; }

.section-tag {
  display: inline-block;
  background: var(--green); color: white;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 16px;
}
.section-tag.orange { background: var(--orange); }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; margin-bottom: 12px; letter-spacing: -0.3px;
}
.section-sub { font-size: 17px; color: var(--mid); max-width: 520px; margin-bottom: 48px; }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.featured-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.featured-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.featured-card.primary-card { border: 2px solid var(--green); }

.card-icon-bar { height: 8px; }
.card-icon-bar.green { background: var(--green); }
.card-icon-bar.orange { background: var(--orange); }
.card-icon-bar.yellow { background: var(--yellow); }

.card-body { padding: 28px; }

.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 26px;
}
.card-icon.green { background: var(--green-pale); }
.card-icon.orange { background: var(--orange-pale); }

.card-title { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.card-desc { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 18px; }

.card-tag {
  display: inline-block;
  background: var(--green-pale); color: var(--green);
  font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 18px;
}
.card-tag.orange-tag { background: var(--orange-pale); color: var(--orange); }

.card-list { list-style: none; margin-bottom: 22px; }
.card-list li {
  font-size: 14px; color: var(--dark2);
  padding: 5px 0; border-bottom: 1px solid #F0F0EE;
  display: flex; align-items: center; gap: 8px;
}
.card-list li:last-child { border-bottom: none; }

.check {
  width: 16px; height: 16px; background: var(--green); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: white; font-size: 10px;
}
.check.orange-check { background: var(--orange); }

.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green); font-size: 14px; font-weight: 600;
  transition: gap 0.2s;
}
.card-link.orange-link { color: var(--orange); }
.card-link:hover { gap: 10px; }

/* SERVICE TILES */
.all-services { padding: 80px 5%; background: white; }
.services-header { text-align: center; max-width: 600px; margin: 0 auto 52px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }

.service-tile {
  background: var(--light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.service-tile:hover { background: var(--green-pale); border-color: var(--green); transform: translateY(-2px); }
.service-tile:nth-child(even):hover { background: var(--orange-pale); border-color: var(--orange); }
.tile-icon { font-size: 30px; margin-bottom: 12px; }
.tile-name { font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.tile-desc { font-size: 13px; color: var(--mid); }

/* GALLERY SECTION */
.gallery-section { padding: 80px 5%; background: var(--light); }
.gallery-header { text-align: center; max-width: 640px; margin: 0 auto 52px; }

/* 8 category tiles */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media(max-width:768px){ .cat-grid { grid-template-columns: repeat(2,1fr); } }

.cat-tile {
  background: white;
  border-radius: var(--radius);
  padding: 20px 16px 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  color: var(--dark);
  text-align: center;
  position: relative;
  border: 2px solid var(--border);
}
.cat-tile:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.10); border-color: var(--green); }
.cat-tile.active { border-color: var(--green); background: var(--green-pale); box-shadow: 0 4px 16px rgba(45,122,58,0.15); }
.cat-tile.active::after {
  content: ''; position: absolute; left: 0; top: 12px; bottom: 12px;
  width: 4px; border-radius: 4px; background: var(--green);
}
.cat-tile.active .ct-name { color: var(--green); }
.ct-icon { font-size: 26px; margin-bottom: 8px; }
.ct-name { font-family: 'Bricolage Grotesque',sans-serif; font-size: 14px; font-weight: 700; line-height: 1.3; color: var(--dark); }

/* photo grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-grid.hidden { display: none; }
.gallery-cta {
  text-align: center; margin-top: 44px;
  padding-top: 8px;
}
.gallery-cta p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px; font-weight: 700; color: var(--dark);
  margin-bottom: 16px;
}

.ba-more-wrap {
  grid-column: 1 / -1;
  display: flex; justify-content: center;
  margin-top: 8px;
}
.ba-more-btn {
  background: white; border: 2px solid var(--green);
  color: var(--green); font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 11px 28px; border-radius: 50px;
  cursor: pointer; transition: all 0.2s;
}
.ba-more-btn:hover { background: var(--green); color: white; }
.ba-more-btn.open { border-color: var(--mid); color: var(--mid); }
.ba-more-btn.open:hover { background: var(--mid); color: white; }

/* Before/After slider card */
.ba-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  background: #ddd;
}

.ba-after {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.ba-before-wrap {
  position: absolute; inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
  -webkit-clip-path: inset(0 50% 0 0);
}
.ba-before {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.ba-divider {
  position: absolute; top: 0; bottom: 0;
  left: 50%; width: 4px;
  background: white;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
  z-index: 4;
}

.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: white;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  border: 3px solid var(--green);
  z-index: 5; pointer-events: none;
  font-size: 18px; color: var(--green); font-weight: 900; gap: 3px;
}
.ba-handle span { line-height: 1; }

.ba-card:focus { outline: 3px solid var(--orange); outline-offset: 3px; }
.ba-card:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* Enlarge button on each card */
.ba-expand {
  position: absolute; top: 12px; right: 12px; z-index: 7;
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,0.92); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--dark); line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.22);
  transition: background 0.15s, transform 0.15s;
}
.ba-expand:hover { background: #fff; transform: scale(1.08); }

/* Enlarge modal */
.ba-modal {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.86);
  align-items: center; justify-content: center; padding: 24px;
}
.ba-modal.open { display: flex; }
.ba-modal-inner { width: min(92vw, 920px); }
.ba-modal-card { width: 100%; aspect-ratio: 4/3; cursor: col-resize; }
.ba-modal-close {
  position: absolute; top: 18px; right: 26px;
  font-size: 38px; line-height: 1; color: #fff;
  background: none; border: none; cursor: pointer; z-index: 1001;
}
.ba-modal-close:hover { color: var(--yellow); }

.ba-label {
  position: absolute; bottom: 14px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 20px;
  pointer-events: none; z-index: 6;
}
.ba-label-before { left: 12px; background: rgba(0,0,0,0.55); color: white; }
.ba-label-after  { right: 12px; background: white; color: var(--dark); }

.ba-badge {
  position: absolute; top: 12px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  z-index: 7; white-space: nowrap; pointer-events: none;
}
.badge-garden  { background: var(--green); color: white; }
.badge-painting{ background: var(--orange); color: white; }
.badge-repair  { background: #1565C0; color: white; }

.ba-hint {
  position: absolute; inset: 0; z-index: 8;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.15);
  transition: opacity 0.5s;
  pointer-events: none;
}
.ba-hint.gone { opacity: 0; }
.ba-hint-inner {
  background: rgba(0,0,0,0.62); color: white;
  font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 30px;
  display: flex; align-items: center; gap: 8px;
}

/* LIGHTBOX */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 10px; object-fit: contain; }
.lb-close {
  position: absolute; top: 20px; right: 28px;
  color: white; font-size: 36px; cursor: pointer;
  font-family: sans-serif; line-height: 1; background: none; border: none;
}
.lb-caption {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.8); font-size: 14px;
  background: rgba(0,0,0,0.5); padding: 6px 18px; border-radius: 20px;
  white-space: nowrap;
}

/* WHY US */
.why-section {
  background: var(--green-pale);
  padding: 80px 5%;
}
.why-header { max-width: 560px; margin-bottom: 52px; }
.why-header .section-tag { }
.why-header .section-title { color: var(--dark); }
.why-header .section-sub { color: var(--mid); margin-bottom: 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
}
.why-card:nth-child(1)::before { background: var(--green); }
.why-card:nth-child(2)::before { background: var(--orange); }
.why-card:nth-child(3)::before { background: var(--yellow); }
.why-card:nth-child(4)::before { background: var(--green-light); }
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.09);
  border-color: var(--green);
}

.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.why-icon svg { width: 26px; height: 26px; }
.wi-green  { background: var(--green-pale); }
.wi-orange { background: var(--orange-pale); }
.wi-yellow { background: #FFF9E0; }
.wi-blue   { background: #EBF3FF; }

.why-card h3 {
  font-size: 17px; font-weight: 700;
  margin-bottom: 8px; color: var(--dark);
}
.why-card p {
  font-size: 14px; color: var(--mid); line-height: 1.75;
}

/* AREA COVERAGE */
.area-section {
  padding: 80px 5%;
  background: white;
}
.area-inner {
  max-width: 1100px; margin: 0 auto;
}
.area-top {
  display: grid; grid-template-columns: 1fr 1.8fr;
  gap: 52px; align-items: start;
}
@media(max-width:768px){ .area-top { grid-template-columns: 1fr; } }

.area-info h2 {
  font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 800; color: var(--dark);
  margin-bottom: 12px; letter-spacing: -0.3px;
}
.area-info p {
  font-size: 15px; color: var(--mid);
  line-height: 1.8; margin-bottom: 28px;
}
.area-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.area-tag {
  background: var(--green-pale);
  border: 1px solid rgba(45,122,58,0.2);
  color: var(--green);
  padding: 7px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 5px;
  transition: background 0.2s, transform 0.15s;
  cursor: default;
}
.area-tag:hover { background: var(--green); color: white; transform: translateY(-1px); }
.area-tag.active-tag { background: var(--green); color: white; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(45,122,58,0.3); }
.area-tag::before { content: '📍'; font-size: 11px; }

.area-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  height: 420px;
  position: relative;
  border: 1px solid var(--border);
}
.area-map-wrap iframe {
  width: 100%; height: 100%; border: none; display: block;
}

/* pin legend */
.map-legend {
  position: absolute; bottom: 16px; left: 16px;
  background: white; border-radius: 10px;
  padding: 10px 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  font-size: 12px; font-weight: 600; color: var(--dark);
  display: flex; align-items: center; gap: 7px;
  pointer-events: none;
}
.map-pin-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(45,122,58,0.25);
}

/* FAQ */
.faq-section {
  padding: 90px 5%;
  background: white;
  position: relative; overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,122,58,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.faq-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 2; }

.faq-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: start; margin-bottom: 48px;
}
@media(max-width:768px){ .faq-top { grid-template-columns: 1fr; gap: 28px; } }

.faq-intro .section-tag { margin-bottom: 16px; }

.faq-intro h2 {
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  font-weight: 800; color: var(--dark);
  letter-spacing: -0.3px; margin-bottom: 14px; line-height: 1.15;
}
.faq-intro p { font-size: 16px; color: var(--mid); line-height: 1.75; margin-bottom: 28px; }

.faq-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.faq-stat { border-left: 3px solid var(--green); padding-left: 14px; }
.faq-stat-num {
  font-family: 'Bricolage Grotesque',sans-serif;
  font-size: 22px; font-weight: 800; color: var(--green);
}
.faq-stat-label { font-size: 12px; color: var(--mid); margin-top: 1px; }

.faq-cta-box {
  background: var(--green-pale);
  border: 1px solid rgba(45,122,58,0.18);
  border-radius: var(--radius);
  padding: 28px;
}
.faq-cta-box p { font-size: 14px; color: var(--mid); margin-bottom: 18px; line-height: 1.7; }
.faq-cta-box a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: white;
  padding: 11px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  margin-right: 10px; margin-bottom: 10px;
}
.faq-cta-box a:hover { background: var(--orange-light); transform: translateY(-1px); }
.faq-cta-box a.wa-link { background: var(--green); color: white; }
.faq-cta-box a.wa-link:hover { background: var(--green-light); }

/* accordion */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--green); }
.faq-item.open {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(45,122,58,0.10);
  background: white;
}

.faq-q {
  padding: 18px 20px;
  font-weight: 600; font-size: 15px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; color: var(--dark); gap: 12px;
}
.faq-item.open .faq-q { color: var(--green); }

.faq-q-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--green);
  flex-shrink: 0; transition: background 0.2s, transform 0.25s;
  line-height: 1;
}
.faq-item.open .faq-q-icon {
  background: var(--green); color: white; transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 14px 20px 18px;
  font-size: 14px; color: var(--mid);
  line-height: 1.85;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }
.faq-a strong { color: var(--dark); }

/* HOW IT WORKS */
.process-section { padding: 80px 5%; background: var(--green-pale); }
.process-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1000px; margin: 0 auto;
}
@media(max-width:768px){ .process-grid { grid-template-columns: 1fr; gap: 36px; } }
.process-step { text-align: center; position: relative; }
.process-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green); color: white;
  font-family: 'Bricolage Grotesque',sans-serif;
  font-size: 28px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 2;
  box-shadow: 0 6px 18px rgba(45,122,58,0.3);
}
.process-step:nth-child(2) .process-num { background: var(--orange); box-shadow: 0 6px 18px rgba(232,101,10,0.3); }
.process-step:nth-child(3) .process-num { background: var(--yellow); box-shadow: 0 6px 18px rgba(245,197,24,0.35); }
.process-line {
  position: absolute; top: 32px; left: 50%;
  width: 100%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--green) 0, var(--green) 6px, transparent 6px, transparent 12px);
  z-index: 1; opacity: 0.4;
}
@media(max-width:768px){ .process-line { display: none; } }
.process-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.process-step p { font-size: 14px; color: var(--mid); line-height: 1.7; max-width: 260px; margin: 0 auto; }

/* REVIEWS */
.reviews-section { padding: 80px 5%; background: var(--light); }
.reviews-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.reviews-rating {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 14px; flex-wrap: wrap; justify-content: center;
}
.reviews-rating .stars { color: var(--yellow); font-size: 22px; letter-spacing: 2px; }
.rating-text { font-size: 14px; color: var(--mid); font-weight: 500; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
@media(max-width:768px){ .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.08); }
.review-card { position: relative; }
.review-verified {
  position: absolute; top: 18px; right: 18px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--green); background: var(--green-pale);
  padding: 4px 9px; border-radius: 20px;
  display: flex; align-items: center; gap: 4px;
}
.rv-check { font-weight: 900; }
.review-stars { color: var(--yellow); font-size: 16px; letter-spacing: 1px; margin-bottom: 14px; }
.review-text { font-size: 14px; color: var(--dark2); line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.review-card:nth-child(2) .review-avatar { background: var(--orange); }
.review-card:nth-child(3) .review-avatar { background: var(--green-light); }
.review-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.review-loc { font-size: 12px; color: var(--mid); }
.reviews-link {
  display: inline-block;
  color: var(--green); font-weight: 700; font-size: 15px;
  border-bottom: 2px solid var(--green); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.reviews-link:hover { color: var(--orange); border-color: var(--orange); }

/* CTA BAND */
.cta-band { background: var(--orange); padding: 60px 5%; text-align: center; color: white; }
.cta-band h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 800; margin-bottom: 12px; letter-spacing: -0.3px; }
.cta-band p { font-size: 17px; opacity: 0.88; margin-bottom: 30px; }
.btn-white {
  background: white; color: var(--orange);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 15px; display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

/* CONTACT */
.contact-section { padding: 80px 5%; background: var(--light); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 52px; align-items: start; }
.contact-info h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; margin-bottom: 12px; letter-spacing: -0.3px; }
.contact-info p { font-size: 15px; color: var(--mid); margin-bottom: 32px; line-height: 1.8; }
.info-items { display: flex; flex-direction: column; gap: 16px; }
.info-item { display: flex; align-items: flex-start; gap: 14px; }
.info-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.info-icon.orange { background: var(--orange-pale); }
.info-label { font-size: 12px; color: var(--mid); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
.info-value { font-size: 15px; font-weight: 600; color: var(--dark); }
.info-value a { color: var(--green); }

.contact-form {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border); padding: 36px;
}
.form-title { font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--mid); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--dark);
  background: var(--light); transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green); background: white;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  background: var(--green); color: white; border: none;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; width: 100%; transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--green-light); transform: translateY(-1px); }

/* FOOTER */
footer { background: var(--dark2); color: rgba(255,255,255,0.75); padding: 52px 5% 24px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 13px; line-height: 1.8; max-width: 280px; color: rgba(255,255,255,0.55); margin-top: 12px; }
.footer-col h4 { font-size: 14px; font-weight: 600; color: white; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { font-size: 13px; color: rgba(255,255,255,0.55); padding: 4px 0; }
.footer-col ul li a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: #4EE87A; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-badge {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; font-size: 13px;
  color: rgba(255,255,255,0.7); font-weight: 500;
}
.footer-stars { color: var(--yellow); letter-spacing: 1px; }
.footer-cta {
  display: inline-block; margin-top: 18px;
  background: var(--orange); color: white;
  padding: 11px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.footer-cta:hover { background: var(--orange-light); transform: translateY(-1px); }

/* WHATSAPP */
/* MOBILE STICKY CTA */
.mobile-cta { display: none; }
@media (max-width: 768px) {
  .mobile-cta {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 998;
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
    padding: 10px 12px;
    gap: 10px;
  }
  .mcta-call, .mcta-quote {
    flex: 1; text-align: center;
    padding: 13px; border-radius: 50px;
    font-weight: 700; font-size: 14px;
  }
  .mcta-call { background: var(--green-pale); color: var(--green); border: 1.5px solid var(--green); }
  .mcta-quote { background: var(--orange); color: white; }
  .wa-float { bottom: 80px; }
  body { padding-bottom: 70px; }
}

.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 0;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.05); }
.wa-label {
  background: #25D366; color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 12px 18px 12px 16px;
  border-radius: 50px 0 0 50px;
  white-space: nowrap;
  opacity: 0; transform: translateX(10px);
  transition: opacity 0.25s, transform 0.25s; pointer-events: none;
}
.wa-float:hover .wa-label { opacity: 1; transform: translateX(0); pointer-events: auto; }
.wa-btn {
  width: 58px; height: 58px; background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wa-btn svg { width: 28px; height: 28px; fill: white; }
.wa-pulse {
  position: absolute; top: 0; right: 0;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.4; } 100% { transform: scale(1.7); opacity: 0; } }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links li:nth-child(1),
  .nav-links li:nth-child(2),
  .nav-links li:nth-child(3),
  .nav-links li:nth-child(4) { display: none; }
  .nav-links { gap: 10px; }
  .nav-phone { font-size: 13px !important; }
  .nav-cta { padding: 9px 16px !important; font-size: 13px !important; }
  nav { padding: 0 4%; }
  .nav-logo { font-size: 18px; }
  .handy-word { font-size: 16px; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .highlight-strip { gap: 20px; }
  .hero-stats { gap: 24px; }
  .wa-label { display: none; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .faq-section { padding: 60px 5%; }
}