/* ============================================
   SKYLUXE EV TRANSFERS — STYLES.CSS
   Ultra-Premium Black & White Neon Theme
   Mobile-First | Fully Responsive
============================================ */

/* ============ CSS CUSTOM PROPERTIES ============ */
:root {
  /* Colors */
  --black: #000000;
  --black-soft: #080808;
  --black-card: #0d0d0d;
  --black-elevated: #111111;
  --black-border: #1a1a1a;
  --black-hover: #161616;

  --white: #ffffff;
  --white-soft: #f5f5f5;
  --white-muted: #cccccc;
  --white-dim: #888888;
  --white-faint: #444444;

  --neon-white: #ffffff;
  --neon-glow: rgba(255, 255, 255, 0.15);
  --neon-glow-strong: rgba(255, 255, 255, 0.35);
  --neon-glow-ultra: rgba(255, 255, 255, 0.6);

  --accent: #ffffff;
  --accent-dim: rgba(255, 255, 255, 0.08);
  --accent-border: rgba(255, 255, 255, 0.12);
  --accent-border-hover: rgba(255, 255, 255, 0.35);

  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --whatsapp-glow: rgba(37, 211, 102, 0.3);

  /* Typography */
  --font-primary: 'Space Grotesk', 'Inter', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-mono: 'Space Grotesk', monospace;

  /* Font Sizes — Fluid */
  --fs-xs: clamp(0.7rem, 1.5vw, 0.75rem);
  --fs-sm: clamp(0.8rem, 1.8vw, 0.875rem);
  --fs-base: clamp(0.9rem, 2vw, 1rem);
  --fs-md: clamp(1rem, 2.2vw, 1.125rem);
  --fs-lg: clamp(1.1rem, 2.5vw, 1.25rem);
  --fs-xl: clamp(1.25rem, 3vw, 1.5rem);
  --fs-2xl: clamp(1.5rem, 4vw, 2rem);
  --fs-3xl: clamp(1.8rem, 5vw, 2.5rem);
  --fs-4xl: clamp(2.2rem, 6vw, 3.5rem);
  --fs-hero: clamp(2.8rem, 8vw, 5.5rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;
  --space-4xl: 7rem;

  /* Section Padding */
  --section-py: clamp(4rem, 8vw, 7rem);

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 20px rgba(255, 255, 255, 0.08), 0 0 40px rgba(255, 255, 255, 0.04);
  --shadow-glow-strong: 0 0 30px rgba(255, 255, 255, 0.15), 0 0 60px rgba(255, 255, 255, 0.08);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index */
  --z-base: 1;
  --z-card: 10;
  --z-nav: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-loader: 9999;
}

/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--white-muted);
  background-color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: var(--fs-base);
}

::selection {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--white-faint);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--white-dim);
}

