/* ============================================
   EasyCar Locações - CSS Completo
   Site otimizado para Hostgator
   ============================================ */

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

:root {
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --secondary: #43A047;
    --secondary-dark: #2E7D32;
    --accent: #66BB6A;
    --accent-dark: #388E3C;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Remove tap highlight on mobile */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1a2e;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .container { padding: 0 24px; }
}
@media (min-width: 1024px) {
    .container { padding: 0 32px; }
}

.text-center { text-align: center; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.navbar-logo img {
    height: 56px;
    width: auto;
}

.navbar-menu {
    display: none;
    gap: 32px;
}

@media (min-width: 768px) {
    .navbar-menu {
        display: flex;
    }
}

.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-whatsapp-nav {
    display: none;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .btn-whatsapp-nav {
        display: flex;
    }
}

.btn-whatsapp-nav:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.btn-whatsapp-nav svg {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.mobile-menu-btn.active svg {
    transform: rotate(90deg);
}

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

.mobile-menu.open {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: var(--gray-700);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

/* Video Background */
.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(46, 125, 50, 0.85), 
        rgba(27, 94, 32, 0.80), 
        rgba(102, 187, 106, 0.75));
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 0;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease forwards, bounceSubtle 3s ease-in-out infinite 1s;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-title .highlight {
    background: linear-gradient(90deg, #FFD54F, #FFF176, #FFD54F, #FFEB3B, #FFD54F);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--secondary);
    color: white;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 18px;
    box-shadow: var(--shadow-2xl);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(67, 160, 71, 0.4);
}

.btn-primary svg {
    width: 28px;
    height: 28px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 18px;
    box-shadow: var(--shadow-2xl);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    transform: scale(1.05);
}

/* Hero Tags */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-tag:nth-child(1) { animation: bounceSubtle 3s ease-in-out infinite; }
.hero-tag:nth-child(2) { animation: bounceSubtle 3s ease-in-out infinite 0.5s; }
.hero-tag:nth-child(3) { animation: bounceSubtle 3s ease-in-out infinite 1s; }

.hero-tag svg {
    width: 20px;
    height: 20px;
    color: #86efac;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.6);
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

@media (max-width: 768px) {
    .wave-divider svg {
        height: 30px;
    }
}

/* ============================================
   STATS COUNTER SECTION
   ============================================ */
.stats-section {
    padding: 48px 0;
    background: white;
}

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

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray-600);
    font-weight: 500;
    margin-top: 8px;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 16px;
}

.section-badge.secondary {
    background: rgba(67, 160, 71, 0.1);
    color: var(--secondary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-title .highlight {
    color: var(--primary);
}

.section-title .highlight-secondary {
    color: var(--secondary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

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

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon.secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    box-shadow: 0 8px 20px rgba(67, 160, 71, 0.3);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.benefit-text {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

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

.about-content p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

@media (min-width: 640px) {
    .about-buttons {
        flex-direction: row;
    }
}

.btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    color: var(--gray-900);
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    color: var(--primary);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-2xl);
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    display: none;
}

@media (min-width: 768px) {
    .floating-card {
        display: flex;
        align-items: center;
        gap: 12px;
    }
}

.floating-card.card-1 {
    bottom: -24px;
    left: -24px;
    animation: bounceSubtle 4s ease-in-out infinite;
}

.floating-card.card-2 {
    top: -16px;
    right: -16px;
    animation: bounceSubtle 3s ease-in-out infinite 1s;
}

.floating-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card-icon svg {
    width: 24px;
    height: 24px;
    color: #16a34a;
}

.floating-card-text strong {
    display: block;
    color: var(--gray-900);
}

.floating-card-text span {
    font-size: 14px;
    color: var(--gray-500);
}

/* ============================================
   FLEET SECTION
   ============================================ */
.fleet-section {
    padding: 80px 0;
    background: white;
}

.availability-notice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef9c3;
    border: 2px solid #fde047;
    color: #854d0e;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 24px;
}

.availability-notice svg {
    width: 20px;
    height: 20px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

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

@media (min-width: 1024px) {
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .fleet-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vehicle-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vehicle-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.vehicle-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--gray-100);
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.1);
}

.vehicle-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.vehicle-info {
    padding: 20px;
}

.vehicle-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.vehicle-year {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vehicle-feature {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--gray-100);
    padding: 4px 8px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--gray-600);
}

.vehicle-feature svg {
    width: 12px;
    height: 12px;
    color: var(--secondary);
}

/* ============================================
   CITIES SECTION
   ============================================ */
.cities-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px;
}

@media (min-width: 640px) {
    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .cities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .cities-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.city-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.city-icon {
    width: 48px;
    height: 48px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.city-card:hover .city-icon {
    background: var(--primary);
}

.city-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.city-card:hover .city-icon svg {
    color: white;
}

.city-name {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 14px;
}

.cities-note {
    margin-top: 40px;
    font-size: 1.125rem;
    color: var(--gray-600);
}

.cities-note a {
    color: var(--primary);
    font-weight: 600;
}

.cities-note a:hover {
    text-decoration: underline;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.steps-section {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
}

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

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.3);
    transition: transform 0.3s ease;
}

.step-number.secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    box-shadow: 0 15px 30px rgba(67, 160, 71, 0.3);
}

.step-item:hover .step-number {
    transform: scale(1.1);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.step-text {
    color: var(--gray-600);
    line-height: 1.7;
}

.step-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary);
    font-weight: 600;
}

