/* ═══════════════════════════════════════════════════
   20 GENERAL — Modern Workshop CSS
   Design system: White / Black / Orange (#f97316)
   Typography: Space Grotesk (headings) + Inter (body)
═══════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─────────────────────── */
:root {
  /* Brand colors */
  --orange:       #f97316;
  --orange-dark:  #ea580c;
  --orange-light: #fed7aa;
  --orange-pale:  #fff7ed;
  --black:        #0f0f0f;
  --near-black:   #1a1a1a;
  --dark:         #2d2d2d;
  --mid:          #6b7280;
  --light:        #d1d5db;
  --lighter:      #f3f4f6;
  --white:        #ffffff;
  --bg-alt:       #fafafa;

  /* Typography */
  --ff-head:   'Space Grotesk', sans-serif;
  --ff-body:   'Inter', sans-serif;

  /* Spacing scale */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;

  /* Layout */
  --container: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.16);

  /* Transitions */
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --t-fast:    150ms;
  --t-med:     300ms;
  --t-slow:    500ms;

  /* Navbar height */
  --navbar-h:  72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-h);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; display: block; }
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: inherit; }

/* ─── Container ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ─── Section Padding ────────────────────────────── */
.section-pad { padding-block: var(--sp-2xl); }
.section-pad--alt { background: var(--bg-alt); }

/* ─── Section Headers ────────────────────────────── */
.section-tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: var(--sp-sm);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-xl);
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ─── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  transition: all var(--t-med) var(--ease);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn:hover::before { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(249,115,22,.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 20px rgba(249,115,22,.45);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-sm  { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn-lg  { padding: 0.95rem 2.2rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Announce Bar ───────────────────────────────── */
.announce-bar {
  background: var(--black);
  color: var(--white);
  font-size: 0.82rem;
  text-align: center;
  padding: 0.55rem 1rem;
  position: relative;
  z-index: 200;
}

.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.announce-text { opacity: 0.9; }
.announce-close {
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  padding: 0.2rem;
  margin-left: auto;
  transition: color var(--t-fast);
}

.announce-close:hover { color: white; }

/* ─── Navbar ─────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--lighter);
  transition: box-shadow var(--t-med);
}

.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--navbar-h);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  background: var(--black);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
}

.logo-20 {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.logo-gen {
  font-family: var(--ff-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
}

.logo-mark--light {
  background: rgba(255,255,255,0.1);
}

.logo-tagline {
  font-size: 0.72rem;
  color: var(--mid);
  font-weight: 500;
  letter-spacing: 0.04em;
  display: none;
}

@media (min-width: 768px) {
  .logo-tagline { display: block; }
}

/* Nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--orange);
  background: var(--orange-pale);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

@media (min-width: 900px) {
  .nav-actions { margin-left: 0; }
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--lighter);
  border: 1px solid var(--light);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.75rem;
  transition: all var(--t-fast);
}

.lang-toggle:hover {
  background: var(--orange-pale);
  border-color: var(--orange-light);
  color: var(--orange-dark);
}

.lang-icon { font-size: 0.9rem; }

/* Burger */
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--t-med) var(--ease);
}

.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (min-width: 900px) { .nav-burger { display: none; } }

/* Mobile Menu */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--lighter);
  background: var(--white);
}

.mobile-menu.open { display: block; }

.mobile-links {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
}

.mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}

.mobile-link:hover {
  background: var(--orange-pale);
  color: var(--orange);
}

.btn-full { width: 100%; text-align: center; margin-top: 0.5rem; }

/* ─── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100svh - var(--navbar-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,15,15,.85) 0%,
    rgba(15,15,15,.65) 50%,
    rgba(249,115,22,.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-2xl);
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-light);
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-heading {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
  align-items: baseline;
}

.hero-highlight {
  color: var(--orange);
  position: relative;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  margin-top: -0.75rem;
}

.hero-tagline i {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}

.btn-whatsapp:hover {
  background: #1fba58;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transform: translateY(-1px);
  color: var(--white);
}

/* Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: fit-content;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 2rem;
}

.stat-num {
  font-family: var(--ff-head);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  text-align: center;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.12);
  align-self: stretch;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 1;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-cue span {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255,255,255,.6);
  border-bottom: 2px solid rgba(255,255,255,.6);
  transform: rotate(45deg);
}

.hero-scroll-cue span:nth-child(2) {
  opacity: 0.5;
  margin-top: -6px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── Trust Bar ──────────────────────────────────── */
