:root {
    --primary-color: #FFB800;
    --secondary-color: #333333;
    --gradient: linear-gradient(135deg, #2C3E50, #000000);
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #2D3436;
}

.hero {
    background: var(--gradient);
    padding: 6rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    transform: skewY(-3deg);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    color: white;
    animation: titleDrop 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(-100px);
}

@keyframes titleDrop {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    50% {
        opacity: 1;
        transform: translateY(20px);
    }
    75% {
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.m-yellow {
    background: linear-gradient(45deg, #FFB800, #FFA200, #FF8C00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    animation: mBounce 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(-100px);
}

@keyframes mBounce {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    50% {
        opacity: 1;
        transform: translateY(20px);
    }
    75% {
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-tagline {
    font-size: 1.4rem;
    margin-top: 1rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FFB800, #FFA200, #FF8C00, #FFB800);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient 3s ease infinite;
    background-size: 300% 300%;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.advantages {
    padding: 5rem 2rem;
    background-color: #FAFAFA;
    position: relative;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.advantages h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.advantage-card {
    background: white;
    padding: 0;
    margin: 1.5rem auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 800px;
    transition: var(--transition);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.advantage-card.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--secondary-color);
    background: var(--primary-color);
    padding: 1.5rem;
}

.advantage-card p {
    padding: 1.5rem;
    margin: 0;
    background: white;
}

.cta-buttons {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.download-btn {
    background: var(--gradient);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,184,0,0.3);
}

.download-btn img {
    width: 24px;
    height: 24px;
}

.rating-section {
    background-color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
}

.rating-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.rating-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.rating-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1200px;
    margin: 2rem auto;
    text-align: left;
}

.rating-feature {
    background: var(--gradient);
    padding: 1rem 2rem;
    border-radius: 10px;
    color: white;
}

.rating-feature p {
    color: white;
    margin: 0;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 4rem;
    }

    .hero h1 {
        font-size: 4.5rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rating-features {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .download-btn {
        width: auto;
    }
}

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Ajout des styles pour l'iPhone 3D */
.iphone-section {
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2000px;

}

.iphone-container {
    width: 300px;
    height: 600px;
    position: relative;
    transform-style: preserve-3d;
    animation: oscillate 4s infinite ease-in-out;
}

.iphone {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 40px;
    border: 12px solid #333;
    background: #000;
    transform: translateZ(20px);
    box-shadow: 
        -20px 0 40px rgba(0,0,0,0.2),
        20px 0 40px rgba(0,0,0,0.2),
        0 0 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

.iphone::before,
.iphone::after {
    content: '';
    position: absolute;
    background: #333;
}

.iphone::before {
    width: 12px;
    height: 100%;
    left: -12px;
    top: 0;
    transform: rotateY(-90deg);
    transform-origin: right;
}

.iphone::after {
    width: 12px;
    height: 100%;
    right: -12px;
    top: 0;
    transform: rotateY(90deg);
    transform-origin: left;
}

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

@keyframes oscillate {
    0% {
        transform: rotateY(-20deg);
    }
    50% {
        transform: rotateY(20deg);
    }
    100% {
        transform: rotateY(-20deg);
    }
}

@media (max-width: 768px) {
    .iphone-container {
        width: 250px;
        height: 500px;
    }
}

/* Styles pour les cartes 3D */
.features-3d {
    padding: 6rem 2rem;
    background: #f5f5f5;
    perspective: 2000px;
}

.features-3d-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card-3d {
    background: var(--gradient);
    padding: 2rem;
    border-radius: 20px;
    color: white;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    min-height: 250px;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feature-card-3d:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-card-3d h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.feature-card-3d p {
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transform: translateZ(80px);
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .features-3d-grid {
        grid-template-columns: 1fr;
    }
}

/* Styles pour la section Devenir Chauffeur */
.become-driver {
    padding: 6rem 2rem;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.become-driver h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.driver-content {
    max-width: 800px;
    margin: 0 auto;
}

.driver-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: center;
}

.driver-benefits li {
    margin: 1rem 0;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.driver-cta {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
    transition: var(--transition);
}

.driver-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,184,0,0.3);
}

/* Styles pour le Footer */
.footer {
    background: var(--gradient);
    color: white;
    padding: 4rem 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.company-description {
    margin: 1rem 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

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

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-nav a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    opacity: 1;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-details i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-nav {
        align-items: center;
    }

    .contact-details p {
        justify-content: center;
    }
}

.hero-cta {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,184,0,0.3);
    background: #FFA200;
}

/* Styles pour la section des zones desservies */
.service-areas {
    padding: 6rem 2rem;
    background: var(--gradient);
    text-align: center;
}

.service-areas h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.areas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.area-cards-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.area-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.area-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.area-card h4 {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: white;
}

.area-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.area-status.active {
    background-color: rgba(46, 213, 115, 0.2);
    color: #2ed573;
}

.area-status.coming {
    background-color: rgba(255, 184, 0, 0.2);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .area-cards-scroll {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .area-card {
        padding: 1.5rem;
    }

    .area-icon {
        font-size: 2rem;
    }

    .area-card h4 {
        font-size: 1.2rem;
    }
}

/* Styles pour la voiture animée */
.moving-car {
    position: fixed;
    bottom: 20px;
    left: -100px; /* Commence hors de l'écran */
    width: 60px;
    height: 30px;
    z-index: 1000;
    animation: driveCar 15s linear infinite;
    transform-style: preserve-3d;
}

.car-body {
    position: relative;
    width: 100%;
    height: 100%;
}

.car-body::before {
    content: '🚕';
    font-size: 40px;
    position: absolute;
    transform: rotateY(180deg); /* Fait face à la direction du mouvement */
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

/* Animation de la voiture qui roule */
@keyframes driveCar {
    0% {
        left: -100px;
        transform: translateY(0);
    }
    5% {
        transform: translateY(-3px);
    }
    10% {
        transform: translateY(0);
    }
    15% {
        transform: translateY(-3px);
    }
    20% {
        transform: translateY(0);
    }
    100% {
        left: calc(100% + 100px);
    }
}

/* Animation de rebond sur la route */
.road {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, var(--primary-color), #FFA200);
    opacity: 0.3;
}

/* Styles pour la nouvelle section de téléchargement */
.download-section {
    padding: 6rem 2rem;
    background: var(--gradient);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
    padding-bottom: 10rem;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('path/to/pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.download-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.download-subtitle {
    font-size: 1.6rem;
    margin-bottom: 4rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.download-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    height: 100%;
}

.download-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.download-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 1.5rem;
}

.store-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

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

.store-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.5rem;
}

.store-info h3 {
    font-size: 2.2rem;
    margin-bottom: 0;
}

.store-info p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin-top: auto;
}

@media (max-width: 1024px) {
    .download-grid {
        gap: 2rem;
        padding: 0 0.5rem;
    }

    .download-card {
        padding: 2rem 1.5rem;
    }

    .store-info h3 {
        font-size: 2rem;
    }

    .store-info p {
        font-size: 1.2rem;
    }

    .download-btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .download-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .download-section {
        padding: 4rem 1rem;
    }

    .download-section h2 {
        font-size: 2.8rem;
    }

    .download-subtitle {
        font-size: 1.4rem;
    }

    .download-card {
        padding: 2rem;
        height: auto;
    }

    .store-icon {
        font-size: 4rem;
    }

    .download-btn {
        max-width: 100%;
    }
}

.driver-badge {
    background-color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 12px;
    margin-right: 6px;
    display: inline-block;
    color: var(--secondary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.driver-badge.pulse {
    animation: pulse 0.5s ease-in-out;
}

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

.driver-badge i {
    display: inline-block;
    animation: carRoll 1s infinite ease-in-out;
}

@keyframes carRoll {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(2px) translateY(-1px);
    }
    50% {
        transform: translateX(0) translateY(0);
    }
    75% {
        transform: translateX(-2px) translateY(-1px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

.location-text {
    font-size: 1.1rem;
    color: white;
    margin-top: 0.5rem;
    opacity: 0.9;
}

#userLocation {
    font-weight: 600;
}

.payment-methods {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.payment-methods i {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.payment-methods i:hover {
    transform: scale(1.1);
}

.others-section {
    padding: 1rem 2rem 4rem 2rem;
    background: white;
    position: relative;
    overflow: hidden;
}

.parallax-container {
    position: relative;
    z-index: 2;
}

.others-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.premium-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.premium-card {
    height: 400px;
    perspective: 1500px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    transform-origin: center;
}

.premium-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.card-front {
    color: white;
}

.card-back {
    transform: rotateY(180deg);
    color: white;
    background: var(--gradient);
}

.card-front i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.card-front h3 {
    font-size: 1.8rem;
    margin: 1rem 0;
    color: var(--primary-color);
}

.card-back p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.card-back ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.card-back ul li {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-back ul li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}

.vehicle-img {
    width: 80%;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.card-front:hover .vehicle-img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .premium-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.rating-stars {
    margin: 2rem auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeInRating 0.8s ease forwards;
}

@keyframes fadeInRating {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stars-container {
    position: relative;
    height: 50px;
    width: 250px;
    perspective: 1000px;
}

.stars-gray, .stars-yellow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.stars-gray i {
    font-size: 2.5rem;
    color: #ddd;
    animation: popIn 0.4s ease forwards;
}

.stars-yellow {
    overflow: hidden;
    animation: ratingCycle 5s infinite;
}

.stars-yellow i {
    font-size: 2.5rem;
    color: var(--primary-color);
    animation: popIn 0.4s ease forwards;
}

@keyframes popIn {
    from {
        transform: scale(0) rotate(-180deg);
    }
    to {
        transform: scale(1) rotate(0);
    }
}

@keyframes ratingCycle {
    0%, 100% {
        clip-path: inset(0 100% 0 0);
    }
    20%, 90% {
        clip-path: inset(0 10% 0 0);
    }
}

.stars-gray i:nth-child(1) { animation-delay: 0.1s; }
.stars-gray i:nth-child(2) { animation-delay: 0.2s; }
.stars-gray i:nth-child(3) { animation-delay: 0.3s; }
.stars-gray i:nth-child(4) { animation-delay: 0.4s; }
.stars-gray i:nth-child(5) { animation-delay: 0.5s; }

.stars-yellow i:nth-child(1) { animation-delay: 0.6s; }
.stars-yellow i:nth-child(2) { animation-delay: 0.7s; }
.stars-yellow i:nth-child(3) { animation-delay: 0.8s; }
.stars-yellow i:nth-child(4) { animation-delay: 0.9s; }
.stars-yellow i:nth-child(5) { animation-delay: 1s; }

.rating-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInNumber 0.5s ease forwards 1.5s;
}

@keyframes fadeInNumber {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-avatar i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.user-details h4 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.rating {
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-date {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 1rem;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

/* Nouveaux styles pour la section véhicules */
.vehicle-booking-container {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 2rem; 
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    width: 80%;
}

.vehicle-selection {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vehicle-option {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vehicle-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.vehicle-option.selected {
    border-color: var(--primary-color);
    background: rgba(255, 184, 0, 0.1);
}

.vehicle-option img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.vehicle-details {
    flex: 1;
}

.vehicle-details h3 {
    margin: 0 0 0.5rem 0;
    color: var(--secondary-color);
}

.vehicle-details p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.vehicle-price {
    margin-top: 0.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.booking-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.location-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width:  calc( 100% - 70px );
    margin-bottom: 2rem;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.location-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.location-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.2);
}

.price-estimate {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.price-label {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.estimate-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.estimate-btn:hover {
    background: #FFA200;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .vehicle-booking-container {
        grid-template-columns: 1fr;
    }
    
    .vehicle-option img {
        width: 80px;
    }
}

.vehicle-selection-horizontal {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

.vehicle-selection-horizontal .vehicle-option {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vehicle-selection-horizontal .vehicle-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vehicle-selection-horizontal .vehicle-option.selected {
    border-color: var(--primary-color);
    background: rgba(255, 184, 0, 0.1);
}

.vehicle-selection-horizontal .vehicle-img {
    width: 100px;
    height: auto;
    margin-bottom: 1rem;
}

.vehicle-selection-horizontal .vehicle-details h3 {
    margin: 0.5rem 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.vehicle-selection-horizontal .vehicle-details p {
    margin: 0.2rem 0;
    font-size: 0.9rem;
    color: #666;
}

.vehicle-selection-horizontal .vehicle-price {
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .vehicle-selection-horizontal {
        flex-direction: column;
    }

    .vehicle-selection-horizontal .vehicle-option {
        width: 100%;
    }
}

.store-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    border: 2px solid transparent;
    background: var(--gradient);
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

.store-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-btn-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.2rem;
}

.store-btn-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.store-btn-name i {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .store-btn {
        min-width: 150px;
        padding: 0.6rem 1rem;
    }
    
    .store-btn-name {
        font-size: 1rem;
    }
}