/* ========================================
   חנן שאיבות – Landing Page CSS
   Modern Industrial Premium Design
   Direction: RTL | Language: Hebrew
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --primary:       #0057B8;
  --primary-dark:  #003f8a;
  --primary-light: #1a6fd4;
  --secondary:     #111827;
  --accent:        #FFC107;
  --accent-dark:   #e0a800;
  --bg:            #F8FAFC;
  --bg-dark:       #0f1923;
  --success:       #22C55E;
  --danger:        #ef4444;
  --orange:        #f97316;
  --white:         #ffffff;
  --text-main:     #111827;
  --text-muted:    #6b7280;
  --text-light:    #9ca3af;
  --border:        #e5e7eb;
  --border-dark:   #374151;

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow:     0 4px 16px rgba(0,0,0,.10);
  --shadow-md:  0 8px 32px rgba(0,0,0,.13);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.18);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.22);

  --transition: .28s ease;
  --font: 'Heebo', 'Arial', sans-serif;
  --container: 1200px;
  --header-h: 80px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  direction: rtl;
  overflow-x: hidden;
  padding-bottom: 64px; /* space for mobile sticky bar */
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SECTION HEADERS ===== */
.section-tag {
  display: inline-block;
  background: rgba(0,87,184,.10);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header .section-desc { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,87,184,.30);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,87,184,.40);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(37,211,102,.30);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-whatsapp:hover {
  background: #1ebe59;
  transform: translateY(-2px);
}

.btn-emergency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--danger);
  font-weight: 800;
  font-size: .95rem;
  padding: 11px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-emergency:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-lg { font-size: 1.08rem; padding: 16px 34px; }
.btn-xl { font-size: 1.2rem; padding: 18px 44px; border-radius: var(--radius-lg); }
.btn-full { width: 100%; justify-content: center; }

/* Pulse animation for key CTAs */
.btn-pulse { animation: pulse-ring 2.4s infinite; }
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,87,184,.35); }
  50% { box-shadow: 0 4px 28px rgba(0,87,184,.65), 0 0 0 8px rgba(0,87,184,.12); }
}

/* ===== FADE IN ANIMATIONS ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: .10s; }
.delay-200 { transition-delay: .20s; }
.delay-300 { transition-delay: .30s; }
.delay-400 { transition-delay: .40s; }
.delay-500 { transition-delay: .50s; }

/* ===== DESKTOP ONLY ===== */
.desktop-only { display: inline; }

/* ========================================
   STICKY HEADER
   ======================================== */
.sticky-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,.10);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition), background var(--transition);
}
.sticky-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.16);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  /* give logo a bit of breathing room */
  padding: 4px 0;
}
.logo-img {
  height: 68px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.10));
}
.logo-text-fallback {
  display: none;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  align-items: center;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-main);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; right: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

.btn-call-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: 10px 20px;
  border-radius: var(--radius);
  box-shadow: 0 3px 14px rgba(0,87,184,.30);
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.btn-call-header:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* modern browsers: accounts for mobile browser chrome */
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 20, 40, .82) 0%,
    rgba(0, 57, 120, .65) 50%,
    rgba(10, 20, 40, .70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  padding: 80px 20px;
}

/* Hero Text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, .18);
  border: 1px solid rgba(34,197,94,.45);
  color: #6ee7a0;
  font-size: .85rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: blink 1.4s infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.text-accent { color: var(--accent); }

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255,255,255,.80);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 36px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.88);
  font-size: .98rem;
  font-weight: 500;
}
.hero-features li .fa-circle-check { color: var(--success); font-size: 1rem; }

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Card */
.trust-card {
  background: rgba(255,255,255,.97);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-xl);
}
.trust-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  border-bottom: 2px solid var(--border);
  padding-bottom: 18px;
  margin-bottom: 22px;
}
.trust-card-header i {
  width: 42px; height: 42px;
  background: rgba(0,87,184,.10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .97rem;
  font-weight: 500;
  color: var(--text-main);
}
.trust-list li .fa-check {
  width: 20px; height: 20px;
  background: rgba(34,197,94,.15);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
}

.trust-card-note {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-arrow {
  width: 40px; height: 40px;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  animation: bounce-down 2s infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

/* ========================================
   EMERGENCY BANNER
   ======================================== */
.emergency-banner {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  padding: 18px 0;
}
.emergency-banner--dark {
  background: linear-gradient(135deg, var(--primary-dark), #001f5a);
  padding: 64px 0;
}

.emergency-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.emergency-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
  animation: shake 3s infinite;
}
@keyframes shake {
  0%, 90%, 100% { transform: rotate(0); }
  92% { transform: rotate(-10deg); }
  96% { transform: rotate(10deg); }
}

.emergency-text {
  flex: 1;
  color: var(--white);
  min-width: 200px;
}
.emergency-text strong { font-size: 1.1rem; font-weight: 800; display: block; margin-bottom: 2px; }
.emergency-text span  { font-size: .92rem; opacity: .88; }

.emergency-text-centered {
  text-align: center;
  color: var(--white);
  flex: 1;
}
.emergency-text-centered h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.emergency-text-centered p { font-size: 1.05rem; opacity: .85; }

.emergency-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
  width: 100%;
}

/* ========================================
   PROBLEMS SECTION
   ======================================== */
.problems-section {
  padding: 88px 0;
  background: var(--bg);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.problem-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(0,87,184,.12), rgba(0,87,184,.06));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--secondary);
}
.problem-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
  padding: 88px 0;
  background: linear-gradient(180deg, #f0f4f9 0%, var(--bg) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 4px; height: 100%;
  background: var(--primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleY(1); }

.service-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0,87,184,.30);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--secondary);
}
.service-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-tag {
  display: inline-block;
  background: rgba(0,87,184,.10);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.services-cta { text-align: center; }

/* ========================================
   WHY US SECTION
   ======================================== */
.why-section {
  padding: 88px 0;
  background: var(--secondary);
  overflow: hidden;
}
.why-section .section-tag { background: rgba(0,87,184,.25); color: #7ab8ff; }
.why-section .section-title { color: var(--white); }
.why-section .section-desc { color: rgba(255,255,255,.60); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-icon {
  width: 48px; height: 48px;
  background: rgba(0,87,184,.25);
  border: 1px solid rgba(0,87,184,.40);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #7ab8ff;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.why-item:hover .why-icon {
  background: rgba(0,87,184,.45);
  border-color: var(--primary);
}
.why-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}
.why-text span {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
}

/* Stats Card */
.stats-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 32px;
}

.stat-item {
  padding: 20px;
  text-align: center;
}
.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  display: inline;
}
.stat-suffix {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
}
.stat-label {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.50);
  margin-top: 4px;
  font-weight: 500;
}