.trust-bar {
  background: var(--black);
  padding-block: 1.25rem;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
}

.trust-item i {
  color: var(--orange);
  font-size: 0.9rem;
}

/* ─── Why Choose Us ──────────────────────────────── */
.why-choose {
  background: var(--bg-light);
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(249,115,22,0.12);
  border-color: rgba(249,115,22,0.25);
}

.why-card:hover::before {
  transform: scaleY(1);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card-icon i {
  color: #fff;
  font-size: 1.4rem;
}

.why-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.why-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin: 0;
}

.why-card-lead {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  margin: 0;
  line-height: 1.4;
}

.why-card-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .why-cards {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .why-card {
    padding: 2rem 1.5rem;
  }
}

/* ─── How It Works ───────────────────────────────── */
.how-it-works {
  background: var(--bg-dark);
  color: #fff;
}

.how-it-works .section-tag {
  background: rgba(249,115,22,0.18);
  color: var(--orange);
}

.how-it-works .section-title {
  color: #fff;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}

.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  position: relative;
}

/* Numbered bubble */
.hiw-step-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(249,115,22,0.25);
}

/* Horizontal connector line between steps */
.hiw-connector {
  position: absolute;
  top: 2.75rem;
  left: calc(50% + 2.5rem);
  width: calc(100% - 5rem);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(249,115,22,0.2));
  z-index: 1;
}

.hiw-connector--hidden {
  display: none;
}

/* Icon circle */
.hiw-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(249,115,22,0.12);
  border: 2px solid rgba(249,115,22,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.hiw-step:hover .hiw-step-icon {
  background: rgba(249,115,22,0.22);
  border-color: var(--orange);
  transform: scale(1.08);
}

.hiw-step-icon i {
  color: var(--orange);
  font-size: 1.6rem;
}

.hiw-step-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.hiw-step-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}

/* Plain text below the graphic */
.hiw-plain-text {
  max-width: 620px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hiw-plain-text p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

.hiw-plain-text p strong {
  display: block;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

/* Closing tagline */
.hiw-cta-line {
  text-align: center;
  margin-top: 3.5rem;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.hiw-cta-line i {
  font-size: 1rem;
  animation: nudgeRight 1.6s ease-in-out infinite;
}

@keyframes nudgeRight {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(5px); }
}

/* Responsive: stack vertically on mobile */
@media (max-width: 860px) {
  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .hiw-connector {
    /* vertical connector */
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 2rem;
    background: linear-gradient(180deg, var(--orange), rgba(249,115,22,0.2));
  }

  .hiw-connector--hidden {
    display: none;
  }

  .hiw-step-number {
    top: -0.75rem;
    left: 50%;
  }

  .hiw-step {
    padding: 0 1rem;
  }
}

/* ─── Services ───────────────────────────────────── */
.service-category {
  margin-bottom: var(--sp-xl);
  scroll-margin-top: calc(var(--navbar-h) + 1rem);
}

.service-category:last-child { margin-bottom: 0; }

.svc-cat-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--lighter);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.svc-cat-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--cat-color, var(--orange));
  border-radius: 0 2px 2px 0;
}

.svc-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--cat-color, var(--orange));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--cat-color, var(--orange)) 40%, transparent);
}

.svc-cat-info h3 {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.2rem;
}

.svc-cat-info p {
  font-size: 0.9rem;
  color: var(--mid);
}

.svc-cat-badge {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--orange-pale);
  color: var(--orange-dark);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

