/* ===== VARIABLES ===== */
:root {
    --black: #000000;
    --black-light: #111111;
    --black-lighter: #222222;
    --gold: #D4AF37;
    --gold-light: #F1E5C0;
    --gold-dark: #B49450;
    --white: #FFFFFF;
    --white-off: #F5F5F5;
    --gray: #333333;
    --gray-light: #444444;
    --gradient-gold: linear-gradient(135deg, #D4AF37, #F1E5C0, #D4AF37);
    --gradient-black: linear-gradient(135deg, #000000, #222222);
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.5);
    --shadow-md: 0 10px 30px rgba(212,175,55,0.2);
    --shadow-lg: 0 20px 50px rgba(212,175,55,0.3);
    --shadow-xl: 0 30px 70px rgba(212,175,55,0.4);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    background: #000000;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
    color: var(--gold);
    padding: 0 20px;
}

.loader-icon {
    margin-bottom: 20px;
    animation: pulseGold 2s ease infinite;
}

.loader-logo {
    width: min(120px, 20vw);
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212,175,55,0.5));
}

@keyframes pulseGold {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
}

@media (min-width: 992px) {
    .navbar {
        padding: 30px 80px;
    }
}

.navbar.scrolled {
    padding: 15px 50px;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(212,175,55,0.3);
}

@media (min-width: 992px) {
    .navbar.scrolled {
        padding: 15px 80px;
    }
}

.logo {
    font-size: clamp(24px, 6vw, 36px);
    font-weight: 800;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 4px;
    transition: all 0.4s ease;
    position: relative;
    white-space: nowrap;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 15px rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(212,175,55,0.3));
}

@media (min-width: 992px) {
    .logo-img {
        height: 50px;
    }
}

.navbar.scrolled .logo-img {
    height: 35px;
}

.navbar.scrolled .logo {
    color: var(--gold);
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 25px rgba(212,175,55,0.6);
}

/* Menu Desktop */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.4s ease;
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

.navbar.scrolled .nav-menu a {
    color: var(--white);
}

.nav-menu a.active {
    color: var(--gold) !important;
}

.nav-menu a.active::after {
    width: 100%;
    background: var(--gold);
    height: 2px;
    box-shadow: 0 0 10px var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px var(--gold);
}

.nav-menu a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Menu Mobile */
.menu-toggle {
    display: block;
    color: var(--gold);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 1001;
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

.navbar.scrolled .menu-toggle {
    color: var(--gold);
}

.menu-toggle:hover {
    transform: rotate(90deg);
    color: var(--gold-light);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 450px;
    height: 100vh;
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    padding: 80px 30px;
    border-left: 2px solid var(--gold);
}

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

@media (min-width: 992px) {
    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        flex-direction: row;
        padding: 0;
        gap: 40px;
        border-left: none;
    }
    
    .nav-menu.active {
        right: auto;
    }
}

.nav-menu a {
    color: var(--white) !important;
    font-size: 20px;
}

@media (min-width: 992px) {
    .nav-menu a {
        color: var(--white);
        font-size: 15px;
    }
    
    .navbar.scrolled .nav-menu a {
        color: var(--white);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    padding: 120px 20px;
    background: transparent;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(100%);
    animation: zoomIn 20s ease infinite alternate;
}

@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
}

.hero-content {
    max-width: 1100px;
    width: 100%;
    padding: 0;
    animation: fadeInUp 1.5s ease;
}

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

.hero-subtitle {
    font-size: clamp(14px, 3vw, 18px);
    letter-spacing: 10px;
    margin-bottom: 25px;
    color: var(--gold);
    font-weight: 400;
    text-transform: uppercase;
    background: rgba(0,0,0,0.5);
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212,175,55,0.3);
    font-family: 'Montserrat', sans-serif;
}

.hero-content h1 {
    font-size: clamp(42px, 10vw, 90px);
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 2px 2px 40px rgba(0,0,0,0.5);
    word-wrap: break-word;
    font-family: 'Playfair Display', serif;
    letter-spacing: 4px;
}

.hero-content h1 span {
    color: var(--gold);
    font-weight: 800;
    display: inline-block;
    position: relative;
}