.step-link:hover {
    text-decoration: underline;
}

/* CTA Box */
.cta-box {
    margin-top: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark), var(--secondary));
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    color: var(--primary);
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.125rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: scale(1.05);
    background: var(--gray-50);
}

.btn-white-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: white;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.125rem;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-white-outline:hover {
    background: white;
    color: var(--primary);
    transform: scale(1.05);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: var(--gray-900);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 48px;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.contact-item-text strong {
    display: block;
    margin-bottom: 4px;
}

.contact-item-text span {
    color: var(--gray-400);
}

.contact-item-text a {
    color: var(--accent);
}

.contact-item-text a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Contact Form / Quick Links */
.contact-quick {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
}

.contact-quick h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.quick-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
}

.quick-btn-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-btn-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.quick-btn-icon.form {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.quick-btn-icon.instagram {
    background: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
}

.quick-btn-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.quick-btn-text strong {
    display: block;
    font-size: 1.125rem;
}

.quick-btn-text span {
    font-size: 14px;
    color: var(--gray-400);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0f172a;
    padding: 48px 0 24px;
    color: white;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-logo img {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
}

.footer-logo p {
    color: var(--gray-400);
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links a {
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50px;
    padding: 14px 24px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: bounceSubtle 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
    animation-play-state: paused;
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float {
        border-radius: 50%;
        padding: 16px;
    }
}

/* ============================================
   ANIMATIONS - Enhanced with constant loop animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes bounceSubtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    75% {
        transform: translateY(10px) rotate(-2deg);
    }
}

/* ============================================
   NEW CONSTANT LOOP ANIMATIONS
   ============================================ */

/* Floating animation - vertical */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatUpDownSlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Horizontal sliding animation */
@keyframes slideHorizontal {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

@keyframes slideHorizontalAlt {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-10px);
    }
}

/* Slow rotation */
@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateSlowReverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

/* Pulsing glow effect */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(46, 125, 50, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(46, 125, 50, 0.6);
        transform: scale(1.05);
    }
}

@keyframes pulseBadge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
    }
}

/* Gradient animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Sparkle/twinkle effect */
@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Wave motion */
@keyframes wave {
    0%, 100% {
        transform: translateY(0) scaleY(1);
    }
    25% {
        transform: translateY(-5px) scaleY(1.1);
    }
    50% {
        transform: translateY(0) scaleY(1);
    }
    75% {
        transform: translateY(5px) scaleY(0.9);
    }
}

/* Breathing effect */
@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

/* Orbit animation */
@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(30px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(30px) rotate(-360deg);
    }
}

/* Zigzag movement */
@keyframes zigzag {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, -10px);
    }
    50% {
        transform: translate(0, -20px);
    }
    75% {
        transform: translate(-10px, -10px);
    }
}

