@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800;900&display=swap');

:root {
  /* Colors */
  --bg-dark: #263336;
  --bg-darker: #203D54;
  --bg-card: rgba(255, 255, 255, 0.05);
  --text-main: #FFFFFF;
  --text-muted: #B4C6CA;
  
  --accent-neon: #0084E6;
  --accent-glow: rgba(0, 132, 230, 0.4);
  --accent-blue: #0084E6;
  --accent-blue-glow: rgba(0, 132, 230, 0.3);

  /* Geometry & Spacing */
  --radius-sm: 8px;
  --radius-lg: 24px;
  --max-width: 1200px;
}

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

html {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-dark);
  overflow-y: scroll;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ====================
   UTILITIES & GLASSMORPHISM
   ==================== */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.text-gradient {
  background: linear-gradient(90deg, var(--accent-neon) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.glow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  background: var(--accent-neon);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px var(--accent-glow);
  position: relative;
  overflow: hidden;
}

.glow-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shine 5s infinite;
}

.glow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px var(--accent-glow), 0 0 10px var(--accent-neon);
}

.glow-btn-outline {
  background: transparent;
  border: 2px solid var(--accent-blue);
  box-shadow: none;
  color: var(--accent-blue);
}
.glow-btn-outline:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 15px var(--accent-blue-glow);
}

/* ====================
   LAYOUT
   ==================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* ====================
   TOP BAR (ACESSO RÁPIDO)
   ==================== */
.top-bar {
  background: var(--bg-darker);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4px 0;
  display: none; /* Hide on very small screens if necessary, but flex is good */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  max-height: 40px;
}
.header.scrolled .top-bar {
  padding: 0;
  max-height: 0;
  border-bottom: none;
  opacity: 0;
}
@media (min-width: 768px) {
  .top-bar {
    display: block;
  }
}

/* FAQ Accordion */
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.active {
  border-color: rgba(0, 132, 230, 0.3);
  background: rgba(0, 132, 230, 0.02);
}
.faq-question {
  width: 100%;
  background: transparent;
  color: var(--text-main);
  border: none;
  padding: 20px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
  font-family: inherit;
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}
.faq-question svg {
  transition: transform 0.3s;
  color: var(--accent-blue);
  flex-shrink: 0;
}
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  color: var(--text-muted);
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  transition: max-height 0.4s ease-in-out;
  padding-bottom: 24px;
}

.top-bar .container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.top-bar-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  transition: color 0.3s;
}
.top-bar-link:hover {
  color: var(--accent-neon);
}
.top-bar-link svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

/* ====================
   HEADER & NAVBAR
   ==================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow;
  transform: translateZ(0); /* Hardware acceleration */
}
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.header.scrolled .navbar {
  padding: 8px 0;
}
.navbar {
  padding: 12px 0;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -1px;
}
.logo span {
  color: var(--accent-neon);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #333333;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-blue);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; width: 0%; height: 2px;
  background: var(--accent-blue);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.nav-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-blue);
  border: 1px solid var(--accent-blue);
  padding: 6px 14px;
  font-size: 0.75rem;
  border-radius: 4px;
  background: transparent;
  transition: all 0.3s ease;
}
.nav-links a.nav-quote-btn:hover {
  background: var(--accent-blue);
  color: #fff;
  border-color: var(--accent-blue);
  box-shadow: 0 4px 15px var(--accent-blue-glow);
}
.nav-links a.nav-quote-btn::after {
  display: none;
}
.nav-links a.nav-quote-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: #333333;
  background: none;
  border: none;
  cursor: pointer;
}

/* ====================
   HERO
   ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 115px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}
.hero-bg img,
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-bg img {
  animation: slowZoom 20s infinite alternate linear;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent 40%, var(--bg-dark) 100%),
              radial-gradient(circle at right 40%, transparent 40%, var(--bg-dark) 100%);
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--accent-glow);
  color: var(--accent-blue);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  background: rgba(0, 132, 230, 0.1);
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  backdrop-filter: blur(8px);
}
.google-rating:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.google-rating .stars {
  color: #FFB900;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.google-rating span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ====================
   COUNTERS SECTION
   ==================== */
.counters-section {
  padding: 60px 0;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
}
.counters-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.counter-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 10px;
}
.counter-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 132, 230, 0.08);
  color: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  box-shadow: 0 0 20px rgba(0, 132, 230, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.counter-item:hover .counter-icon {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 132, 230, 0.3);
  border: 1px solid rgba(0, 132, 230, 0.2);
}
.counter-icon svg {
  width: 32px;
  height: 32px;
}
.counter-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 5px;
}
.counter-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .counters-grid {
    gap: 40px;
  }
  .counter-item {
    min-width: 45%;
  }
}