.hero-content p {
    font-size: clamp(16px, 4vw, 22px);
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-shadow: 1px 1px 20px rgba(0,0,0,0.5);
    color: var(--white-off);
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .hero-btns {
        flex-direction: row;
        gap: 30px;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 45px;
    width: 100%;
    max-width: 280px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 3px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

@media (min-width: 768px) {
    .btn {
        width: auto;
        padding: 18px 55px;
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

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

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
    position: relative;
    background-size: 200% auto;
    box-shadow: 0 0 25px rgba(212,175,55,0.3);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212,175,55,0.5);
    border-color: var(--white);
    color: var(--black);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.3);
    border-color: var(--gold);
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 20px;
    position: relative;
    background: var(--black);
}

@media (min-width: 768px) {
    .section {
        padding: 100px 40px;
    }
}

@media (min-width: 992px) {
    .section {
        padding: 140px 60px;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
    position: relative;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 80px;
    }
}

.section-subtitle {
    color: var(--gold);
    font-size: clamp(13px, 3vw, 15px);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 0 10px rgba(212,175,55,0.3);
}

.section-title {
    font-size: clamp(36px, 8vw, 60px);
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.section-title span {
    color: var(--gold);
    display: inline-block;
    position: relative;
    text-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.section-description {
    color: var(--white-off);
    line-height: 2;
    font-size: clamp(15px, 4vw, 18px);
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.about-media {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.6s ease;
    aspect-ratio: 4/3;
    border: 1px solid rgba(212,175,55,0.3);
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    filter: grayscale(50%);
}

.about-media:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl), 0 30px 60px rgba(212,175,55,0.3);
}

.about-media:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.about-content {
    padding: 20px;
}

.about-content h3 {
    font-size: clamp(30px, 6vw, 42px);
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.about-content p {
    color: var(--white-off);
    line-height: 2;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--black-light);
    border-radius: 0;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid rgba(212,175,55,0.2);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.stat-number {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 13px;
    color: var(--white-off);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    font-weight: 500;
}

/* ===== MARQUES SECTION ===== */
.marques-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212,175,55,0.2);
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.marques-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.marques-section .section-header {
    margin-bottom: 40px;
}

.marques-section .section-subtitle {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}

.marques-section .section-title {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.marques-section .section-title span {
    color: var(--gold);
}

.marques-section .section-description {
    color: var(--white-off);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Swiper Marques */
.marques-swiper {
    width: 100%;
    padding: 20px 0 40px !important;
    overflow: hidden;
}

.marques-swiper .swiper-wrapper {
    padding: 10px 0;
    align-items: center;
}

.marques-swiper .swiper-slide {
    height: auto;
    opacity: 0.7;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marques-swiper .swiper-slide:hover {
    opacity: 1;
    transform: scale(1.1);
}

.marque-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.marque-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.marque-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9) drop-shadow(0 5px 10px rgba(0,0,0,0.3));
    transition: all 0.4s ease;
}

.marque-card:hover .marque-logo {
    filter: brightness(1.2) drop-shadow(0 10px 20px rgba(212,175,55,0.3));
    transform: scale(1.1);
}

/* Navigation buttons pour marques */
.marques-next,
.marques-prev {
    color: var(--gold) !important;
    background: rgba(0, 0, 0, 0.6);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
}

.marques-next:after,
.marques-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}

.marques-next:hover,
.marques-prev:hover {
    background: var(--gold);
    color: var(--black) !important;
    transform: scale(1.1);
}

/* Pagination pour marques */
.marques-pagination {
    bottom: 0 !important;
}

.marques-pagination .swiper-pagination-bullet {
    background: var(--gold) !important;
    opacity: 0.5;
    width: 10px !important;
    height: 10px !important;
    transition: all 0.3s ease;
}

.marques-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 20px !important;
    border-radius: 10px !important;
}

/* ===== CATALOGUE SECTION ===== */
.catalogue-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
    overflow: hidden;
}

.catalogue-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.catalogue-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

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

.car-card {
    background: var(--black-light);
    border: 1px solid rgba(212,175,55,0.2);
    padding: 30px 25px 35px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.car-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
    transition: left 0.7s ease;
}

.car-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: var(--gold);
    box-shadow: var(--shadow-xl);
    background: var(--black);
}

.car-card:hover::before {
    left: 100%;
}

.car-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

.car-image {
    width: 100%;
    height: 180px;
    margin: 20px auto 25px;
    position: relative;
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.car-card:hover .car-image {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 20px 30px rgba(212,175,55,0.4));
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
}

.car-category {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}