/* ============ UTILITY CLASSES ============ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  border: 1px solid var(--accent-border);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
  background: var(--accent-dim);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.section-desc {
  font-size: var(--fs-md);
  color: var(--white-dim);
  max-width: 580px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

.text-glow {
  color: var(--white);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
               0 0 40px rgba(255, 255, 255, 0.2),
               0 0 80px rgba(255, 255, 255, 0.1);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  transition: var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3),
              0 0 60px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-primary i {
  transition: transform var(--transition-base);
}

.btn-primary:hover i {
  transform: translateX(4px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border: 2px solid var(--whatsapp);
  box-shadow: 0 0 20px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  box-shadow: 0 0 30px var(--whatsapp-glow), 0 0 60px rgba(37, 211, 102, 0.15);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: var(--fs-xs);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============ LOADER ============ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: var(--z-loader);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.loader-text {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--white);
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--black-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-pill);
  animation: loaderFill 2s ease forwards;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.loader-tagline {
  font-size: var(--fs-sm);
  color: var(--white-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 0.5s both;
}

@keyframes loaderFill {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ============ NAVIGATION ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 1.2rem 0;
  transition: var(--transition-base);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: var(--transition-base);
  z-index: -1;
}

.navbar.scrolled::before {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--accent-border);
}

.navbar.scrolled {
  padding: 0.8rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.nav-logo .logo-icon {
  font-size: 1.3rem;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.7));
  transition: var(--transition-base);
}

.nav-logo:hover .logo-icon {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 1));
}

.nav-logo .logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
}

.nav-logo .logo-sub {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--white-dim);
  align-self: flex-end;
  padding-bottom: 2px;
  padding-left: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--white-muted);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  letter-spacing: 0.02em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 60%;
}

.nav-link.nav-cta {
  background: var(--white);
  color: var(--black);
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  margin-left: 0.5rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.nav-link.nav-cta::after {
  display: none;
}

.nav-link.nav-cta:hover {
  background: transparent;
  color: var(--white);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
  outline: 1px solid var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
  z-index: calc(var(--z-nav) + 1);
}

.hamburger-line {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: var(--radius-pill);
  transition: var(--transition-base);
  transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: calc(var(--z-nav) - 1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.mobile-link {
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--white-muted);
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  transition: var(--transition-base);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-overlay.active .mobile-link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-overlay.active .mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-overlay.active .mobile-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-overlay.active .mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-overlay.active .mobile-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-overlay.active .mobile-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-overlay.active .mobile-link:nth-child(6) { transition-delay: 0.3s; }

.mobile-link:hover,
.mobile-link:focus {
  color: var(--white);
  text-shadow: 0 0 15px rgba(255,255,255,0.6);
}

.mobile-cta {
  margin-top: var(--space-sm);
  padding: 0.7rem 2rem;
  background: var(--white);
  color: var(--black) !important;
  border-radius: var(--radius-pill);
  font-size: var(--fs-md) !important;
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-container {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
  will-change: opacity;
}

.hero-bg-img.active {
  opacity: 1;
  animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.65) 40%,
    rgba(0, 0, 0, 0.85) 80%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 var(--space-lg);
  max-width: 900px;
  width: 100%;
  padding-top: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
  border: 1px solid var(--accent-border);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  margin-bottom: var(--space-lg);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--whatsapp);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--whatsapp);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px var(--whatsapp); }
  50% { box-shadow: 0 0 16px var(--whatsapp), 0 0 30px rgba(37, 211, 102, 0.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
}

.title-line {
  display: block;
}

.title-accent {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.3),
               0 0 80px rgba(255, 255, 255, 0.15);
}

.hero-subtitle {
  font-size: var(--fs-md);
  color: var(--white-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto var(--space-xl);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.hero-indicators {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: var(--space-sm);
}

.indicator {
  width: 24px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-base);
  border: none;
  padding: 0;
}

.indicator.active {
  background: var(--white);
  width: 40px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.hero-scroll {
  position: absolute;
  bottom: 8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  animation: scrollBounce 2s ease infinite;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white-dim), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.hero-stats-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--accent-border);
  padding: 1rem var(--space-lg);
}

.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.strip-number {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.strip-label {
  font-size: var(--fs-xs);
  color: var(--white-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.strip-divider {
  width: 1px;
  height: 30px;
  background: var(--accent-border);
}

/* ============ ANIMATION CLASSES ============ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-up.delay-1 { animation-delay: 0.2s; }
.fade-up.delay-2 { animation-delay: 0.4s; }
.fade-up.delay-3 { animation-delay: 0.6s; }
.fade-up.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Reveal Animations */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ============ ABOUT SECTION ============ */
.about {
  background: var(--black-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: clamp(350px, 50vw, 520px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow);
  filter: brightness(0.85);
}

.about-img-wrapper:hover .about-img {
  transform: scale(1.03);
  filter: brightness(0.95);
}

.about-img-border {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent-border);
  pointer-events: none;
}

.about-float-card {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--black-elevated);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  transition: var(--transition-base);
}