/* ====================
   HIGHLIGHT NUMBERS (Assistencia)
   ==================== */
.emergency-banner {
  background: linear-gradient(90deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  border-top: 1px solid var(--accent-glow);
  border-bottom: 1px solid var(--accent-glow);
  padding: 30px 0;
  text-align: center;
  position: relative;
}
.emergency-banner .glow-icon {
  font-size: 2rem;
  color: var(--accent-neon);
  margin-bottom: 10px;
  animation: pulseNeon 2s infinite;
}
.emergency-banner h2 {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.emergency-banner .number {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 20px var(--accent-glow);
  margin: 10px 0;
}

/* ====================
   FEATURES / SERVICES
   ==================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
  justify-content: center;
}

.advanced-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0;
  gap: 0;
}

.advanced-cards .box {
  position: relative;
  width: 320px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 30px;
  transition: 0.5s;
}

.advanced-cards .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  width: 50%;
  height: 100%;
  text-decoration: none;
  background: #fff;
  border-radius: var(--radius-sm);
  transform: skewX(15deg);
  transition: 0.5s;
}

.advanced-cards .box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  width: 50%;
  height: 100%;
  background: #fff;
  border-radius: var(--radius-sm);
  transform: skewX(15deg);
  transition: 0.5s;
  filter: blur(30px);
}

.advanced-cards .box:hover:before,
.advanced-cards .box:hover:after {
  transform: skewX(0deg);
  left: 20px;
  width: calc(100% - 40px);
}

/* Gradients using Client Colors */
.advanced-cards .box:nth-child(1):before,
.advanced-cards .box:nth-child(1):after {
  background: linear-gradient(315deg, var(--bg-darker), var(--accent-blue));
}

.advanced-cards .box:nth-child(2):before,
.advanced-cards .box:nth-child(2):after {
  background: linear-gradient(315deg, var(--bg-dark), var(--accent-neon));
}

.advanced-cards .box:nth-child(3):before,
.advanced-cards .box:nth-child(3):after {
  background: linear-gradient(315deg, #111111, var(--accent-blue));
}

.advanced-cards .box span {
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 5;
  pointer-events: none;
}

.advanced-cards .box span::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: 0.1s;  
  animation: animate 2s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.advanced-cards .box:hover span::before {
  top: -50px; left: 50px;
  width: 100px; height: 100px;
  opacity: 1;
}

.advanced-cards .box span::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 100%; height: 100%;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: 0.5s;
  animation: animate 2s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  animation-delay: -1s;
}

.advanced-cards .box:hover span:after {
  bottom: -50px; right: 50px;
  width: 100px; height: 100px;
  opacity: 1;
}

@keyframes animate {
  0%, 100% { transform: translateY(10px); }
  50% { transform: translate(-10px); }
}

.advanced-cards .box .content {
  position: relative;
  left: 0;
  padding: 40px 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
  transition: 0.5s;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.advanced-cards .box:hover .content {
  left: -25px;
  padding: 60px 30px;
}

.advanced-cards .box .content .f-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.advanced-cards .box .content h2 {
  font-size: 1.6em;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.advanced-cards .box .content p {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.advanced-cards .box .content a {
  display: inline-block;
  font-size: 1em;
  color: var(--bg-dark);
  background: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.advanced-cards .box .content a:hover {
  background: var(--accent-neon);
  color: #fff;
  box-shadow: 0 0 15px var(--accent-glow);
}

/* ====================
   SIMPLE CARDS (Assistencia)
   ==================== */
.vehicle-card {
  padding: 30px 25px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 132, 230, 0.15);
  border-color: rgba(0, 132, 230, 0.4);
}

/* Translucent angled glass sweep */
.vehicle-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-25deg);
  transition: none;
  z-index: -1;
}

.vehicle-card:hover::before {
  animation: diagonalShine 1s ease-out;
}

@keyframes diagonalShine {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* ====================
   CRM FORM STYLES
   ==================== */
.pwr_form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.pwr_form input[type="text"],
.pwr_form select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.pwr_form input[type="text"]:focus,
.pwr_form select:focus {
  border-color: var(--accent-neon);
  outline: none;
}
.pwr_form select option {
  background: var(--bg-dark);
  color: #fff;
}
.pwr_form .vehicle-type-list {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}
.pwr_form .vehicle-type-list li {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pwr_form .vehicle-type-list li:hover {
  background: rgba(255, 255, 255, 0.1);
}
.pwr_form .vehicle-type-list li label {
  margin: 0;
  cursor: pointer;
  color: #fff;
}
.pwr_form .option-input {
  accent-color: var(--accent-neon);
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.pwr_form .required {
  border-color: #ff4757 !important;
}
.pwr_form .input-true {
  border-color: #2ed573 !important;
}
.feature-card {
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  border-color: rgba(0, 132, 230, 0.3);
}
.feature-card .f-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(0, 132, 230, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-neon);
  margin-bottom: 24px;
}
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #fff;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ====================
   FOOTER
   ==================== */
.footer {
  background: var(--bg-darker);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}
.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #fff;
}
.footer-col p, .footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent-blue); }

.copy {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ====================
   ANIMATIONS & REVEALS
   ==================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}
@keyframes pulseNeon {
  0% { text-shadow: 0 0 5px var(--accent-glow); opacity: 0.8; }
  50% { text-shadow: 0 0 20px var(--accent-neon), 0 0 40px var(--accent-neon); opacity: 1; }
  100% { text-shadow: 0 0 5px var(--accent-glow); opacity: 0.8; }
}
@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* ====================
   WHATSAPP FLOAT
   ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 85px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 999;
  transition: all 0.3s ease;
  animation: floatBounce 3s infinite ease-in-out;
}
.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  animation-play-state: paused;
}
@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 35px;
  width: 45px;
  height: 45px;
  background: rgba(32, 61, 84, 0.9);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent-neon);
  color: #000;
  transform: translateY(-5px);
}
.back-to-top svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ====================
   MINIMAL APP BUTTONS
   ==================== */
