/* ═══════════════════════════════════════════════════
   TORQUE DRIVING ACADEMY — Premium Green Redesign
   ═══════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────── */
:root {
  --primary:       #0A7A50;
  --primary-dark:  #085C3C;
  --primary-deep:  #07422B;
  --primary-light: #EAF4EF;
  --primary-glow:  rgba(10, 122, 80, 0.12);
  --accent:        #34C472;
  --bg:            #F2F4F0;
  --bg-soft:       #E8EBE5;
  --bg-dark:       #07422B;
  --text:          #1A1F16;
  --text-muted:    #5C6B5A;
  --text-light:    #8FA38C;
  --border:        #DDE3DA;
  --border-soft:   #EBF0E8;
  --success:       #1EA85A;
  --shadow-xs:     0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.05);
  --shadow:        0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.09);
  --shadow-xl:     0 32px 80px rgba(0,0,0,0.10);
  --shadow-green:  0 8px 32px rgba(10, 122, 80, 0.18);
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --font:          'Inter', sans-serif;
  --nav-h:         64px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --t:             0.28s;
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
* { -webkit-tap-highlight-color: transparent; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* prevent horizontal scroll at root level */
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font); }

/* ── Utilities ──────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 4rem; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.35em 1.1em;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; border-radius: var(--radius-sm); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-green);
  border: 2px solid var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(15,143,95,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}
.btn-full { width: 100%; }

/* ════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  inset-block-start: 0;
  left: 0; right: 0;
  height: var(--nav-h);
  z-index: 9998;
  display: flex;
  align-items: center;
  overflow: visible;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img  { height: 120px; width: auto; object-fit: contain; }
.logo-fallback {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
}
.logo-fallback span { color: var(--primary); }
.footer-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-logo-text {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.footer-logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--bg-soft);
}
.nav-cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-green);
  transition: all var(--t) var(--ease);
}
.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15,143,95,0.3);
}

.hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.hero {
  padding-top: var(--nav-h);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,143,95,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  opacity: 0.7;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-title-accent {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.hero-trust-item { display: flex; align-items: center; gap: 0.4rem; }
.hero-trust-item .fas { color: #F59E0B; font-size: 0.75rem; }

/* Mobile stats strip — hidden on desktop, shown on mobile */
.hero-stats-mobile { display: none; }

/* Hero right — image + floating cards */
.hero-right { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.hero-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 6px;
}
.hero-slide-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.hero-slide-dot.active {
  background: #fff;
  width: 20px;
  border-radius: 4px;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(10,59,42,0.45) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Glassmorphism stat cards */
.stat-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  animation: float 4s ease-in-out infinite;
  z-index: 2;
  white-space: nowrap;
}
.stat-card-1 { top: 10%;  left: -2rem;  animation-delay: 0s; }
.stat-card-2 { top: 42%;  right: -2rem; animation-delay: 1.3s; }
.stat-card-3 { bottom: 12%; left: -1rem; animation-delay: 0.7s; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

.stat-card-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.stat-card-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.stat-card-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ════════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}
.trust-title {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-item .fas, .trust-item .fa-solid {
  color: var(--primary);
  font-size: 0.9rem;
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════ */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--t) var(--ease);
  cursor: default;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--primary-glow);
  transform: translateY(-4px);
}
.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  transition: all var(--t);
}
.service-card:hover .service-icon-wrap {
  background: var(--primary);
  color: #fff;
}
.service-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}
.service-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.service-card-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.service-card-list li .fas {
  color: var(--success);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════
   WHY CHOOSE US
   ════════════════════════════════════════════════════ */
.why { background: var(--bg-soft); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-images { position: relative; }
.why-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.why-img-secondary {
  position: absolute;
  width: 52%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg);
  bottom: -2rem;
  right: -2rem;
}
.why-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.why-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ════════════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════════════ */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,59,42,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  opacity: 0;
  transition: opacity var(--t);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(8px);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-lg); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t);
}
.lightbox-close:hover { background: var(--primary); }