.about-float-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-strong);
  border-color: var(--accent-border-hover);
}

.about-float-card .float-icon {
  font-size: 1.5rem;
}

.about-float-card strong {
  display: block;
  font-size: var(--fs-sm);
  color: var(--white);
  font-weight: 600;
}

.about-float-card span {
  font-size: var(--fs-xs);
  color: var(--white-dim);
}

.about-text {
  font-size: var(--fs-md);
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.about-feature:hover {
  border-color: var(--accent-border-hover);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.feature-icon-wrap {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--white);
}

.about-feature strong {
  display: block;
  font-size: var(--fs-sm);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.about-feature span {
  font-size: var(--fs-xs);
  color: var(--white-dim);
}

/* ============ VEHICLES SECTION ============ */
.vehicles {
  background: var(--black);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.vehicle-card {
  background: var(--black-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  position: relative;
  cursor: default;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-border-hover);
  box-shadow: var(--shadow-glow-strong), var(--shadow-lg);
}

.vehicle-card.featured {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-glow);
}

.vehicle-card.featured:hover {
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.2),
              0 0 80px rgba(255, 255, 255, 0.1),
              var(--shadow-lg);
}

.vehicle-featured-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--white);
  color: var(--black);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.35rem;
  text-transform: uppercase;
}

.vehicle-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.vehicle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  filter: brightness(0.8);
}

.vehicle-card:hover .vehicle-img {
  transform: scale(1.06);
  filter: brightness(0.6);
}

.vehicle-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 5;
}

.vehicle-badge.soon {
  background: rgba(255, 200, 0, 0.15);
  border-color: rgba(255, 200, 0, 0.4);
  color: #ffd700;
}

.vehicle-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-base);
  z-index: 10;
}

.vehicle-card:hover .vehicle-overlay {
  opacity: 1;
}

.coming-text {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.vehicle-info {
  padding: var(--space-lg);
}

.vehicle-name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.vehicle-type {
  font-size: var(--fs-xs);
  color: var(--white-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.vehicle-specs {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.spec {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-xs);
  color: var(--white-dim);
}

.spec i {
  color: var(--white-faint);
  font-size: 0.75rem;
}

.vehicle-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.v-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white-dim);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--accent-border);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
}

.vehicle-card:hover .v-tag {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white-muted);
}

.vehicle-card.coming-soon {
  opacity: 0.7;
}

/* ============ STATS SECTION ============ */
.stats {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stats-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.15) grayscale(1);
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.stats .container {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.stat-item {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border-hover);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-glow);
}

.stat-icon {
  font-size: 1.4rem;
  color: var(--white-dim);
  margin-bottom: var(--space-md);
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--white-muted);
  display: inline;
  margin-left: 2px;
}

.stat-label {
  display: block;
  font-size: var(--fs-xs);
  color: var(--white-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ============ DESTINATIONS SECTION ============ */
.destinations {
  background: var(--black-soft);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: var(--space-md);
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.dest-card.dest-large {
  grid-column: span 2;
  grid-row: span 2;
}

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-slow);
  filter: brightness(0.6) grayscale(0.3);
}

.dest-card:hover .dest-img {
  transform: scale(1.08);
  filter: brightness(0.4) grayscale(0);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
  transition: var(--transition-base);
}

.dest-card:hover .dest-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.98) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.dest-content {
  width: 100%;
}