.app-btn-minimal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-family: inherit;
  transition: all 0.3s ease;
}
.app-btn-minimal:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.app-btn-minimal svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}
.app-btn-minimal .btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.app-btn-minimal .btn-text-small {
  font-size: 0.55rem;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.app-btn-minimal .btn-text-large {
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

/* ====================
   REVIEW SCROLLER
   ==================== */
.scroller {
  max-width: 100%;
  overflow: hidden;
  padding: 40px 0;
  -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}
.scroller__inner {
  display: flex;
  gap: 20px;
  width: max-content;
  flex-wrap: nowrap;
  animation: scrollMarquee 45s linear infinite;
}
.scroller:hover .scroller__inner {
  animation-play-state: paused;
}
@keyframes scrollMarquee {
  to { transform: translateX(calc(-50% - 10px)); }
}

.review-card {
  width: 350px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: border-color 0.3s;
}
.review-card:hover {
  border-color: rgba(255, 185, 0, 0.4);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  border: 2px solid var(--accent-glow);
}
.review-header .name {
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
}
.review-stars {
  color: #FFB900;
  font-size: 1.1rem;
}
.review-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ====================
   MAP SECTION
   ==================== */
.map-section {
  position: relative;
  width: 100%;
  height: 550px;
  background: var(--bg-dark);
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: invert(90%) hue-rotate(190deg) brightness(90%) contrast(110%);
}
.map-overlay-card {
  position: absolute;
  top: auto;
  bottom: 40px;
  right: 10vw;
  background: rgba(32, 61, 84, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: var(--radius-lg);
  width: 380px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  border: 1px solid var(--accent-glow);
  z-index: 10;
}
.map-overlay-card h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 15px;
}
.map-overlay-card .map-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.6;
}
.map-overlay-card .address-block {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.map-overlay-card .address-block svg {
  flex-shrink: 0;
  color: var(--accent-blue);
  margin-top: 3px;
}
.map-overlay-card .address-block h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 5px;
}
.map-overlay-card .address-block p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.map-route-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 0;
}

/* ====================
   MEDIA QUERIES
   ==================== */
@media (max-width: 768px) {
  .map-section {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }
  .map-section iframe {
    height: 400px;
  }
  .map-overlay-card {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 90%;
    margin: -100px auto 40px auto;
  }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 30px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links a.nav-quote-btn {
    margin-left: 0;
    margin-top: 15px;
    padding: 15px;
    text-align: center;
  }
  .nav-links.nav-active { right: 0; }
  .mobile-menu-btn { display: block; z-index: 101; }
  
  .hero h1 { font-size: 2.5rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: 100%; text-align: center; }
  
  .emergency-banner .number { font-size: 2rem; }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}