.car-title {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.car-description {
    color: var(--white-off);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.car-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 14px;
}

.car-features span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.car-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.btn-whatsapp {
    padding: 12px 20px;
    background: #25d366;
    border: 2px solid #25d366;
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-whatsapp::before {
    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;
    z-index: -1;
}

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

.btn-whatsapp:hover {
    background: transparent;
    color: #25d366;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-whatsapp:hover i {
    transform: scale(1.2);
}

.btn-contact {
    width: 50px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-contact:hover::before {
    width: 100px;
    height: 100px;
}

.btn-contact:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

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

.btn-contact:hover i {
    transform: rotate(10deg);
}

/* ===== VENDRE SECTION ===== */
.vendre-section {
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
}

.vendre-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .vendre-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.vendre-content {
    padding: 40px;
    background: var(--black-light);
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: var(--shadow-lg);
}

.vendre-content h3 {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.vendre-content p {
    color: var(--white-off);
    line-height: 2;
    margin-bottom: 25px;
    font-size: 16px;
}

.vendre-list {
    list-style: none;
    margin: 30px 0;
}

.vendre-list li {
    color: var(--white-off);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.vendre-list i {
    color: var(--gold);
    font-size: 20px;
}

.vendre-form {
    padding: 40px;
    background: var(--black);
    border: 1px solid rgba(212,175,55,0.3);
    box-shadow: var(--shadow-xl);
}

.vendre-form h4 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

/* ===== FORMULAIRES ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    background: var(--black-light);
    border: 2px solid rgba(212,175,55,0.2);
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.4s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(212,175,55,0.2);
    background: var(--black);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    padding: 15px 30px;
    border: 2px solid var(--gold);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-submit:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===== ACCESSOIRES SECTION ===== */
.accessoires-section {
    background: var(--black);
}

/* ===== COMING SOON ACCESSOIRES ===== */
.coming-soon-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--black-light);
    border: 2px solid rgba(212,175,55,0.2);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.coming-soon-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

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


.coming-soon-title {
    font-size: 36px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    letter-spacing: 4px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.coming-soon-text {
    color: var(--white-off);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.coming-soon-form {
    display: flex;
    gap: 15px;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.coming-soon-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    background: var(--black);
    border: 2px solid rgba(212,175,55,0.2);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: all 0.4s ease;
}

.coming-soon-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(212,175,55,0.2);
}

.coming-soon-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.btn-notify {
    padding: 15px 35px;
    background: var(--gold);
    border: 2px solid var(--gold);
    color: var(--black);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.btn-notify:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}

/* ===== CONTACT SECTION ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

.contact-info {
    padding: 50px;
    background: var(--black-light);
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: var(--shadow-lg);
}

.contact-info h3 {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    color: var(--white-off);
}

.contact-detail-item i {
    width: 45px;
    height: 45px;
    background: rgba(212,175,55,0.1);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-detail-item:hover i {
    background: var(--gold);
    color: var(--black);
    transform: rotate(360deg);
}

.contact-form {
    padding: 50px;
    background: var(--black);
    border: 1px solid rgba(212,175,55,0.3);
    box-shadow: var(--shadow-xl);
}

.contact-form h4 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: var(--black-light);
    border: 2px solid rgba(212,175,55,0.2);
    color: var(--white);
    padding: 15px 18px;
    width: 100%;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 5px 20px rgba(212,175,55,0.2);
}

.btn-contact-submit {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    padding: 15px 30px;
    border: 2px solid var(--gold);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-contact-submit:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===== MAP ===== */
.map-section {
    padding: 0 20px 80px;
    background: var(--black);
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid rgba(212,175,55,0.3);
}

/* ===== FLOATING SOCIAL ===== */
.floating-social {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-lg);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.floating-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.floating-icon:hover::before {
    transform: translateY(0);
}

.floating-icon.whatsapp {
    background: #25d366;
}

.floating-icon.instagram {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
}

.floating-icon.facebook {
    background: #1877f2;
}

.floating-icon:hover {
    transform: translateY(-10px) scale(1.2) rotate(360deg);
    box-shadow: var(--shadow-xl);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 20px 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212,175,55,0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (min-width: 992px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 70px;
    }
}

.footer-logo {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    letter-spacing: 4px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-about p {
    color: var(--white-off);
    line-height: 2;
    margin-bottom: 25px;
    font-size: 15px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.5s ease;
    font-size: 18px;
    border: 1px solid rgba(212,175,55,0.3);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-8px) rotate(360deg) scale(1.2);
    border-color: var(--white);
}

.footer h4 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: var(--white-off);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 15px;
}

.footer-contact p {
    color: var(--white-off);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
}

.footer-contact i {
    color: var(--gold);
    width: 25px;
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid rgba(212,175,55,0.2);
    color: var(--white-off);
    font-size: 14px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    letter-spacing: 1px;
}

/* ===== SWIPER SLIDER STYLES ===== */
.catalogue-swiper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 10px 60px !important;
    overflow: hidden;
}

.swiper-wrapper {
    padding: 20px 0 40px;
}

.swiper-slide {
    height: auto;
    transition: all 0.3s ease;
}

.swiper-slide:hover {
    transform: translateY(-10px);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--gold) !important;
    background: rgba(0, 0, 0, 0.8);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--gold);
    color: var(--black) !important;
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: var(--gold) !important;
    opacity: 0.5;
    width: 12px !important;
    height: 12px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px !important;
    border-radius: 10px !important;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-xl);
    animation: zoom 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--gold);
    font-size: 60px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10000;
}