.svc-cat-badge--blue   { background: #eff6ff; color: #1d4ed8; }
.svc-cat-badge--green  { background: #f0fdf4; color: #166534; }
.svc-cat-badge--purple { background: #f5f3ff; color: #6d28d9; }

/* Service Cards Grid */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--lighter);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}

.svc-card:hover {
  border-color: var(--orange-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.svc-card--featured {
  border-top-width: 0;
  padding-top: 0;
  display: flex;
  flex-direction: column;
}

.svc-card--featured .svc-card-image {
  height: 220px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background-size: cover;
  background-position: center 30%;
  margin: 0 -1.75rem 1.5rem;
  margin-top: 0;
  transition: background-position 0.6s var(--ease);
}

.svc-card--featured:hover .svc-card-image {
  background-position: center 40%;
}

.svc-card--featured:hover { border-color: var(--orange-light); }

.svc-card-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-pale);
  color: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.svc-card h4 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.6rem;
}

.svc-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
}

.svc-list li {
  font-size: 0.83rem;
  color: var(--dark);
  padding-left: 1.1rem;
  position: relative;
}

.svc-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}

/* ─── About ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-visual { position: relative; }

.about-image-stack {
  position: relative;
  padding: 2rem 2rem 0 0;
}

.about-img {
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-xl);
}

.about-img--main {
  width: 100%;
  padding-bottom: 70%;
  position: relative;
}

.about-img--secondary {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  width: 45%;
  padding-bottom: 30%;
  border: 4px solid var(--white);
}

.about-badge-float {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  box-shadow: var(--shadow-lg);
}

.about-float-num {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 900;
}

.about-float-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-content h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-block: 1.75rem;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-value i {
  color: var(--orange);
  font-size: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.about-value div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.about-value strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
}

.about-value span {
  font-size: 0.85rem;
  color: var(--mid);
}

/* ─── Projects ───────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 700px) {
  .projects-grid { grid-template-columns: 1fr; }
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--black);
  box-shadow: var(--shadow-md);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med);
}

.project-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-xl);
}

.project-card--wide {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .project-card--wide {
    grid-column: span 1;
    grid-row: span 2;
  }
}

.proj-img {
  width: 100%;
  padding-bottom: 60%;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow) var(--ease);
}

.project-card--wide .proj-img {
  padding-bottom: 130%;
}

@media (max-width: 900px) {
  .project-card--wide .proj-img { padding-bottom: 60%; }
}

.project-card:hover .proj-img { transform: scale(1.05); }

.proj-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
  color: white;
}

.proj-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: white;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}

.proj-info h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.proj-info p {
  font-size: 0.82rem;
  opacity: 0.8;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  flex-direction: column;
  gap: 1rem;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox-caption {
  color: rgba(255,255,255,.7);
  font-size: 0.9rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255,255,255,.7);
  font-size: 1.5rem;
  transition: color var(--t-fast);
}

.lightbox-close:hover { color: white; }

/* ─── Service Area ───────────────────────────────── */
.area-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

@media (min-width: 900px) {
  .area-layout { grid-template-columns: 1fr 420px; }
}

.area-map-wrap { position: relative; }

.area-map {
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--lighter);
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--lighter);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--dark);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot--base     { background: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.25); }
.legend-dot--primary  { background: #3b82f6; }
.legend-dot--extended { background: #d1d5db; border: 2px solid #9ca3af; }

/* Towns */
.area-towns {
  background: var(--white);
  border: 1px solid var(--lighter);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.area-towns h3 {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--lighter);
}

.towns-grid {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.town-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  font-size: 0.9rem;
  transition: all var(--t-fast);
}

.town-item:hover { background: var(--orange-pale); }

.town-item i {
  color: var(--mid);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}

.town-item--main i { color: var(--orange); }
.town-item--main strong { font-weight: 700; color: var(--black); }

.town-item div { display: flex; flex-direction: column; gap: 0.1rem; }
.town-item strong { font-weight: 600; color: var(--dark); font-size: 0.9rem; }
.town-item span { font-size: 0.77rem; color: var(--mid); }

.area-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: var(--orange-pale);
  border: 1px solid var(--orange-light);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  color: var(--orange-dark);
  line-height: 1.5;
}

.area-note i { flex-shrink: 0; margin-top: 0.1rem; }

/* ─── Process ────────────────────────────────────── */
.process { background: var(--black); }
.process .section-tag { background: rgba(249,115,22,.15); color: var(--orange-light); }
.process .section-title { color: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr) ;
  gap: 0;
  align-items: center;
  overflow-x: auto;
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .process-connector { display: none; }
}

