/*
 * LOKSY - Composants Immersifs
 * Styles optimisés pour la page d'accueil immersive avec équilibre entre animations et usabilité
 */

/* Hero Section Immersive - Refinements for visibility and usability */
.hero-immersive {
    position: relative;
    min-height: 85vh;
    background: linear-gradient(45deg, #1e88e5, #9c27b0);
    color: white;
    overflow: hidden;
    padding: 120px 0 100px;
    margin-top: 60px; /* Ajout de marge pour le header fixe */
}

/* Conteneur des particules */
.particles-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Contenu du hero */
.hero-content {
    position: relative;
    z-index: 5; /* Augmentation du z-index pour s'assurer que le contenu est visible */
}

.hero-text-column {
    padding-top: 3rem;
}

.hero-immersive h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(to right, #fff, #a2d0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Features tags */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.feature-tag i {
    color: #70ff8e;
}

/* Colonne visuelle */
.hero-visual-column {
    position: relative;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Voiture flottante */
.floating-car {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: carFloat 6s ease-in-out infinite;
}

.main-car {
    max-width: 100%;
    max-height: 350px;
    transform: scale(1.1);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.car-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    animation: shadowPulse 6s ease-in-out infinite;
}

/* Éléments flottants */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: elementFloat 8s ease-in-out infinite;
}

.map-pin {
    top: 20%;
    left: 15%;
    animation-delay: 0.5s;
}

.clock {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.star {
    top: 70%;
    left: 20%;
    animation-delay: 1.5s;
}


/* Vague du bas */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== SECTION SERVICES ===== */
.services-section {
    padding: 100px 0;
    background-color: #fff;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

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

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    margin-top: 3rem;
}

.service-card {
    position: relative;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 30px;
    transform: translateY(0); /* État initial explicite */
}

/* Animation explicite au survol */
.service-card:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.service-card:hover .card-overlay {
    opacity: 1 !important;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right bottom, rgba(79, 86, 255, 0.05), rgba(194, 80, 251, 0.05));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none; /* Pour éviter les problèmes de clic */
}

.card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

/* ===== SECTION COMMENT ÇA MARCHE ===== */
.how-it-works-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
}

.steps-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 0;
}

.step-timeline {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    top: 0;
}