/* ════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════ */
.testimonials { background: var(--bg-soft); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--t) var(--ease);
}
.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.testi-header { display: flex; align-items: center; justify-content: space-between; }
.testi-google { color: #9AA0A6; font-size: 1.1rem; }
.testi-stars { display: flex; gap: 0.2rem; }
.testi-stars .fas { color: #F59E0B; font-size: 0.85rem; }
.testi-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name   { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.testi-detail { font-size: 0.78rem; color: var(--text-light); }

/* ════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════ */
.pricing { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.pricing-card-outer {
  position: relative;
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
}
.pricing-card-outer .pricing-card { flex: 1; }
.pricing-popular-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  padding: 0.35em 1.1em;
  border-radius: 100px;
  box-shadow: var(--shadow-green);
}
/* Push non-featured cards down to match */
.pricing-grid > .pricing-card { margin-top: 1.75rem; }

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t) var(--ease);
}
.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-card-featured {
  border-color: var(--primary);
  box-shadow: 0 8px 40px rgba(15,143,95,0.15);
}
.pricing-header {
  padding: 1.75rem 1.75rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.pricing-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.pricing-icon-featured { background: var(--primary); color: #fff; }
.pricing-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.pricing-rate {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-rate span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }

.pricing-packages {
  padding: 1.25rem 1.75rem 0;
  display: flex;
  flex-direction: column;
}
.pkg-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pkg-row:last-child { border-bottom: none; }
.pkg-highlight span:first-child { color: var(--primary); font-weight: 700; }
.pkg-price { font-weight: 700; color: var(--text); }
.pkg-highlight .pkg-price { color: var(--primary); }

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.76rem;
  color: var(--text-light);
  padding: 0.85rem 1.75rem;
  line-height: 1.5;
}
.pricing-note .fas { color: var(--primary); font-size: 0.8rem; margin-top: 1px; flex-shrink: 0; }
.pricing-card .btn {
  margin: 0 1.75rem 1.75rem;
  width: calc(100% - 3.5rem);
}

/* ════════════════════════════════════════════════════
   PROCESS / TIMELINE
   ════════════════════════════════════════════════════ */
.process { background: var(--bg-soft); }
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 130px;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}
.step-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.step-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  color: var(--primary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all var(--t);
  box-shadow: var(--shadow-sm);
}
.process-step.visible .step-icon {
  background: var(--primary-light);
  border-color: var(--primary);
}
.step-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.step-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.process-arrow {
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1rem;
  padding: 0 0.25rem;
  margin-top: 1.85rem;
  opacity: 0.5;
}

/* ════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════ */
.faq { background: var(--bg); }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background var(--t);
  background: var(--bg);
}
.faq-question:hover { background: var(--bg-soft); }
.faq-question.open   { background: var(--bg-soft); color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--t);
}
.faq-question.open .faq-icon {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════ */
.contact { background: var(--bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--t);
  color: var(--text);
}
.contact-method:last-child { border-bottom: none; }
a.contact-method:hover { background: var(--bg-soft); }
.contact-method-wa:hover .contact-method-icon { background: #E8F9EE; color: #25D366; }
.contact-method-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: all var(--t);
}
.contact-method-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.15rem;
}
.contact-method-val {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  word-break: break-all;
  overflow-wrap: anywhere;
}
.traffic-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--t);
}
.traffic-link:hover { border-color: var(--primary); color: var(--primary); }
.traffic-link .fas { color: var(--primary); font-size: 0.8rem; }

/* Form */
.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}
.form-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-size: 0.9rem;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(15,143,95,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 108px; }
.form-success {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--success);
  padding: 0.75rem 1rem;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}
.form-success.show { display: flex; }