@media (min-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  }
}

.process-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--t-med) var(--ease);
}

.process-step:hover {
  background: rgba(249,115,22,.08);
  border-color: rgba(249,115,22,.2);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--ff-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: rgba(249,115,22,.12);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

.process-connector {
  color: rgba(249,115,22,.4);
  font-size: 1.1rem;
  padding-inline: 0.5rem;
  text-align: center;
}

/* ─── Testimonials ───────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--lighter);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--t-med) var(--ease);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--orange-light);
  line-height: 1;
  z-index: 0;
}

.testimonial-card:hover {
  border-color: var(--orange-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1), var(--shadow-md);
}

.test-stars {
  color: #f59e0b;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}

.testimonial-card footer strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
}

.testimonial-card footer span {
  font-size: 0.8rem;
  color: var(--mid);
}

.testimonial-card footer::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

/* ─── Contact ────────────────────────────────────── */
.contact { background: var(--white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
}

@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1.2fr; }
}

.contact-info h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.contact-info > p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--lighter);
  border-radius: var(--radius-md);
  transition: all var(--t-med) var(--ease);
}

.contact-method:hover {
  background: var(--orange-pale);
  border-color: var(--orange-light);
  transform: translateX(4px);
}

.contact-method--whatsapp:hover { background: #f0fdf4; border-color: #bbf7d0; }
.contact-method--nolink { cursor: default; }
.contact-method--nolink:hover { transform: none; background: var(--bg-alt); border-color: var(--lighter); }

.cm-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-method--whatsapp .cm-icon { background: #22c55e; }
.contact-method--nolink .cm-icon { background: var(--mid); }

.contact-method div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-method strong {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
}

.contact-method span {
  font-size: 0.9rem;
  color: var(--mid);
}

.contact-hours {
  background: var(--bg-alt);
  border: 1px solid var(--lighter);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.contact-hours h4 {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.85rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--mid);
  padding-block: 0.35rem;
  border-bottom: 1px solid var(--lighter);
}

.hours-row:last-child { border-bottom: none; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--lighter);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: all var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

.form-error {
  font-size: 0.78rem;
  color: #ef4444;
  display: none;
}

.form-error.visible { display: block; }

/* Checkbox */
.form-group--checkbox .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.5;
}

.form-group--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--orange);
  cursor: pointer;
  padding: 0;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--mid);
  text-align: center;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  font-size: 3.5rem;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.form-success h3 {
  font-family: var(--ff-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* ─── Footer ─────────────────────────────────────── */
.footer {
  background: var(--near-black);
  color: rgba(255,255,255,.75);
  padding-block: var(--sp-2xl) var(--sp-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .logo-mark {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem !important;
}

.footer-location i { color: var(--orange); }

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--t-fast);
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--ff-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col li a i {
  color: var(--orange);
  width: 16px;
}

.footer-col li a:hover { color: var(--orange); }

.footer-cert {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.5rem;
}

.footer-cert span {
  font-size: 0.78rem;
  color: rgba(255,255,255,.4);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.35);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,.35);
  transition: color var(--t-fast);
}

.footer-bottom-links a:hover { color: var(--orange); }

/* ─── Floating WhatsApp ──────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all var(--t-med) var(--ease);
  animation: waPulse 3s ease-in-out 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.55);
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--black);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--black);
  border-right: 0;
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ─── Back to Top ────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 500;
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--dark);
  border: 1.5px solid var(--light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all var(--t-med) var(--ease);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

/* ─── Animations ─────────────────────────────────── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.animate-fade-up.animated {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Leaflet Customization ──────────────────────── */
.leaflet-container { font-family: var(--ff-body) !important; }
.leaflet-popup-content-wrapper {
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* ─── Van / Credibility Strip ────────────────────── */
.van-strip {
  background: var(--black);
  overflow: hidden;
}

.van-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: var(--container);
  margin-inline: auto;
}

@media (min-width: 900px) {
  .van-strip-inner {
    grid-template-columns: 1.1fr 1fr;
  }
}

/* Image side */
.van-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

@media (min-width: 900px) {
  .van-image-wrap { min-height: 520px; }
}

.van-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  transition: transform 0.8s var(--ease);
}