.stat-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(255,255,255,.08);
}
.stat-divider:nth-child(2) { grid-row: 2; }

.truck-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  max-height: 260px;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-section {
  padding: 88px 0;
  background: var(--bg);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: .88rem;
  color: var(--text-muted);
  margin-top: 14px;
  box-shadow: var(--shadow-sm);
}
.google-badge .fa-google { color: #4285F4; }
.google-badge .stars { color: #fbbc04; font-size: 1rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: .97rem; font-weight: 700; }
.reviewer-info .stars { color: #fbbc04; font-size: .9rem; }

.review-text {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 12px;
  font-style: italic;
}
.review-date { font-size: .78rem; color: var(--text-light); }

/* ========================================
   AREAS SECTION
   ======================================== */
.areas-section {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #eef2f8 100%);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--secondary);
  font-size: .95rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.area-chip i { color: var(--primary); font-size: .85rem; }
.area-chip:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,87,184,.25);
}
.area-chip:hover i { color: var(--white); }

.areas-note {
  text-align: center;
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.areas-note i { color: var(--primary); }

.areas-cta { text-align: center; }

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  padding: 88px 0;
  background: var(--white);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 18px rgba(0,87,184,.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  text-align: right;
  background: var(--white);
  transition: background var(--transition), color var(--transition);
}
.faq-question:hover { background: rgba(0,87,184,.04); color: var(--primary); }
.faq-item.open .faq-question { background: rgba(0,87,184,.05); color: var(--primary); }

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-muted);
  font-size: .9rem;
}
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--primary); }

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease, padding .38s ease;
}
.faq-answer:not([hidden]) {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta-section {
  padding: 88px 0;
  background: linear-gradient(135deg, #0a1a30 0%, var(--primary-dark) 50%, #0a1a30 100%);
  text-align: center;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-badge {
  width: 72px; height: 72px;
  background: rgba(255,193,7,.18);
  border: 2px solid rgba(255,193,7,.40);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 8px;
  animation: pulse-badge 2.5s infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,193,7,.35); }
  50% { box-shadow: 0 0 0 14px rgba(255,193,7,.0); }
}

.final-cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
}
.final-cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 540px;
  margin: 0 auto;
}
.cta-or {
  color: rgba(255,255,255,.40);
  font-size: .9rem;
  font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--secondary);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-logo-text {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.50);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  transition: opacity var(--transition);
}
.footer-phone:hover { opacity: .8; }

.footer-nav h3,
.footer-areas h3,
.footer-contact h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-nav ul,
.footer-areas ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav li a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-nav li a:hover { color: var(--primary-light); }

.footer-areas li {
  font-size: .88rem;
  color: rgba(255,255,255,.50);
  line-height: 1.5;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
}
.footer-contact li i { color: var(--primary-light); width: 16px; flex-shrink: 0; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }

/* ========================================
   FLOATING ACTION BUTTONS
   ======================================== */
.floating-actions {
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.fab-btn:hover { transform: scale(1.1); box-shadow: var(--shadow-xl); }

.fab-phone  { background: var(--primary); animation: pulse-fab 2.5s infinite; }
.fab-whatsapp { background: #25D366; }

@keyframes pulse-fab {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,87,184,.50); }
  50% { box-shadow: 0 4px 30px rgba(0,87,184,.80), 0 0 0 8px rgba(0,87,184,.12); }
}

