@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

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

:root {
  --bg:        hsl(0, 0%, 10%);
  --bg2:       hsl(0, 0%, 13%);
  --bg3:       hsl(0, 0%, 16%);
  --fg:        hsl(0, 0%, 98%);
  --muted:     hsl(0, 0%, 70%);
  --border:    hsl(0, 0%, 20%);
  --primary:   hsl(16, 100%, 60%);
  --primary90: hsla(16, 100%, 60%, 0.9);
  --primary20: hsla(16, 100%, 60%, 0.2);
  --primary10: hsla(16, 100%, 60%, 0.1);
  --radius:    0.75rem;
  --whatsapp:  #25D366;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ===================== UTILITIES ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 100%; margin: 0; padding: 0 3rem; }

.text-primary  { color: var(--primary); }
.text-muted    { color: var(--muted); }
.text-center   { text-align: center; }

.glow-orange       { box-shadow: 0 0 20px hsla(16,100%,60%,.3), 0 0 40px hsla(16,100%,60%,.2); }
.glow-orange-strong{ box-shadow: 0 0 30px hsla(16,100%,60%,.5), 0 0 60px hsla(16,100%,60%,.3), 0 0 90px hsla(16,100%,60%,.2); }
.text-glow         { text-shadow: 0 0 20px hsla(16,100%,60%,.5), 0 0 40px hsla(16,100%,60%,.3); }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes pulseGlow {
  0%,100% { filter: drop-shadow(0 0 10px hsla(16,100%,60%,.4)); opacity:.8; }
  50%      { filter: drop-shadow(0 0 25px hsla(16,100%,60%,.8)); opacity:1; }
}
@keyframes pulseRing {
  0%   { transform: scale(.8); opacity:.8; }
  100% { transform: scale(2.5); opacity:0; }
}
@keyframes pulseWA {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.7); }
  70%  { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes packetMove {
  0%   { opacity:0; offset-distance:0%; }
  20%  { opacity:1; }
  80%  { opacity:1; }
  100% { opacity:0; offset-distance:100%; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.anim-fade-up  { animation: fadeUp .7s ease forwards; }
.anim-fade-in  { animation: fadeIn .7s ease forwards; }
.pulse-glow    { animation: pulseGlow 3s ease-in-out infinite; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================== HEADER ===================== */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(26,26,26,.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: .75rem; }
.logo-icons { display: flex; align-items: center; gap: .25rem; }
.logo-icons svg { width: 22px; height: 22px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 800; line-height: 1; }
.logo-name span { color: var(--primary); }
.logo-sub { font-size: .62rem; color: var(--muted); letter-spacing: .08em; font-weight: 500; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a, .nav button {
  font-size: .875rem; font-weight: 500; color: var(--fg);
  transition: color .2s;
}
.nav {
  margin-left: auto;
}
.nav a:hover, .nav button:hover { color: var(--primary); }

.btn-wa-nav {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(37,211,102,.12); color: var(--whatsapp) !important;
  padding: .4rem 1rem; border-radius: 999px;
  transition: background .3s, color .3s !important;
}
.btn-wa-nav:hover { background: var(--whatsapp) !important; color: #fff !important; }

/* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .4rem; }
.hamburger span { width: 24px; height: 2px; background: var(--fg); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 1.25rem;
  padding: 1.5rem; background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button {
  font-size: 1.05rem; font-weight: 600; color: var(--fg);
  text-align: left; transition: color .2s;
}
.mobile-menu a:hover, .mobile-menu button:hover { color: var(--primary); }
.btn-wa-mobile {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--whatsapp); color: #fff !important;
  padding: .85rem; border-radius: .75rem; font-weight: 700 !important;
  margin-top: .5rem;
}

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; border-bottom: 1px solid var(--border);
  text-align: center;
}

/* Radar animation background */
.hero-radar {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.radar-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid hsla(16,100%,60%,.2);
  animation: radarExpand 4s ease-out infinite;
}
.radar-ring-1 { width: 300px; height: 300px; animation-delay: 0s; }
.radar-ring-2 { width: 550px; height: 550px; animation-delay: 1.3s; }
.radar-ring-3 { width: 800px; height: 800px; animation-delay: 2.6s; }

.radar-ring {
  position: absolute; border-radius: 50%;
  animation: radarPulse 3s ease-in-out infinite;
}
.radar-ring-1 { width: 300px; height: 300px; animation-delay: 0s;   border: 2px solid hsla(16,100%,60%,.7); }
.radar-ring-2 { width: 550px; height: 550px; animation-delay: 1s;   border: 1.5px solid hsla(16,100%,60%,.5); }
.radar-ring-3 { width: 800px; height: 800px; animation-delay: 2s;   border: 1px solid hsla(16,100%,60%,.35); }

@keyframes radarPulse {
  0%,100% { opacity: .25; transform: scale(.94); }
  50%      { opacity: 1;   transform: scale(1.04); }
}

.radar-sweep {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 300deg,
    hsla(16,100%,60%,.08) 300deg 360deg
  );
  animation: radarSpin 5s linear infinite;
}
@keyframes radarSpin { to { transform: rotate(360deg); } }

.radar-dot {
  position: absolute; border-radius: 50%;
  background: hsl(16,100%,60%);
  animation: radarDotBlink 3s ease-in-out infinite;
}
.radar-dot-1 { width: 8px; height: 8px; top: calc(50% - 80px); left: calc(50% + 100px); animation-delay: 0s; }
.radar-dot-2 { width: 6px; height: 6px; top: calc(50% + 120px); left: calc(50% - 140px); animation-delay: 1s; }
.radar-dot-3 { width: 5px; height: 5px; top: calc(50% - 160px); left: calc(50% - 80px); animation-delay: 2s; }
.radar-dot::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid hsla(16,100%,60%,.4);
  animation: pulseRing 2s ease-out infinite;
}
@keyframes radarDotBlink {
  0%,100% { opacity: 1; box-shadow: 0 0 8px hsla(16,100%,60%,.8); }
  50%      { opacity: .4; box-shadow: 0 0 2px hsla(16,100%,60%,.2); }
}

/* Floating signal particles */
.signal-particle {
  position: absolute; border-radius: 50%;
  background: hsla(16,100%,60%,.4);
  animation: floatParticle linear infinite;
}
.sp-1 { width: 3px; height: 3px; left: 15%; top: 30%; animation-duration: 8s; animation-delay: 0s; }
.sp-2 { width: 4px; height: 4px; left: 80%; top: 60%; animation-duration: 10s; animation-delay: 2s; }
.sp-3 { width: 2px; height: 2px; left: 60%; top: 20%; animation-duration: 7s; animation-delay: 1s; }
.sp-4 { width: 3px; height: 3px; left: 25%; top: 70%; animation-duration: 9s; animation-delay: 3s; }
.sp-5 { width: 5px; height: 5px; left: 70%; top: 40%; animation-duration: 11s; animation-delay: 0.5s; }
@keyframes floatParticle {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: .8; }
  90%  { opacity: .6; }
  100% { transform: translateY(-120px) translateX(30px); opacity: 0; }
}

.hero-content { position: relative; z-index: 1; padding: 5rem 1.5rem 3rem; max-width: 1000px; width: 100%; }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 900; letter-spacing: -.02em;
  margin-bottom: 2rem;
  animation: fadeUp .8s ease forwards;
}
.hero-cta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  animation: fadeUp .8s .3s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--primary); color: #fff;
  padding: 1rem 2rem; border-radius: 999px;
  font-weight: 700; font-size: 1rem;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover { background: var(--primary90); transform: scale(1.05); }
.btn-primary:active { transform: scale(.96); }

/* ===================== FEATURE CARDS ===================== */
.features {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--bg), var(--bg3));
}
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 0;
}
.card {
  padding: 2rem 2rem; border-radius: 1.25rem;
  border: 1px solid var(--border);
  transition: transform .2s, border-color .2s, box-shadow .2s;
  display: flex; flex-direction: column;
  min-height: 180px;
}
.card:hover { transform: translateY(-4px); border-color: hsla(16,100%,60%,.4); }
.card-glow { background: linear-gradient(135deg, var(--primary20), transparent); border-color: var(--primary20); }
.card-solid { background: var(--bg3); box-shadow: 0 4px 24px rgba(0,0,0,.25); }
.card-muted  { background: rgba(30,30,30,.5); }
.card-icon { width: 48px; height: 48px; color: var(--primary); margin-bottom: 1rem; }
.card h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: .35rem; white-space: nowrap; }
.card p  { font-size: 1rem; color: var(--fg); }