/* Mobile-specific floating circles */
@keyframes floatCircleMobile1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.15;
    }
    33% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 0.25;
    }
    66% {
        transform: translate(-20px, -20px) scale(0.9);
        opacity: 0.1;
    }
}

@keyframes floatCircleMobile2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate(-40px, 30px) scale(1.3);
        opacity: 0.2;
    }
}

@keyframes floatCircleMobile3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.12;
    }
    50% {
        transform: translate(20px, -30px) rotate(180deg);
        opacity: 0.22;
    }
}

/* Icon bounce animation */
@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Text typing cursor */
@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Ripple effect */
@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animate-left {
    transform: translateX(-60px);
}

.animate-on-scroll.animate-right {
    transform: translateX(60px);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.8);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   MOBILE ENHANCED ANIMATIONS
   ============================================ */
@media (max-width: 768px) {
    /* Touch-friendly tap animation */
    .benefit-card:active,
    .vehicle-card:active,
    .city-card:active,
    .step-item:active {
        transform: scale(0.98);
    }
    
    /* Smoother mobile transitions */
    .benefit-card,
    .vehicle-card,
    .city-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    /* Mobile-specific entry animations */
    .mobile-slide-up {
        animation: mobileSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    .mobile-slide-right {
        animation: mobileSlideRight 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    @keyframes mobileSlideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes mobileSlideRight {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Bouncy buttons on mobile */
    .btn-primary:active,
    .btn-secondary:active,
    .btn-gradient:active {
        transform: scale(0.95);
    }
    
    /* Hero adjustments for mobile */
    .hero {
        min-height: calc(100vh - 60px);
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        padding: 0 16px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 16px;
    }
    
    .hero-buttons {
        padding: 0 16px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    /* Cards scroll animation enhancement */
    .benefit-card,
    .vehicle-card,
    .city-card {
        will-change: transform, opacity;
    }
    
    /* Reduce motion if preferred */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* ============================================
   DOTS BACKGROUND PATTERN
   ============================================ */
.dots-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(46, 125, 50, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* ============================================
   FLOATING DECORATIVE ELEMENTS
   ============================================ */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.1), transparent);
    animation: floatCircle 8s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.6;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .whatsapp-float,
    .video-bg-container,
    .floating-elements {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    body {
        background: white;
    }
}



/* ============================================
   ENHANCED VIDEO BACKGROUND FOR MOBILE
   ============================================ */
/* Mobile video fallback with animated gradient */
.video-bg-container {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--secondary));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Ensure video is visible on mobile */
@media (max-width: 768px) {
    .video-bg {
        display: block !important;
        opacity: 1 !important;
        min-width: 100vw;
        min-height: 100vh;
        object-fit: cover;
    }
    
    /* Lighter overlay for mobile to show video better */
    .video-overlay {
        background: linear-gradient(135deg, 
            rgba(46, 125, 50, 0.75), 
            rgba(27, 94, 32, 0.70), 
            rgba(102, 187, 106, 0.65));
    }
}

/* Mobile video poster fallback */
.video-bg-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/1260600/pexels-photo-1260600.jpeg?auto=compress&cs=tinysrgb&w=1260') center/cover no-repeat;
    z-index: -1;
}

/* ============================================
   ANIMATED DECORATIVE ELEMENTS (Loop Constant)
   ============================================ */

/* Animated background particles */
.animated-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.particle:nth-child(1) {
    width: 10px;
    height: 10px;
    top: 20%;
    left: 10%;
    animation: floatUpDown 4s ease-in-out infinite;
}

.particle:nth-child(2) {
    width: 15px;
    height: 15px;
    top: 40%;
    right: 15%;
    animation: floatUpDown 5s ease-in-out infinite 0.5s;
}

.particle:nth-child(3) {
    width: 8px;
    height: 8px;
    top: 60%;
    left: 25%;
    animation: floatUpDown 3.5s ease-in-out infinite 1s;
}

.particle:nth-child(4) {
    width: 12px;
    height: 12px;
    top: 30%;
    right: 30%;
    animation: zigzag 6s ease-in-out infinite;
}

.particle:nth-child(5) {
    width: 6px;
    height: 6px;
    top: 70%;
    left: 40%;
    animation: sparkle 3s ease-in-out infinite 0.3s;
}

.particle:nth-child(6) {
    width: 14px;
    height: 14px;
    top: 15%;
    right: 20%;
    animation: floatUpDownSlow 7s ease-in-out infinite;
}

/* Floating icons with constant animation */
.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-icon svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.floating-icon.icon-1 {
    top: 25%;
    left: 8%;
    animation: floatUpDown 4s ease-in-out infinite, rotateSlow 20s linear infinite;
}

.floating-icon.icon-2 {
    top: 45%;
    right: 5%;
    animation: floatUpDownSlow 5s ease-in-out infinite 1s;
}

.floating-icon.icon-3 {
    bottom: 30%;
    left: 12%;
    animation: slideHorizontal 4s ease-in-out infinite;
}

/* Pulsing badges */
.pulse-badge {
    animation: pulseBadge 2s ease-in-out infinite;
}

/* Animated gradient borders */
.gradient-border-animated {
    position: relative;
    background: white;
    border-radius: 16px;
}

.gradient-border-animated::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 400% 400%;
    border-radius: 18px;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
}

/* Rotating decorative rings */
.rotating-ring {
    position: absolute;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.rotating-ring.ring-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 5%;
    animation: rotateSlow 30s linear infinite;
}

.rotating-ring.ring-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 3%;
    animation: rotateSlowReverse 25s linear infinite;
}