.van-strip:hover .van-img {
  transform: scale(1.03);
}

.van-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(15,15,15,.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(249,115,22,.3);
  color: var(--orange-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 100px;
}

.van-img-badge i { color: var(--orange); }

/* Copy side */
.van-copy {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.van-copy .section-tag {
  background: rgba(249,115,22,.15);
  color: var(--orange-light);
  margin-bottom: 1.25rem;
}

.van-copy h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.van-copy p {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.van-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.van-stat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  transition: all var(--t-med) var(--ease);
}

.van-stat:hover {
  background: rgba(249,115,22,.07);
  border-color: rgba(249,115,22,.2);
}

.van-stat > i {
  color: var(--orange);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.van-stat div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.van-stat strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}

.van-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
}

/* ─── Emergency Contact Styles ───────────────────── */

/* Section tag variant */
.section-tag--emergency {
  background: rgba(239,68,68,.1);
  color: #fca5a5;
  border: 1px solid rgba(239,68,68,.25);
}

/* Emergency notice banner */
.emergency-notice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(239,68,68,.08) 0%, rgba(249,115,22,.08) 100%);
  border: 1.5px solid rgba(239,68,68,.3);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.emergency-notice > i {
  color: #ef4444;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.emergency-notice div {
  flex: 1;
  min-width: 160px;
}

.emergency-notice strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.emergency-notice span {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.5;
}

/* Emergency button */
.btn-emergency {
  background: #ef4444;
  color: white;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: all var(--t-med) var(--ease);
  box-shadow: 0 4px 14px rgba(239,68,68,.35);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.btn-emergency:hover {
  background: #dc2626;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(239,68,68,.45);
}

/* Emergency contact method card */
.contact-method--emergency {
  background: linear-gradient(135deg, rgba(239,68,68,.06) 0%, rgba(249,115,22,.06) 100%) !important;
  border-color: rgba(239,68,68,.25) !important;
  position: relative;
}

.contact-method--emergency:hover {
  background: linear-gradient(135deg, rgba(239,68,68,.12) 0%, rgba(249,115,22,.12) 100%) !important;
  border-color: rgba(239,68,68,.45) !important;
  transform: translateX(4px);
}

.cm-icon--emergency {
  background: linear-gradient(135deg, #ef4444, #f97316) !important;
  animation: emergencyPulse 2.5s ease-in-out infinite;
}

@keyframes emergencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
  50%       { box-shadow: 0 0 0 6px rgba(239,68,68,.2); }
}

.cm-emergency-badge {
  margin-left: auto;
  flex-shrink: 0;
  background: #ef4444;
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

/* ─── Print Styles ───────────────────────────────── */
@media print {
  .announce-bar, .navbar, .whatsapp-float, .back-to-top, .hero-scroll-cue { display: none !important; }
  body { font-size: 12pt; }
}

/* ─── Reduced Motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── Responsive Overrides ───────────────────────── */
@media (max-width: 600px) {
  :root { --sp-2xl: 4rem; --sp-xl: 2.5rem; }

  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat { padding: 1rem; }
  .stat-num { font-size: 1.75rem; }

  .svc-cards { grid-template-columns: 1fr; }
  .svc-cat-header { flex-wrap: wrap; }
  .svc-cat-badge { margin-left: 0; }

  .trust-items { flex-direction: column; align-items: flex-start; gap: 0.6rem; }

  .contact-form-wrap { padding: 1.5rem; }

  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
  .back-to-top { bottom: 1.25rem; left: 1.25rem; }

  .about-img--secondary { display: none; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}