/* ===================== SERVICES IMAGE ===================== */
.services-img { padding: 5rem 0; background: var(--bg3); }
.services-img img {
  width: 100%; border-radius: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(0,0,0,.5);
}

/* ===================== BENEFITS ===================== */
.benefits { padding: 6rem 0; background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: .75rem; }
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto 3.5rem; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.benefit-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 2rem;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: hsla(16,100%,60%,.4);
  box-shadow: 0 8px 30px hsla(16,100%,60%,.06);
}
.benefit-icon {
  width: 56px; height: 56px;
  background: var(--primary10); border: 1px solid var(--primary20);
  border-radius: 1rem; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.benefit-icon svg { width: 28px; height: 28px; color: var(--primary); }
.benefit-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.benefit-card p  { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* ===================== TRACKING ===================== */
.tracking { padding: 6rem 0; background: var(--bg); border-bottom: 1px solid var(--border); overflow: hidden; position: relative; }
.tracking::before, .tracking::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.tracking::before { width: 500px; height: 500px; background: var(--primary10); filter: blur(120px); top: -100px; left: -150px; }
.tracking::after  { width: 600px; height: 600px; background: var(--primary10); filter: blur(150px); bottom: -200px; right: -200px; }

.tracking-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--primary10); color: var(--primary);
  border: 1px solid var(--primary20); padding: .35rem 1rem;
  border-radius: 999px; font-weight: 700; font-size: .8rem;
  letter-spacing: .05em; margin-bottom: 1.25rem;
}
.tracking-badge svg { width: 16px; height: 16px; }
.tracking h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); margin-bottom: 1.1rem; }
.tracking .section-sub { margin-bottom: 4rem; }

