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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a3a5f;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #c19a5b;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: #c19a5b;
    color: white;
}

.btn-primary:hover {
    background-color: #a88447;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(193, 154, 91, 0.2);
}

/* ==============================================
   HEADER & NAVIGATION
   ============================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a3a5f;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: #c19a5b;
}

.logo img {
    height: 45px;
    width: auto;
    margin-right: 12px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo img {
        height: 35px;
        margin-right: 8px;
    }
}

/* Navigation Desktop */
.nav-desktop ul {
    display: flex;
    list-style: none;
}

.nav-desktop li {
    margin-left: 30px;
}

.nav-desktop a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: #c19a5b;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c19a5b;
    transition: width 0.3s ease;
}

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

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: #1a3a5f;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation Mobile */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.4s ease;
    padding: 80px 30px 30px;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile ul {
    list-style: none;
}

.nav-mobile li {
    margin-bottom: 20px;
}

.nav-mobile a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.nav-mobile a:hover,
.nav-mobile a.active {
    color: #c19a5b;
}

.cars-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf2 100%);
    overflow: hidden;
    min-height: 100vh;
}

#vente-voitures {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    border-bottom: 2px solid #e1e8ef;
}

#vente-voitures .car-card {
    border: 1px solid rgba(26, 58, 95, 0.05);
}

#vente-voitures .price-tag .price {
    color: #c19a5b;
}

#vente-voitures .btn-reserver {
    background: #1a3a5f;
}

#vente-voitures .btn-reserver:hover {
    background: #0a2444;
}

/* ===== EFFET PARALLAX VOITURE EN MOUVEMENT ===== */

@keyframes driveCar {
    0% {
        left: -300px;
        transform: translateY(0) rotate(0deg);
    }

    20% {
        transform: translateY(-10px) rotate(1deg);
    }

    40% {
        transform: translateY(0) rotate(0deg);
    }

    60% {
        transform: translateY(-5px) rotate(-1deg);
    }

    80% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        left: calc(100% + 300px);
        transform: translateY(0) rotate(0deg);
    }
}

.car-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.car-light {
    position: absolute;
    top: 40px;
    right: 20px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 200, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 20px 10px rgba(255, 255, 200, 0.5);
    animation: lightPulse 2s infinite;
}

@keyframes lightPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.car-shadow {
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 260px;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(5px);
    animation: shadowMove 15s linear infinite;
}

@keyframes shadowMove {
    0% {
        opacity: 0.3;
        transform: scaleX(1);
    }

    50% {
        opacity: 0.5;
        transform: scaleX(1.2);
    }

    100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
}

.road-lines {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.3) 0px,
            rgba(255, 255, 255, 0.3) 50px,
            transparent 50px,
            transparent 100px);
    animation: roadMove 3s linear infinite;
}

@keyframes roadMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 0;
    }
}

/* ===== FILTRES VOITURES ===== */
.car-filters {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(193, 154, 91, 0.1);
}

.car-filter-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    border-radius: 30px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.car-filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(193, 154, 91, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.car-filter-btn:hover::before {
    width: 200px;
    height: 200px;
}

.car-filter-btn:hover {
    color: #c19a5b;
}

.car-filter-btn.active {
    background: #c19a5b;
    color: white;
    box-shadow: 0 5px 15px rgba(193, 154, 91, 0.3);
}

.car-filter-select {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
}

.car-filter-select:hover,
.car-filter-select:focus {
    border-color: #c19a5b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(193, 154, 91, 0.1);
}

/* ===== GRILLE DES VOITURES ===== */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.car-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
    animation: carCardAppear 0.6s ease-out;
}

@keyframes carCardAppear {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

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

.car-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 50px rgba(193, 154, 91, 0.2);
}

.car-card-inner {
    display: flex;
    flex-direction: column;
}

/* ===== MEDIA VOITURE ===== */
.car-media {
    position: relative;
    background: linear-gradient(135deg, #1a3a5f, #0a1a2f);
}

.car-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.car-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.car-card:hover .car-main-image {
    transform: scale(1.1);
}

.car-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.car-image-container:hover .car-image-overlay {
    opacity: 1;
}

.car-zoom-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #1a3a5f;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-zoom-btn:hover {
    background: #c19a5b;
    color: white;
    transform: scale(1.1) rotate(90deg);
}