.modal-close:hover {
    color: var(--white);
    transform: rotate(90deg);
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--white);
    padding: 20px 0;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
}

.car-img-click {
    cursor: pointer;
    transition: all 0.3s ease;
}

.car-img-click:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* ===== ANIMATION POUR BOUTON VOIR PLUS ===== */
.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(8px);
}

.text-center {
    text-align: center;
    width: 100%;
}

/* ===== PRO GALLERY MODAL (NOUVEAU) ===== */
.pro-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
}

.pro-gallery-modal.active {
    display: block;
}

.pro-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.pro-gallery-shell {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100vw - 40px));
    height: min(90vh, 800px);
    margin: 5vh auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.pro-gallery-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pro-gallery-stage {
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
}

.pro-gallery-main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.pro-gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(212,175,55,0.2);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.pro-gallery-close:hover {
    background: var(--gold);
    color: #000;
    transform: rotate(90deg);
}

.pro-gallery-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--gold);
    color: #000;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.pro-gallery-nav:hover {
    transform: scale(1.1);
    background: #ffd700;
}

.pro-gallery-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pro-gallery-meta {
    text-align: center;
}

.pro-gallery-title {
    color: #fff;
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.pro-gallery-counter {
    color: var(--gold);
    font-size: 16px;
}

.pro-gallery-thumbs-wrap {
    width: 100%;
    max-width: 900px;
    overflow-x: auto;
    padding: 10px 0;
}

.pro-gallery-thumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.pro-gallery-thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s;
}

.pro-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-gallery-thumb:hover,
.pro-gallery-thumb.active {
    opacity: 1;
    border-color: var(--gold);
}

@media (max-width: 768px) {
    .pro-gallery-shell {
        flex-direction: column;
        margin: 10px;
        height: 95vh;
    }
    
    .pro-gallery-stage {
        height: 50vh;
    }
    
    .pro-gallery-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .pro-gallery-prev { left: 10px; }
    .pro-gallery-next { right: 10px; }
    
    .pro-gallery-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
    .contact-info, .contact-form, .vendre-content, .vendre-form {
        padding: 30px 20px;
    }
    
    .about-stats {
        gap: 10px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }

    .marques-section {
        padding: 40px 15px;
    }
    
    .marques-section .section-title {
        font-size: 28px;
    }
    
    .marque-card {
        height: 120px;
        padding: 20px 15px;
    }
    
    .marque-logo {
        max-height: 60px;
    }
    
    .marques-next,
    .marques-prev {
        display: none !important;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    .catalogue-swiper {
        padding: 20px 5px 50px !important;
    }
    
    .modal-content {
        max-width: 95%;
    }
    
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }

    .coming-soon-container {
        padding: 40px 20px;
        margin: 0 15px;
    }
    
    .coming-soon-icon {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
    
    .coming-soon-title {
        font-size: 28px;
    }
    
    .coming-soon-text {
        font-size: 16px;
    }
    
    .coming-soon-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .coming-soon-form input {
        width: 100%;
    }
    
    .btn-notify {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-btns .btn {
        max-width: 100%;
    }
    
    .section {
        padding: 60px 15px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }

    .marque-card {
        height: 100px;
    }
    
    .marque-logo {
        max-height: 50px;
    }

    .coming-soon-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
}