.dest-distance {
  display: block;
  font-size: var(--fs-xs);
  color: var(--white-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  transform: translateY(8px);
  opacity: 0.7;
  transition: var(--transition-base);
}

.dest-card:hover .dest-distance {
  transform: translateY(0);
  opacity: 1;
}

.dest-name {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
  transition: var(--transition-base);
}

.dest-card.dest-large .dest-name {
  font-size: var(--fs-3xl);
}

.dest-desc {
  font-size: var(--fs-sm);
  color: var(--white-muted);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.dest-card:hover .dest-desc {
  max-height: 100px;
  opacity: 1;
}

.dest-content .btn {
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition-base);
}

.dest-card:hover .dest-content .btn {
  transform: translateY(0);
  opacity: 1;
}

/* ============ WHY CHOOSE US SECTION ============ */
.why-us {
  background: var(--black);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.why-left {
  position: sticky;
  top: 6rem;
}

.why-text {
  font-size: var(--fs-md);
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  background: var(--black-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4), transparent);
  opacity: 0;
  transition: var(--transition-base);
}

.why-card:hover {
  border-color: var(--accent-border-hover);
  transform: translateX(8px);
  background: var(--black-elevated);
  box-shadow: var(--shadow-glow);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
  transition: var(--transition-base);
}

.why-card:hover .why-card-icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.why-card-content h4 {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.why-card-content p {
  font-size: var(--fs-sm);
  color: var(--white-dim);
  line-height: 1.6;
}

.why-card-number {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  font-family: var(--font-display);
  line-height: 1;
  pointer-events: none;
  transition: var(--transition-base);
}

.why-card:hover .why-card-number {
  color: rgba(255, 255, 255, 0.07);
}

/* ============ TESTIMONIALS SECTION ============ */
.testimonials {
  background: var(--black-soft);
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--black-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  font-size: var(--fs-md);
  color: #ffd700;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.testimonial-text {
  font-size: var(--fs-md);
  color: var(--white-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.author-avatar {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--white);
}

.testimonial-author strong {
  display: block;
  font-size: var(--fs-sm);
  color: var(--white);
  font-weight: 600;
}

.testimonial-author span {
  font-size: var(--fs-xs);
  color: var(--white-dim);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.test-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black-elevated);
  border: 1px solid var(--accent-border);
  color: var(--white-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  cursor: pointer;
}

.test-btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.test-dots {
  display: flex;
  gap: 0.4rem;
}

.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white-faint);
  transition: var(--transition-base);
  cursor: pointer;
}

.test-dot.active {
  background: var(--white);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

/* ============ CONTACT SECTION ============ */
.contact {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-text {
  font-size: var(--fs-md);
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0.9rem var(--space-md);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  text-decoration: none;
}

.contact-method:hover {
  border-color: var(--accent-border-hover);
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(6px);
  box-shadow: var(--shadow-glow);
}

.contact-method.whatsapp-method {
  border-color: rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.05);
}

.contact-method.whatsapp-method:hover {
  border-color: rgba(37, 211, 102, 0.6);
  background: rgba(37, 211, 102, 0.08);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.15);
}

.method-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.whatsapp-method .method-icon {
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp);
}

.contact-method strong {
  display: block;
  font-size: var(--fs-sm);
  color: var(--white);
  font-weight: 600;
}

.contact-method span {
  font-size: var(--fs-xs);
  color: var(--white-dim);
}

/* Booking Form */
.contact-form-wrap {
  background: var(--black-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
}

.form-title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--white);
  font-weight: 600;
  margin-bottom: var(--space-xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.form-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: var(--fs-sm);
  width: 100%;
  transition: var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' 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.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: var(--black-elevated);
  color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-faint);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.4);
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--white-dim);
  margin-top: var(--space-md);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--accent-border);
  padding-top: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: var(--space-md);
  text-decoration: none;
  transition: var(--transition-base);
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-logo .logo-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5));
}

.footer-logo .logo-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
}

.footer-tagline {
  font-size: var(--fs-sm);
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--white-dim);
  transition: var(--transition-base);
}