.rotating-ring.ring-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 10%;
    animation: rotateSlow 20s linear infinite;
}

/* Animated lines */
.animated-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: slideHorizontal 3s ease-in-out infinite;
}

.animated-line.line-1 {
    width: 100px;
    top: 35%;
    left: 5%;
}

.animated-line.line-2 {
    width: 80px;
    top: 65%;
    right: 8%;
    animation: slideHorizontalAlt 4s ease-in-out infinite;
}

/* Glowing orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 187, 106, 0.4), transparent);
    filter: blur(20px);
    pointer-events: none;
}

.glow-orb.orb-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -50px;
    animation: breathe 6s ease-in-out infinite;
}

.glow-orb.orb-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: -30px;
    animation: breathe 8s ease-in-out infinite 2s;
}

/* ============================================
   ENHANCED MOBILE ANIMATIONS (Loop Constant)
   ============================================ */
@media (max-width: 768px) {
    /* Mobile-specific animated decorations */
    .mobile-float-element {
        position: absolute;
        pointer-events: none;
    }
    
    .mobile-float-element.elem-1 {
        width: 60px;
        height: 60px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
        border-radius: 50%;
        top: 15%;
        right: 5%;
        animation: floatCircleMobile1 8s ease-in-out infinite;
    }
    
    .mobile-float-element.elem-2 {
        width: 40px;
        height: 40px;
        background: radial-gradient(circle, rgba(102, 187, 106, 0.2), transparent);
        border-radius: 50%;
        bottom: 25%;
        left: 8%;
        animation: floatCircleMobile2 6s ease-in-out infinite;
    }
    
    .mobile-float-element.elem-3 {
        width: 30px;
        height: 30px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        top: 40%;
        left: 5%;
        animation: floatCircleMobile3 7s ease-in-out infinite;
    }
    
    /* Animated hero badge on mobile */
    .hero-badge {
        animation: fadeInUp 0.8s ease forwards, pulseBadge 3s ease-in-out infinite 1s;
    }
    
    /* Floating hero tags on mobile */
    .hero-tag {
        animation: floatUpDown 4s ease-in-out infinite;
    }
    
    .hero-tag:nth-child(1) {
        animation-delay: 0s;
    }
    
    .hero-tag:nth-child(2) {
        animation-delay: 0.5s;
    }
    
    .hero-tag:nth-child(3) {
        animation-delay: 1s;
    }
    
    /* Mobile pulsing icons */
    .benefit-icon {
        animation: pulseGlow 3s ease-in-out infinite;
    }
    
    .benefit-card:nth-child(1) .benefit-icon { animation-delay: 0s; }
    .benefit-card:nth-child(2) .benefit-icon { animation-delay: 0.3s; }
    .benefit-card:nth-child(3) .benefit-icon { animation-delay: 0.6s; }
    .benefit-card:nth-child(4) .benefit-icon { animation-delay: 0.9s; }
    .benefit-card:nth-child(5) .benefit-icon { animation-delay: 1.2s; }
    .benefit-card:nth-child(6) .benefit-icon { animation-delay: 1.5s; }
    
    /* Mobile step numbers animation */
    .step-number {
        animation: breathe 4s ease-in-out infinite;
    }
    
    .step-item:nth-child(1) .step-number { animation-delay: 0s; }
    .step-item:nth-child(2) .step-number { animation-delay: 0.5s; }
    .step-item:nth-child(3) .step-number { animation-delay: 1s; }
    .step-item:nth-child(4) .step-number { animation-delay: 1.5s; }
    
    /* Mobile city icons bounce */
    .city-icon {
        animation: iconBounce 3s ease-in-out infinite;
    }
    
    /* Staggered city card animations */
    .city-card:nth-child(1) .city-icon { animation-delay: 0s; }
    .city-card:nth-child(2) .city-icon { animation-delay: 0.1s; }
    .city-card:nth-child(3) .city-icon { animation-delay: 0.2s; }
    .city-card:nth-child(4) .city-icon { animation-delay: 0.3s; }
    .city-card:nth-child(5) .city-icon { animation-delay: 0.4s; }
    .city-card:nth-child(6) .city-icon { animation-delay: 0.5s; }
    .city-card:nth-child(7) .city-icon { animation-delay: 0.6s; }
    .city-card:nth-child(8) .city-icon { animation-delay: 0.7s; }
    
    /* Mobile vehicle badge pulse */
    .vehicle-badge {
        animation: pulseBadge 2s ease-in-out infinite;
    }
    
    /* Mobile scroll indicator enhanced */
    .scroll-indicator {
        animation: bounce 1.5s ease-in-out infinite;
    }
    
    /* Mobile floating circles enhanced */
    .floating-circle {
        animation: floatCircleMobile1 10s ease-in-out infinite;
    }
    
    .floating-circle:nth-child(2) {
        animation: floatCircleMobile2 12s ease-in-out infinite;
    }
    
    .floating-circle:nth-child(3) {
        animation: floatCircleMobile3 8s ease-in-out infinite;
    }
    
    /* Mobile contact icons animation */
    .contact-item-icon {
        animation: floatUpDown 4s ease-in-out infinite;
    }
    
    .contact-item:nth-child(1) .contact-item-icon { animation-delay: 0s; }
    .contact-item:nth-child(2) .contact-item-icon { animation-delay: 0.3s; }
    .contact-item:nth-child(3) .contact-item-icon { animation-delay: 0.6s; }
    
    /* Mobile quick button icons pulse */
    .quick-btn-icon {
        animation: breathe 3s ease-in-out infinite;
    }
    
    .quick-btn:nth-child(1) .quick-btn-icon { animation-delay: 0s; }
    .quick-btn:nth-child(2) .quick-btn-icon { animation-delay: 0.4s; }
    .quick-btn:nth-child(3) .quick-btn-icon { animation-delay: 0.8s; }
    
    /* Mobile social links animation */
    .social-link {
        animation: floatUpDown 3s ease-in-out infinite;
    }
    
    .social-link:nth-child(1) { animation-delay: 0s; }
    .social-link:nth-child(2) { animation-delay: 0.2s; }
    .social-link:nth-child(3) { animation-delay: 0.4s; }
    
    /* Enhanced WhatsApp floating button */
    .whatsapp-float {
        animation: bounceSubtle 2s ease-in-out infinite, pulseGlow 3s ease-in-out infinite;
    }
    
    /* Navbar logo subtle animation */
    .navbar-logo img {
        animation: breathe 6s ease-in-out infinite;
    }
}