/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  padding: 4.5rem 0 2rem;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 1rem; filter: brightness(10); }
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--t);
}
.footer-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer-col a { color: rgba(255,255,255,0.55); transition: color var(--t); }
.footer-col a:hover { color: var(--accent); }
.footer-col li .fas {
  color: var(--primary);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ════════════════════════════════════════════════════
   FLOATING BUTTONS
   ════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 800;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all var(--t) var(--ease);
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
  animation: none;
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 36px rgba(37,211,102,0.65); }
}
.back-top {
  position: fixed;
  bottom: 6.5rem; right: 2rem;
  z-index: 800;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all var(--t) var(--ease);
}
.back-top.visible {
  opacity: 1; transform: translateY(0); pointer-events: all;
}
.back-top:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ════════════════════════════════════════════════════
   RESPONSIVE — TABLET ≤ 1024px
   ════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .why-grid    { gap: 3rem; }
  .hero-inner  { gap: 3rem; }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — SMALL TABLET ≤ 900px
   ════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .section { padding: 72px 0; }

  /* Hero — single column, image below text */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 1.5rem 4rem;
    gap: 2.5rem;
  }
  .hero-left  { order: 1; }
  .hero-right { order: 2; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions  { justify-content: center; }
  .hero-trust    { justify-content: center; }

  /* Stat cards — keep inside image on tablet */
  .stat-card-1 { top: 1rem;  left: 0.75rem; }
  .stat-card-2 { top: 40%;  right: 0.75rem; }
  .stat-card-3 { bottom: 1rem; left: 0.75rem; }

  /* Grids */
  .services-grid     { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  /* Pricing — single column */
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-grid > .pricing-card { margin-top: 0; }
  .pricing-card-outer { padding-top: 1.5rem; }

  /* Why choose us */
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-images { max-width: 480px; margin: 0 auto; padding-bottom: 2.5rem; }
  .why-img-secondary { right: 0; bottom: -0.5rem; }

  /* Gallery, contact */
  .gallery-grid  { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }

  /* Process — 3 columns, no arrows */
  .process-arrow { display: none; }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 768px
   ════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  /* ── Base ─────────────────────────────────────── */
  .logo-img  { height: 56px; }
  .navbar    { height: var(--nav-h); }
  .section   { padding: 56px 0; }
  .container { padding: 0 1.25rem; }
  .section-header { margin-bottom: 2rem; }
  .section-title  { font-size: clamp(1.55rem, 6vw, 2.1rem); }
  .section-desc   { font-size: 0.92rem; }

  /* ── Nav drawer ──────────────────────────────── */
  .hamburger { display: flex; }

  /* Full-screen drawer — slides down from top over everything */
  .nav-links {
    display: flex !important;          /* always rendered, never display:none */
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    height: 100dvh;
    z-index: 9999;
    background: #F2F4F0;
    padding-top: calc(var(--nav-h) + 0.5rem);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 2.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* Hidden: slid fully off screen upward */
    transform: translateY(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    pointer-events: all;
  }

  /* List items fill full width */
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child { border-bottom: none; }

  .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 62px;
    padding: 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    border-radius: 0;
    transition: color 0.2s;
  }
  .nav-link:active { color: var(--primary); }

  .nav-cta {
    display: flex;
    margin-top: 1.5rem;
    min-height: 56px;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 700;
    width: 100%;
  }

  /* ── Hero ────────────────────────────────────── */
  .hero-inner { padding: 1.75rem 1.25rem 3rem; gap: 2rem; }
  .hero-right { max-width: 100%; }
  .hero-title    { font-size: clamp(1.9rem, 7.5vw, 2.6rem); margin-bottom: 0.85rem; }
  .hero-eyebrow  { font-size: 0.72rem; margin-bottom: 1rem; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 1.75rem; max-width: 100%; }
  .hero-actions  { flex-direction: column; gap: 0.75rem; width: 100%; }
  .hero-actions .btn { width: 100%; min-height: 52px; font-size: 0.95rem; }
  .hero-trust    { font-size: 0.82rem; }

  /* Hide ALL floating stat cards on mobile — replaced by strip below */
  .stat-card { display: none; }

  /* Mobile stats strip */
  .hero-stats-mobile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
  }
  .hero-stat-m {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.25rem;
    padding: 0.875rem 0.5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
  }
  .hero-stat-m .fas {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
  }
  .hero-stat-m-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .hero-stat-m-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.3;
  }

  /* ── Trust bar ───────────────────────────────── */
  .trust-bar { padding: 1.25rem 0; }
  .trust-title { font-size: 0.72rem; margin-bottom: 1rem; }
  .trust-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    justify-items: start;
  }
  .trust-divider { display: none; }
  .trust-item { padding: 0.4rem 0.75rem; font-size: 0.8rem; gap: 0.4rem; }

  /* ── Services ────────────────────────────────── */
  .services-grid { grid-template-columns: 1fr; gap: 0.875rem; }
  .service-card  { padding: 1.5rem 1.25rem; }
  .service-card-title { font-size: 1rem; }
  .service-card-desc  { font-size: 0.875rem; }

  /* ── Why choose us ───────────────────────────── */
  .why-images { padding-bottom: 2.5rem; max-width: 100%; }
  .why-img-secondary { width: 45%; right: 0; bottom: -0.25rem; }
  .why-desc { font-size: 0.92rem; }
  .why-list li { font-size: 0.9rem; }
  .why-content .btn { width: 100%; justify-content: center; min-height: 52px; }

  /* ── Gallery ─────────────────────────────────── */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .gallery-overlay { opacity: 0.25; }

  /* ── Testimonials ────────────────────────────── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testi-text { font-size: 0.88rem; }

  /* ── Pricing ─────────────────────────────────── */
  .pricing-grid   { max-width: 100%; gap: 1rem; }
  .pricing-header { padding: 1.25rem 1.25rem 1rem; }
  .pricing-packages { padding: 1rem 1.25rem 0; }
  .pricing-note   { padding: 0.75rem 1.25rem; font-size: 0.74rem; }
  .pricing-rate   { font-size: 1.8rem; }
  .pricing-card .btn { margin: 0 1.25rem 1.25rem; width: calc(100% - 2.5rem); min-height: 50px; }

  /* ── Process ─────────────────────────────────── */
  .process-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 340px;
    margin: 0 auto;
  }
  .process-arrow { display: flex; transform: rotate(90deg); margin: 0.25rem 0; }
  .process-step  { max-width: 100%; width: 100%; padding: 1.25rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); text-align: center; }
  .step-icon     { width: 52px; height: 52px; font-size: 1.1rem; margin: 0 auto 0.75rem; }
  .step-title    { font-size: 0.95rem; }
  .step-desc     { font-size: 0.82rem; }

  /* ── FAQ ─────────────────────────────────────── */
  .faq-question { padding: 1rem 1.25rem; font-size: 0.88rem; }
  .faq-answer p { padding: 0 1.25rem; font-size: 0.875rem; }

  /* ── Contact ─────────────────────────────────── */
  .contact-grid { gap: 1.25rem; }
  .contact-card { padding: 0; }
  .contact-method { padding: 1rem 1.25rem; gap: 0.875rem; }
  .contact-method-label { font-size: 0.68rem; }
  .contact-method-val   { font-size: 0.875rem; word-break: break-all; }
  .contact-form-wrap    { padding: 1.5rem 1.25rem; }
  .form-title           { font-size: 1.05rem; margin-bottom: 1.25rem; }
  .form-row             { grid-template-columns: 1fr; gap: 0; }
  .form-group           { margin-bottom: 0.875rem; }

  /* iOS Safari zoom prevention */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; min-height: 50px; border-radius: 9px; }
  .form-group textarea  { min-height: 100px; }
  .contact-form-wrap .btn { min-height: 54px; font-size: 1rem; }

  /* ── Footer ──────────────────────────────────── */
  .footer       { padding: 3rem 0 1.5rem; }
  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
  .footer-social a { width: 44px; height: 44px; border-radius: 10px; }
  .footer-col ul li { min-height: 36px; font-size: 0.875rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; font-size: 0.78rem; }

  /* ── Floating buttons ────────────────────────── */
  .wa-float  { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; font-size: 1.4rem; }
  .back-top  { bottom: 5rem; right: 1.25rem; width: 42px; height: 42px; }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE ≤ 480px
   ════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container    { padding: 0 1rem; }
  .section      { padding: 48px 0; }
  .hero-inner   { padding: 1.5rem 1rem 2.5rem; }
  .hero-title   { font-size: clamp(1.75rem, 8.5vw, 2.2rem); }
  .gallery-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-step { padding: 1rem; }
}

/* ════════════════════════════════════════════════════
   TOUCH DEVICE — swap hover for press feedback
   ════════════════════════════════════════════════════ */
@media (hover: none) {
  .service-card:hover,
  .testimonial-card:hover,
  .pricing-card:hover,
  .btn-primary:hover,
  .btn-ghost:hover,
  .btn-outline:hover { transform: none; box-shadow: none; }
  .service-card:active,
  .testimonial-card:active,
  .pricing-card:active { transform: scale(0.99); }
  .btn:active { transform: scale(0.97); opacity: 0.9; }
}