.social-link:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.footer-heading {
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a,
.footer-links span {
  font-size: var(--fs-sm);
  color: var(--white-dim);
  transition: var(--transition-fast);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-links i {
  font-size: 0.8rem;
  color: var(--white-faint);
  width: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--accent-border);
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: var(--white-dim);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  font-size: var(--fs-xs);
  color: var(--white-dim);
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ============ FLOATING WHATSAPP BUTTON ============ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  z-index: calc(var(--z-nav) - 1);
  box-shadow: 0 4px 20px var(--whatsapp-glow),
              0 0 40px rgba(37, 211, 102, 0.2);
  transition: var(--transition-spring);
  animation: floatWA 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 30px var(--whatsapp-glow),
              0 0 60px rgba(37, 211, 102, 0.3);
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--black-elevated);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: 500;
  white-space: nowrap;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent-border);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--accent-border);
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

@keyframes floatWA {
  0%, 100% { box-shadow: 0 4px 20px var(--whatsapp-glow), 0 0 40px rgba(37, 211, 102, 0.2); }
  50% { box-shadow: 0 4px 30px var(--whatsapp-glow), 0 0 60px rgba(37, 211, 102, 0.3); }
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 42px;
  height: 42px;
  background: var(--black-elevated);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  color: var(--white-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: calc(var(--z-nav) - 1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition-base);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* ============ FORM SUCCESS MESSAGE ============ */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
  animation: fadeInUp 0.5s ease forwards;
}

.form-success.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--whatsapp);
}

.form-success h3 {
  font-size: var(--fs-xl);
  color: var(--white);
}

.form-success p {
  color: var(--white-dim);
  font-size: var(--fs-sm);
}

/* ============ RESPONSIVE — TABLET (max 1024px) ============ */
@media (max-width: 1024px) {

  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  /* Vehicles */
  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vehicle-card:last-child {
    grid-column: span 2;
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  /* Destinations */
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .dest-card.dest-large {
    grid-column: span 2;
    grid-row: span 1;
    height: 300px;
  }

  .dest-card {
    height: 240px;
  }

  /* Why Us */
  .why-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .why-left {
    position: relative;
    top: auto;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: var(--space-2xl);
  }

  .footer-brand {
    grid-column: span 2;
  }
}

/* ============ RESPONSIVE — MOBILE (max 768px) ============ */
@media (max-width: 768px) {

  /* Hero */
  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .hero-stats-strip {
    gap: 0;
  }

  .strip-item {
    padding: 0 clamp(0.8rem, 3vw, 1.5rem);
  }

  .strip-number {
    font-size: var(--fs-lg);
  }

  .hero-scroll {
    display: none;
  }

  /* Vehicles */
  .vehicles-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Destinations */
  .dest-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .dest-card,
  .dest-card.dest-large {
    grid-column: span 1;
    height: 250px;
  }

  /* Why Cards */
  .why-card {
    flex-direction: column;
    gap: var(--space-md);
  }

  /* Form rows */
  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  /* About features */
  .about-features {
    grid-template-columns: 1fr;
  }

  /* Float card */
  .about-float-card {
    right: 0;
    bottom: -0.5rem;
  }

  /* Floating WA */
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .back-to-top {
    bottom: 1.5rem;
    left: 1.5rem;
  }

  /* Buttons */
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ============ RESPONSIVE — SMALL MOBILE (max 480px) ============ */
@media (max-width: 480px) {

  .container {
    padding: 0 var(--space-md);
  }

  .hero-content {
    padding: 0 var(--space-md);
    padding-top: 5rem;
  }

  .hero-badge {
    font-size: 0.6rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .stat-item {
    padding: var(--space-lg) var(--space-md);
  }

  .vehicle-featured-badge {
    font-size: 0.6rem;
  }

  .strip-divider {
    display: none;
  }

  .hero-stats-strip {
    justify-content: space-around;
  }

  .why-card {
    padding: var(--space-md);
  }

  .contact-form-wrap {
    padding: var(--space-lg);
  }

  .testimonial-card {
    padding: var(--space-lg);
  }

  .dest-card,
  .dest-card.dest-large {
    height: 220px;
  }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============ FOCUS STYLES (Accessibility) ============ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}