/* ============================================
   DESKTOP ENHANCED ANIMATIONS
   ============================================ */
@media (min-width: 769px) {
    /* Desktop floating cards enhanced */
    .floating-card.card-1 {
        animation: bounceSubtle 4s ease-in-out infinite, slideHorizontal 8s ease-in-out infinite;
    }
    
    .floating-card.card-2 {
        animation: bounceSubtle 3s ease-in-out infinite 1s, slideHorizontalAlt 7s ease-in-out infinite;
    }
    
    /* Desktop stat numbers pulse */
    .stat-number {
        animation: breathe 5s ease-in-out infinite;
    }
    
    .stat-item:nth-child(1) .stat-number { animation-delay: 0s; }
    .stat-item:nth-child(2) .stat-number { animation-delay: 0.3s; }
    .stat-item:nth-child(3) .stat-number { animation-delay: 0.6s; }
    .stat-item:nth-child(4) .stat-number { animation-delay: 0.9s; }
    
    /* Desktop benefit icons */
    .benefit-icon {
        animation: pulseGlow 4s ease-in-out infinite;
    }
    
    /* Desktop CTA box animated */
    .cta-box::before {
        animation: floatCircleMobile1 15s ease-in-out infinite;
    }
    
    .cta-box::after {
        animation: floatCircleMobile2 18s ease-in-out infinite;
    }
}