/* ========================================
   MOBILE STICKY BAR
   ======================================== */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  display: none; /* shown on mobile */
  height: 64px;
  background: var(--secondary);
  box-shadow: 0 -4px 20px rgba(0,0,0,.22);
}

.sticky-call,
.sticky-whatsapp {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  transition: opacity var(--transition);
}
.sticky-call   { background: var(--primary); }
.sticky-whatsapp { background: #25D366; }
.sticky-call:hover, .sticky-whatsapp:hover { opacity: .88; }
.sticky-call i, .sticky-whatsapp i { font-size: 1.2rem; }

/* ========================================
   RESPONSIVE – TABLET (≤1024px)
   ======================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 20px;
  }
  .hero-card { display: flex; justify-content: center; }
  .trust-card { max-width: 420px; }
  .hero-features { justify-content: center; }
  .hero-cta-group { justify-content: center; }
  .hero-badge { display: inline-flex; }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-content { text-align: center; }
  .why-list { align-items: flex-start; }
  .why-item { text-align: right; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }

  .problems-grid,
  .services-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   RESPONSIVE – MOBILE (≤768px)
   ======================================== */
@media (max-width: 768px) {
  :root { --header-h: 68px; }

  body { padding-bottom: 68px; }

  /* Header */
  .header-nav { display: none; }
  .btn-call-header span { font-size: .88rem; }
  .btn-call-header {
    padding: 9px 16px;
    gap: 6px;
  }
  .logo-img {
    height: 52px;
    max-width: 160px;
  }

  /* Hero */
  .hero-content { padding: 32px 16px 48px; gap: 28px; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-desc { font-size: .97rem; }
  .hero-features { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-cta-group { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-whatsapp { justify-content: center; font-size: 1.05rem; padding: 15px 20px; }

  /* Trust card */
  .trust-card { max-width: 100%; padding: 22px 18px; }
  .trust-card-header { font-size: 1rem; }
  .trust-list li { font-size: .92rem; }

  /* Emergency banners */
  .emergency-inner { flex-direction: column; text-align: center; align-items: center; gap: 14px; }
  .emergency-actions { flex-direction: column; align-items: stretch; }
  .emergency-actions .btn-primary,
  .emergency-actions .btn-whatsapp { justify-content: center; }
  .emergency-banner--dark { padding: 48px 0; }

  /* Sections */
  .problems-section,
  .services-section,
  .why-section,
  .reviews-section,
  .areas-section,
  .faq-section,
  .final-cta-section { padding: 52px 0; }

  .section-header { margin-bottom: 36px; }

  /* Grids → single column */
  .problems-grid,
  .services-grid,
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Cards – compact on mobile */
  .problem-card { padding: 20px 18px; }
  .problem-card h3 { font-size: 1rem; }
  .service-card { padding: 22px 18px; }
  .service-card h3 { font-size: 1rem; }
  .service-icon-wrap { width: 52px; height: 52px; font-size: 1.3rem; }
  .review-card { padding: 20px 16px; }

  /* Stats */
  .stats-card { grid-template-columns: 1fr 1fr; padding: 20px; }
  .stat-num { font-size: 2rem; }
  .stat-item { padding: 14px 10px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .site-footer { padding: 44px 0 0; }

  /* Floating buttons – hide on mobile, sticky bar handles CTA */
  .floating-actions { display: none; }

  /* Mobile sticky bar */
  .mobile-sticky-bar { display: flex; height: 68px; }
  .sticky-call, .sticky-whatsapp { font-size: .85rem; gap: 5px; }
  .sticky-call i, .sticky-whatsapp i { font-size: 1.3rem; }

  .desktop-only { display: none; }

  .hero-scroll-indicator { display: none; }
}

/* ========================================
   RESPONSIVE – SMALL MOBILE (≤480px)
   ======================================== */
@media (max-width: 480px) {
  :root { --header-h: 60px; }

  .logo-img { height: 44px; max-width: 140px; }
  .btn-call-header { padding: 8px 12px; font-size: .82rem; }

  .hero-title { font-size: 1.75rem; }
  .hero-features { grid-template-columns: 1fr; }
  .section-title { font-size: 1.5rem; }
  .section-header { margin-bottom: 28px; }
  .btn-lg { font-size: .97rem; padding: 14px 20px; }
  .btn-xl { font-size: 1.05rem; padding: 15px 24px; }

  .faq-question { font-size: .97rem; padding: 16px 18px; }
  .faq-answer { padding: 0 18px; }
  .faq-answer:not([hidden]) { padding: 0 18px 16px; }

  .areas-grid { gap: 8px; }
  .area-chip { font-size: .85rem; padding: 9px 14px; }

  .emergency-banner { padding: 16px 0; }
  .emergency-banner--dark { padding: 40px 0; }

  .why-list { gap: 16px; }
  .why-icon { width: 42px; height: 42px; font-size: 1rem; }
  .why-text strong { font-size: .95rem; }
}