/* ===== BADGES VOITURE ===== */
.car-badge {
    position: absolute;
    top: 15px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 5;
    animation: badgeGlow 2s infinite;
}

@keyframes badgeGlow {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.1);
    }
}

.car-badge.popular {
    left: 15px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.car-badge.premium {
    left: 15px;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.car-badge.luxe {
    left: 15px;
    background: linear-gradient(135deg, #2c3e50, #1a2a3a);
    color: white;
}

.car-badge.eco {
    left: 15px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.car-badge.condition {
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    color: white;
}

/* ===== MINIATURES ===== */
.car-thumbnails {
    display: flex;
    gap: 5px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
}

.thumbnail {
    width: 40px;
    height: 30px;
    border-radius: 5px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #c19a5b;
    transform: translateY(-3px);
    opacity: 1;
}

/* ===== INFORMATIONS VOITURE ===== */
.car-info {
    padding: 25px;
}

.car-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.car-header h3 {
    font-size: 1.3rem;
    color: #1a3a5f;
    font-weight: 600;
}

.car-rating {
    color: #f39c12;
    font-size: 0.9rem;
}

.car-rating span {
    color: #666;
    margin-left: 5px;
}

/* ===== SPÉCIFICATIONS ===== */
.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #555;
    padding: 5px 10px;
    background: #f8f9fa;
    border-radius: 20px;
}

.spec i {
    color: #c19a5b;
    font-size: 1rem;
}

/* ===== LISTE DES CARACTÉRISTIQUES ===== */
.feature-list {
    list-style: none;
    margin-bottom: 15px;
}

.feature-list li {
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: #27ae60;
    margin-right: 8px;
}

/* ===== PRIX ===== */
.car-price-section {
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a3a5f;
}

.price-period {
    color: #666;
    font-size: 0.9rem;
}

.price-options {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #888;
}

.price-options span {
    padding: 3px 8px;
    background: white;
    border-radius: 15px;
}

/* ===== ACTIONS ===== */
.car-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-reserver {
    flex: 2;
    padding: 14px;
    background: #c19a5b;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-reserver:hover {
    background: #a88447;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 154, 91, 0.3);
}

.btn-details-car {
    flex: 1;
    padding: 14px;
    background: #f0f0f0;
    color: #333;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-details-car:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn-whatsapp {
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px) rotate(360deg);
}

/* ===== MODAL GALERIE ===== */
.car-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    overflow: hidden;
}

.car-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-modal-content img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: modalZoom 0.3s ease;
}