/* ============================================
   ANIMATED SECTION BADGES
   ============================================ */
.section-badge {
    animation: pulseBadge 4s ease-in-out infinite;
    display: inline-block;
}

/* Animated availability notice */
.availability-notice {
    animation: bounceSubtle 3s ease-in-out infinite;
}

/* Animated scroll indicator arrow */
.scroll-indicator svg {
    animation: wave 2s ease-in-out infinite;
}

/* ============================================
   RIPPLE EFFECT FOR BUTTONS
   ============================================ */
.btn-primary,
.btn-secondary,
.btn-gradient,
.btn-white {
    position: relative;
    overflow: hidden;
}

.btn-primary::after,
.btn-secondary::after,
.btn-gradient::after,
.btn-white::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:active::after,
.btn-secondary:active::after,
.btn-gradient:active::after,
.btn-white:active::after {
    width: 300px;
    height: 300px;
}



/* ============================================
   VIDEO FALLBACK STYLES
   ============================================ */
.video-fallback-active .video-bg {
    opacity: 0;
}

.video-fallback-active .video-bg-fallback {
    opacity: 1;
}

.video-loaded .video-bg-fallback {
    opacity: 0;
}

/* ============================================
   ADDITIONAL MOBILE OPTIMIZATIONS
   ============================================ */
@media (max-width: 768px) {
    /* Ensure decorative elements don't interfere with content */
    .animated-particles,
    .rotating-ring,
    .animated-line,
    .glow-orb,
    .floating-icon {
        display: block;
        z-index: 2;
    }
    
    /* Mobile video optimizations */
    .video-bg {
        width: 100vw !important;
        height: 100vh !important;
        object-position: center center;
    }
    
    /* Reduce particle intensity on mobile for performance */
    .particle:nth-child(n+4) {
        display: none;
    }
    
    /* Smaller floating icons on mobile */
    .floating-icon {
        width: 32px;
        height: 32px;
    }
    
    .floating-icon svg {
        width: 16px;
        height: 16px;
    }
    
    /* Adjust rotating rings for mobile */
    .rotating-ring.ring-1 {
        width: 80px;
        height: 80px;
    }
    
    .rotating-ring.ring-2,
    .rotating-ring.ring-3 {
        display: none;
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */
/* Use will-change for animated elements */
.particle,
.floating-icon,
.rotating-ring,
.glow-orb,
.mobile-float-element,
.hero-badge,
.hero-tag,
.benefit-icon,
.step-number,
.city-icon,
.whatsapp-float {
    will-change: transform, opacity;
}

/* Reduce animations on low-power mode */
@media (prefers-reduced-motion: reduce) {
    .particle,
    .floating-icon,
    .rotating-ring,
    .glow-orb,
    .mobile-float-element,
    .animated-line,
    .animated-particles {
        animation: none !important;
    }
}