.tracking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Map */
.map-wrap { position: relative; max-width: 480px; aspect-ratio: 1; }
.map-wrap .bg-glow { position: absolute; inset: 0; background: var(--primary10); border-radius: 50%; filter: blur(100px); pointer-events: none; }

.map-wrap {
  max-width: 560px;
}

.map-info {
  max-width: 560px;
}

.map-info {
  margin-top: 2rem; background: rgba(22,22,22,.6);
  border: 1px solid var(--border); border-radius: 1.25rem; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.map-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.map-info-icon { background: var(--primary10); padding: .7rem; border-radius: .75rem; flex-shrink: 0; }
.map-info-icon svg { width: 22px; height: 22px; color: var(--primary); }
.map-info-item h4 { font-size: .95rem; margin-bottom: .2rem; }
.map-info-item p  { font-size: .83rem; color: var(--muted); line-height: 1.55; }
.divider { height: 1px; background: var(--border); }

/* Phone */
.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-glow {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 280px; height: 50%; background: var(--primary10); filter: blur(60px); border-radius: 50%; pointer-events: none;
}
.phone {
  position: relative; width: 320px; height: 660px;
  background: var(--bg2); border-radius: 2.8rem;
  border: 10px solid #2a2a2a;
  box-shadow: 0 25px 50px rgba(0,0,0,.7), 0 0 40px hsla(16,100%,60%,.1);
  overflow: hidden; display: flex; flex-direction: column;
  animation: float 4s ease-in-out infinite;
}
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 90px; height: 22px; background: #2a2a2a; border-radius: 0 0 .9rem .9rem; z-index: 10; }
.phone-statusbar { display: flex; justify-content: space-between; align-items: center; padding: .4rem 1.2rem .2rem; font-size: .65rem; color: var(--muted); position: relative; z-index: 5; }
.phone-statusbar .icons { display: flex; gap: .3rem; align-items: center; }
.phone-statusbar svg { width: 12px; height: 12px; }
.phone-header { display: flex; justify-content: space-between; align-items: center; padding: .75rem 1.25rem; background: rgba(20,20,20,.8); border-bottom: 1px solid rgba(255,255,255,.06); }
.phone-header h3 { font-size: 1rem; font-weight: 700; }
.online-badge { display: flex; align-items: center; gap: .3rem; background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2); padding: .2rem .55rem; border-radius: 999px; }
.online-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: blink 2s infinite; }
.online-badge span { font-size: .62rem; font-weight: 700; color: #22c55e; letter-spacing: .06em; }
.phone-body { flex: 1; display: flex; flex-direction: column; padding: .75rem; gap: .6rem; overflow: hidden; }
.phone-map {
  flex: 1; background: #111; border-radius: 1.1rem; border: 1px solid var(--border);
  position: relative; overflow: hidden;
  background-image: radial-gradient(hsla(16,100%,60%,.15) 1px, transparent 1px);
  background-size: 20px 20px;
}
.phone-marker {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%);
  animation: float 2s ease-in-out infinite;
}
.phone-marker svg { width: 40px; height: 40px; color: var(--primary); }
.phone-marker-shadow { width: 16px; height: 4px; background: rgba(0,0,0,.5); filter: blur(3px); border-radius: 50%; margin: 0 auto; }
.phone-info-card {
  position: absolute; bottom: .75rem; left: .75rem; right: .75rem;
  background: rgba(0,0,0,.8); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.08); border-radius: .85rem; padding: .65rem .85rem;
}
.phone-info-card .row { display: flex; justify-content: space-between; align-items: flex-start; }
.phone-info-card .vehicle { font-size: .8rem; font-weight: 700; }
.phone-info-card .address { font-size: .65rem; color: var(--muted); margin-top: 1px; }
.phone-info-card .speed { font-size: .8rem; font-weight: 700; color: var(--primary); text-align: right; }
.phone-info-card .status { font-size: .65rem; color: var(--muted); margin-top: 1px; }
.phone-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.phone-action-btn { background: var(--bg3); border: 1px solid var(--border); border-radius: .85rem; padding: .6rem; display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.phone-action-btn svg { width: 18px; height: 18px; color: var(--fg); }
.phone-action-btn span { font-size: .6rem; font-weight: 600; color: var(--fg); }
.phone-cta-btn { background: var(--primary); color: #fff; border-radius: .85rem; padding: .9rem; font-weight: 700; font-size: .78rem; transition: background .2s; }
.phone-cta-btn:hover { background: var(--primary90); }
.phone-indicator { height: 4px; width: 33%; background: rgba(255,255,255,.2); border-radius: 999px; margin: 0 auto .5rem; }

/* ===================== COVERAGE ===================== */
.coverage { padding: 5rem 0; background: var(--primary); }
.coverage h2 { color: #fff; font-size: clamp(1.7rem,3vw,2.5rem); margin-bottom: 3rem; text-align: center; }
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.25rem;
}
.vehicle-item {
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  background: rgba(0,0,0,.12); border: 1px solid rgba(255,255,255,.15);
  border-radius: 1rem;
  transition: background .2s, transform .2s; backdrop-filter: blur(4px);
  aspect-ratio: 1;
  justify-content: center;
}
.vehicle-item:hover { background: rgba(0,0,0,.25); transform: translateY(-3px); }
.vehicle-item svg { width: 40px; height: 40px; color: #fff; }
.vehicle-item span { font-size: .8rem; font-weight: 600; color: #fff; text-align: center; line-height: 1.3; }

/* ===================== CONTACT ===================== */
.contact-section { padding: 6rem 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-tag {
  display: inline-block; background: var(--primary10);
  color: var(--primary); border: 1px solid var(--primary20);
  font-weight: 700; padding: .35rem 1rem; border-radius: 999px;
  font-size: .8rem; margin-bottom: 1.25rem;
}
.contact-left h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1rem; line-height: 1.15; }
.contact-left p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }
.contact-phone-row { display: flex; align-items: center; gap: 1rem; }
.contact-phone-icon { background: var(--bg3); border: 1px solid var(--border); border-radius: 50%; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; }
.contact-phone-icon svg { width: 22px; height: 22px; color: var(--primary); }
.contact-phone-info small { display: block; font-size: .8rem; color: var(--muted); margin-bottom: 2px; }
.contact-phone-info strong { font-size: 1.2rem; }

.contact-form-box {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 2rem; padding: 2.5rem;
  position: relative; overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}
.contact-form-box::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px; background: var(--primary20); filter: blur(100px);
  pointer-events: none; border-radius: 50%;
}
.contact-form-box h3 { font-size: 1.4rem; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.form-group { margin-bottom: 1.25rem; position: relative; z-index: 1; }
.form-group label { display: block; font-size: .85rem; color: rgba(255,255,255,.85); margin-bottom: .4rem; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.18);
  color: #fff; padding: .8rem 1rem; border-radius: .65rem;
  font-family: inherit; font-size: .95rem;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px hsla(16,100%,60%,.15); }
.form-group textarea { resize: none; height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23aaa' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-error { color: #f87171; font-size: .78rem; margin-top: .3rem; display: none; }
.form-error.show { display: block; }
.btn-submit {
  width: 100%; background: var(--primary); color: #fff;
  padding: .95rem; border-radius: .75rem; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  position: relative; z-index: 1;
}
.btn-submit:hover { background: var(--primary90); }
.btn-submit:active { transform: scale(.98); }
.btn-submit svg { width: 20px; height: 20px; }
.btn-submit .spinner { width: 20px; height: 20px; border: 3px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; display: none; }
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .send-icon { display: none; }

/* ===================== GUARANTEE ===================== */
.guarantee { padding: 5rem 0; background: var(--bg3); border-top: 1px solid var(--border); text-align: center; }
.guarantee-badge {
  width: 240px; height: 240px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), hsla(16,100%,60%,.6));
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  margin: 0 auto 2rem; border: 4px solid var(--bg);
}
.guarantee-badge span:first-child { font-size: 2.8rem; font-weight: 900; font-family: 'Outfit', sans-serif; color: #fff; }
.guarantee-badge span:nth-child(2) { font-size: 1.2rem; font-weight: 700; color: #fff; }
.guarantee-badge span:nth-child(3) { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.9); }
.guarantee p { color: var(--muted); max-width: 600px; margin: 0 auto; line-height: 1.75; }

/* ===================== CONTACTS SECTION ===================== */
.contacts-section { padding: 5rem 0; background: var(--bg); border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.contacts-section::before { content: ''; position: absolute; width: 800px; height: 400px; background: var(--primary10); filter: blur(120px); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.contacts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 1.5rem; position: relative; z-index: 1; }
.contact-method {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 2.25rem 1.5rem; border-radius: 1.25rem;
  background: var(--bg3); border: 1px solid var(--border);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.contact-method:hover { transform: translateY(-4px); border-color: hsla(16,100%,60%,.4); box-shadow: 0 8px 28px hsla(16,100%,60%,.06); }
.contact-method-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary10); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: transform .25s, background .25s;
}
.contact-method:hover .contact-method-icon { transform: scale(1.1); background: var(--primary20); }
.contact-method-icon svg { width: 30px; height: 30px; color: var(--primary); }
.contact-method h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.contact-method .value { color: var(--primary); font-weight: 600; margin-bottom: .25rem; font-size: .9rem; }
.contact-method .desc  { color: var(--muted); font-size: .82rem; }

/* ===================== FOOTER ===================== */
.footer { background: var(--bg3); border-top: 1px solid var(--border); color: var(--fg); }
.footer-top { border-bottom: 1px solid var(--border); padding: 2rem 0; }
.footer-top-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-top-item { display: flex; align-items: center; gap: 1rem; }
.footer-top-icon { background: var(--primary10); padding: 1rem; border-radius: .85rem; }
.footer-top-icon svg { width: 30px; height: 30px; color: var(--primary); display: block; }
.footer-top-item small { font-size: .75rem; color: var(--muted); font-weight: 500; letter-spacing: .04em; display: block; margin-bottom: 2px; }
.footer-top-item strong { font-size: 1rem; font-weight: 700; }
.footer-main { padding: 3rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; }
.footer-brand p { color: var(--muted); font-size: .9rem; max-width: 360px; line-height: 1.7; margin: 1rem 0 1.5rem; }
.btn-wa-footer {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(37,211,102,.1); color: var(--whatsapp);
  padding: .45rem 1rem; border-radius: .5rem; font-weight: 600; font-size: .85rem;
  transition: background .25s, color .25s;
}
.btn-wa-footer:hover { background: var(--whatsapp); color: #fff; }
.footer h4 { font-size: 1rem; margin-bottom: 1.25rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer ul li a,
.footer ul li button { color: var(--muted); font-size: .88rem; transition: color .2s; background: none; text-align: left; }
.footer ul li a:hover,
.footer ul li button:hover { color: var(--primary); }
.footer-contact-item { display: flex; align-items: center; gap: .5rem; color: var(--muted); font-size: .88rem; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--muted); font-size: .83rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--muted); font-size: .83rem; transition: color .2s; }
.footer-links a:hover { color: var(--primary); }

/* ===================== FLOATING WHATSAPP ===================== */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 99;
  width: 58px; height: 58px; background: var(--whatsapp);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  animation: pulseWA 2s infinite;
  transition: transform .3s cubic-bezier(.175,.885,.32,1.275), box-shadow .3s;
  color: #fff; font-size: 30px;
}
.wa-float:hover { transform: scale(1.1) translateY(-4px); box-shadow: 0 10px 30px rgba(37,211,102,.5); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ===================== TOAST ===================== */
.toast {
  position: fixed; bottom: 5.5rem; right: 1.75rem; z-index: 999;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: .85rem; padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  transform: translateY(20px); opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  max-width: 300px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast strong { display: block; font-size: .95rem; margin-bottom: .2rem; }
.toast p { color: var(--muted); font-size: .82rem; }

/* ===================== WHATSAPP REDIRECT OVERLAY ===================== */
.wa-redirect-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.wa-redirect-overlay.active { opacity: 1; pointer-events: all; }

.wa-redirect-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 2rem; padding: 3rem 2.5rem;
  text-align: center; max-width: 420px; width: 90%;
  box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 60px rgba(37,211,102,.1);
  transform: scale(.9) translateY(20px);
  transition: transform .4s cubic-bezier(.175,.885,.32,1.275);
}
.wa-redirect-overlay.active .wa-redirect-card { transform: scale(1) translateY(0); }

.wa-redirect-icon {
  width: 90px; height: 90px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  animation: pulseWAOverlay 1.5s ease-out infinite;
}
@keyframes pulseWAOverlay {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-redirect-icon svg { width: 50px; height: 50px; }

.wa-redirect-dots { display: flex; justify-content: center; gap: .5rem; margin-bottom: 1.25rem; }
.wa-redirect-dots span {
  width: 10px; height: 10px; background: #25D366;
  border-radius: 50%; animation: dotBounce .9s ease-in-out infinite;
}
.wa-redirect-dots span:nth-child(2) { animation-delay: .2s; }
.wa-redirect-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dotBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.wa-redirect-card h3 { font-size: 1.5rem; margin-bottom: .75rem; }
.wa-redirect-card p  { color: var(--muted); line-height: 1.6; margin-bottom: 1.75rem; font-size: .95rem; }
.wa-redirect-card p strong { color: #25D366; }
.wa-redirect-card small { color: var(--muted); font-size: .8rem; margin-top: .75rem; display: block; }

.wa-redirect-bar {
  width: 100%; height: 5px; background: var(--border);
  border-radius: 999px; overflow: hidden;
}
.wa-redirect-progress {
  height: 100%; background: #25D366; border-radius: 999px;
  width: 0%;
  transition: none;
}
.wa-redirect-overlay.active .wa-redirect-progress {
  animation: progressFill 2.5s linear forwards;
}
@keyframes progressFill { from { width: 0% } to { width: 100% } }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .tracking-grid  { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .phone-wrap     { justify-content: center; }
  .map-wrap       { margin: 0 auto; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
  .cards-grid     { grid-template-columns: 1fr; }
  .vehicles-grid  { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .nav            { display: none; }
  .hamburger      { display: flex; }
  .footer-top-grid{ grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .hero h1        { font-size: 1.9rem; }
  .phone          { width: 240px; height: 500px; }
  .container-wide { padding: 0 1rem; }
  .vehicles-grid  { grid-template-columns: repeat(2, 1fr); }
  .card h3        { white-space: normal; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr; }
}

.vehicle-item i {
  width: 42px;
  height: 42px;
  color: var(--primary);
  margin-bottom: 14px;
}