@keyframes modalZoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.car-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.car-modal-close:hover {
    background: #c19a5b;
    transform: rotate(90deg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 2001;
}

.modal-prev,
.modal-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* ===== MODAL DÉTAILS ===== */
.modal-details-content {
    background: white;
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    animation: slideUp 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.details-media img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

.details-thumbnails {
    display: flex;
    gap: 10px;
}

.details-info h2 {
    color: #1a3a5f;
    font-size: 2rem;
    margin-bottom: 10px;
}

.details-price {
    margin-bottom: 30px;
}

.details-price span:first-child {
    font-size: 1.8rem;
    font-weight: 700;
    color: #c19a5b;
}

.details-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.details-specs-grid .spec {
    padding: 10px;
}

.details-actions {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.btn-reserver-direct {
    flex: 1;
    background: #c19a5b;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.btn-whatsapp-direct {
    padding: 15px 25px;
    background: #25D366;
    color: white;
    border-radius: 10px;
    text-decoration: none;
}

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

/* ===== MODAL RÉSERVATION ===== */
.reservation-modal .reservation-content {
    background: white;
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    border-radius: 20px;
    animation: slideUpModal 0.4s ease;
}

@keyframes slideUpModal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.reservation-content h2 {
    color: #1a3a5f;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #c19a5b;
    box-shadow: 0 0 0 3px rgba(193, 154, 91, 0.1);
}

.price-calculator {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.price-calculator h3 {
    color: #1a3a5f;
    margin-bottom: 15px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.calc-row.total {
    border-bottom: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a3a5f;
    margin-top: 10px;
}

.btn-confirm-reservation {
    padding: 16px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}

.btn-confirm-reservation:hover {
    background: #219a52;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.3);
}

/* ===== BOUTON VOIR PLUS ===== */

.view-more-container {
    text-align: center;
    margin-top: 50px;
}

.btn-load-more {
    background: white;
    border: 2px solid #c19a5b;
    color: #c19a5b;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-load-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(193, 154, 91, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-load-more:hover::before {
    width: 300px;
    height: 300px;
}

.btn-load-more:hover {
    background: #c19a5b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(193, 154, 91, 0.3);
}

.btn-load-more i {
    transition: transform 0.3s ease;
}

.btn-load-more:hover i {
    transform: translateY(5px);
}

.btn-load-more {
    background: white;
    border: 2px solid #c19a5b;
    color: #c19a5b;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-load-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(193, 154, 91, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-load-more:hover::before {
    width: 300px;
    height: 300px;
}

.btn-load-more:hover {
    background: #c19a5b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(193, 154, 91, 0.3);
}

.btn-load-more i {
    transition: transform 0.3s ease;
}

.btn-load-more:hover i {
    transform: translateY(5px);
}

/* ===== ANIMATIONS SUPPLÉMENTAIRES ===== */
@keyframes floatCar {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.car-card:nth-child(even) {
    animation-delay: 0.2s;
}

.car-card:nth-child(3n) {
    animation-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1200px) {
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .car-filters .filter-group {
        flex-wrap: wrap;
        justify-content: center;
    }

    .car-filter-select {
        width: 100%;
    }
}

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

    .car-header {
        flex-direction: column;
        gap: 10px;
    }

    .car-actions {
        flex-wrap: wrap;
    }

    .btn-reserver,
    .btn-details-car {
        flex: 1 1 100%;
    }

    .btn-whatsapp {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .car-filters {
        padding: 20px;
    }

    .car-specs {
        justify-content: center;
    }

    .car-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .price {
        font-size: 1.5rem;
    }
}

/* ==============================================
   FOOTER
   ============================================== */

.footer {
    background-color: #1a3a5f;
    color: white;
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    margin: 15px 0 20px;
    color: #b0c4d9;
    line-height: 1.6;
}

.footer-brand a {
    color: wheat;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-brand a:hover {
    color: goldenrod;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background-color: #c19a5b;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #c19a5b;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0c4d9;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #b0c4d9;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* ==============================================
   RESPONSIVE STYLES
   ============================================== */

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

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

    .contact-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 15px 20px;
    }

    .nav-desktop {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero {
        min-height: 600px;
        margin-top: 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .properties-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-btn.prev {
        left: 15px;
    }

    .carousel-btn.next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 24px;
    }

    .contact-form-container,
    .contact-info,
    .map-container {
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

/* ==============================================
   SECTION REMORQUAGE
   ============================================== */

.towing-section {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
}

.towing-card-large {
    background: #252525;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(193, 154, 91, 0.2);
}

.towing-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.towing-media {
    position: relative;
    height: 100%;
}

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

.towing-badge-live {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
    animation: whitePulse 2s infinite;
}

@keyframes whitePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.towing-text {
    padding: 60px;
}

.towing-header .service-label {
    color: #c19a5b;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.towing-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.towing-header p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.towing-features {
    display: grid;
    gap: 25px;
    margin-bottom: 50px;
}

.towing-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.towing-feature-item i {
    width: 50px;
    height: 50px;
    background: rgba(193, 154, 91, 0.1);
    color: #c19a5b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.towing-feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.towing-feature-item p {
    color: #888;
    font-size: 0.95rem;
}

.towing-cta {
    display: flex;
    gap: 20px;
}

.btn-towing-whatsapp {
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.btn-towing-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-towing-tel {
    background: white;
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.btn-towing-tel:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

.btn-towing-details {
    background: rgba(193, 154, 91, 0.1);
    color: #c19a5b;
    border: 1.5px solid #c19a5b;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-towing-details:hover {
    background: #c19a5b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(193, 154, 91, 0.2);
}

@media (max-width: 992px) {
    .towing-content-grid {
        grid-template-columns: 1fr;
    }

    .towing-media {
        height: 350px;
    }

    .towing-text {
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .towing-header h2 {
        font-size: 2rem;
    }

    .towing-cta {
        flex-direction: column;
    }

    .btn-towing-whatsapp,
    .btn-towing-tel {
        justify-content: center;
    }
}