.step-wrapper {
    display: flex;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.step-wrapper:nth-child(odd) {
    flex-direction: row-reverse;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-content {
    width: 45%;
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-wrapper:nth-child(odd) .step-content {
    margin-right: 50px;
}

.step-wrapper:nth-child(even) .step-content {
    margin-left: 50px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(79, 86, 255, 0.1), rgba(194, 80, 251, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step-content p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== SECTION VEHICULES ===== */
.vehicles-section {
    padding: 100px 0;
    background-color: #fff;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Styles pour le slider simple de véhicules */
.simple-vehicles-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 520px; /* Augmentation de la hauteur minimale pour accommoder tout le contenu */
    overflow: hidden;
}

.vehicle-item {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.vehicle-item.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
    pointer-events: auto;
}

.vehicle-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vehicle-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e88e5, #9c27b0);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-image img {
    max-height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: translateY(-10px);
}

.vehicle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
}

.eco {
    background: linear-gradient(45deg, #28a745, #5ad07a);
}

.premium {
    background: linear-gradient(45deg, #ffc107, #ffaa00);
}

.family {
    background: linear-gradient(45deg, #17a2b8, #30d2df);
}

.vehicle-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-details h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.vehicle-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 0.9rem;
}

.vehicle-specs i {
    color: #1e88e5;
}

.vehicle-description {
    margin-bottom: 20px;
    flex-grow: 1;
}

.vehicle-description p {
    color: #6c757d;
    line-height: 1.6;
}

.vehicle-price {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.vehicle-price strong {
    font-size: 1.3rem;
    color: #1e88e5;
}

.vehicle-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.vehicle-dots .dot {
    width: 12px;
    height: 12px;
    background-color: #d1d1d1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vehicle-dots .dot.active {
    background-color: #1e88e5;
    transform: scale(1.2);
}

.vehicle-dots .dot:hover {
    background-color: #9c27b0;
}

/* ===== SECTION BOOKING ===== */
.booking-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.booking-content {
    padding-right: 40px;
}

.booking-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.booking-form-container {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.booking-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.input-with-icon .form-control {
    padding-left: 40px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.input-with-icon .form-control:focus {
    border-color: #1e88e5;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.1);
    outline: none;
}

/* Styles spécifiques pour les champs date et heure */
input[type="date"], input[type="time"] {
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #495057;
    background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%236c757d" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>') no-repeat right 15px center;
    background-size: 12px;
    cursor: pointer;
}

/* Style au survol */
input[type="date"]:hover, input[type="time"]:hover, select:hover {
    border-color: #9c27b0;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.1);
}

/* Style pour le select de véhicule */
select.form-control {
    height: 50px;
    border-radius: 10px;
    padding-left: 40px;
    border: 1px solid #e0e0e0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%236c757d" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>') no-repeat right 15px center;
    background-size: 12px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

select.form-control:focus {
    border-color: #1e88e5;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.1);
    background-color: #f8f9fe;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%231e88e5" class="bi bi-chevron-up" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z"/></svg>');
}

/* Style pour les options du select */
select.form-control option {
    padding: 10px;
    background-color: white;
    color: #495057;
}

select.form-control option:hover,
select.form-control option:checked {
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.1), rgba(156, 39, 176, 0.1));
    color: #1e88e5;
}

/* Styles pour améliorer l'apparence des calendriers natifs */
::-webkit-calendar-picker-indicator {
    filter: invert(50%) sepia(95%) saturate(1352%) hue-rotate(200deg) brightness(95%) contrast(97%);
    padding: 5px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

::-webkit-calendar-picker-indicator:hover {
    filter: invert(50%) sepia(95%) saturate(2352%) hue-rotate(270deg) brightness(100%) contrast(97%);
    background-color: rgba(156, 39, 176, 0.1);
}

/* Structure du formulaire */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.form-row > .form-group {
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 15px;
}

/* Style pour les états des champs du formulaire */
input[type="date"]:valid,
input[type="time"]:valid,
select.form-control:valid {
    color: #212529;
    border-color: #28a745;
}

/* Style pour les placeholders et champs vides */
select.form-control option:first-child,
select:invalid {
    color: #6c757d;
}

/* Animation subtile pour les icônes */
.input-with-icon .form-control:hover + i,
.input-with-icon .form-control:focus + i {
    transform: translateY(-50%) scale(1.1);
    color: #1e88e5;
}

/* Style du bouton de soumission */
.booking-form button[type="submit"] {
    background-image: linear-gradient(45deg, #2196f3, #9c27b0);
    border: none;
    color: white;
    height: 50px;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.booking-form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.6);
}

/* Style pour les libellés de champs */
.booking-form label {
    font-weight: 500;
    color: #414141;
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

/* ===== SECTION TEMOIGNAGES ===== */
.testimonials-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 300px;
    overflow: hidden;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateX(30px);
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
    pointer-events: auto;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-content {
    font-style: italic;
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid #f0f0f0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info span {
    color: #6c757d;
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    background-color: #d1d1d1;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dots .dot.active {
    background-color: #1e88e5;
    transform: scale(1.2);
}

/* ===== SECTION DRIVERS ===== */
.driver-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.driver-image-column {
    position: relative;
}

.driver-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.driver-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 30px 20px 20px;
    color: white;
}

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

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(to right, #fff, #a2d0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.driver-content {
    padding-left: 40px;
}

.driver-benefits {
    margin-top: 40px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.driver-cta {
    display: flex;
    gap: 15px;
}

/* ===== SECTION CTA FINAL ===== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-content {
    width: 60%;
}

.cta-content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-image {
    width: 40%;
    display: flex;
    justify-content: flex-end;
}

.app-mockup {
    max-width: 300px;
    transform: perspective(1000px) rotateY(-10deg);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    transition: transform 0.5s ease;
}

.app-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    z-index: 99999;
}

.modal {
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(30px);
    transition: transform 0.5s ease;
    opacity: 0;
    transition: opacity 0.3s, transform 0.5s;
    margin: 0 auto;
    left: unset;
    right: unset;
}

.modal-overlay.active .modal {
    display: block;
    opacity: 1;
    transform: translateY(0);
    z-index: 100000;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
    background: #fff;
}

.modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.success-animation {
    color: #28a745;
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease;
}

/* ===== ANIMATIONS ===== */
@keyframes carFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes shadowPulse {
    0%, 100% { opacity: 0.5; width: 80%; }
    50% { opacity: 0.3; width: 70%; }
}

@keyframes elementFloat {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(10px) rotate(-5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

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

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-immersive {
        padding: 100px 0 180px;
    }
    
    .hero-immersive h1 {
        font-size: 2.8rem;
    }
    
    .hero-text-column {
        margin-bottom: 60px;
    }
    
    .step-timeline {
        left: 30px;
        transform: none;
    }
    
    .step-wrapper {
        flex-direction: row !important;
    }
    
    .step-number {
        left: 30px;
        transform: none;
    }
    
    .step-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-image {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-immersive h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonials-container {
        height: auto;
    }
    
    .testimonial-card {
        position: relative;
        margin-bottom: 30px;
    }
    
    .driver-content {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .hero-features {
        flex-direction: column;
    }
    
    .hero-immersive h1 {
        font-size: 1.8rem;
    }
    
    .booking-form-container {
        padding: 30px 20px;
    }
    
    .driver-cta {
        flex-direction: column;
    }
}

section {
    display: block !important;
    visibility: visible !important;
    overflow: visible !important;
}

.countdown-announcement {
    background: rgba(255,255,255,0.22);
    border-radius: 22px;
    padding: 1.2rem 2.2rem;
    margin-top: 1.5rem;
    box-shadow: 0 8px 32px rgba(30,136,229,0.18), 0 1.5px 8px rgba(0,0,0,0.08);
    backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255,255,255,0.35);
    max-width: 540px;
    transition: box-shadow 0.3s, background 0.3s;
    position: relative;
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    animation: countdownFadeInUp 0.9s cubic-bezier(.23,1.02,.32,1) 0.2s forwards;
}

@keyframes countdownFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.countdown-announcement .countdown-icon {
    font-size: 2.1rem;
    margin-right: 0.7rem;
    vertical-align: middle;
}

.countdown-announcement .countdown-text {
    font-weight: 700;
    color: #222;
    font-size: 1.18rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(30,136,229,0.10), 0 1px 2px rgba(0,0,0,0.10);
    margin-bottom: 0.7rem;
    display: inline-block;
}

@media (max-width: 576px) {
    .countdown-announcement {
        font-size: 1rem;
        max-width: 100%;
        padding: 0.9rem 0.7rem;
    }
    .countdown-announcement .countdown-icon {
        margin-bottom: 0.3rem;
    }
} 