/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
    /* Palette de couleurs - Blanc & Doré */
    --color-primary: #FFFFFF;
    --color-gold: #D4AF37;
    --color-gold-light: #F4E5C2;
    --color-gold-dark: #B8941F;
    --color-cream: #FAF8F3;
    --color-cream-light: #FFFDF9;
    --color-light-gray: rgba(200, 200, 200, 0.1);
    --color-light-gray-2: rgba(150, 150, 150, 0.15);
    --color-text: #2C2C2C;
    --color-text-light: #666666;
    
    /* Typographie */
    --font-heading: 'Playfair Display', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-cream-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* ===========================
   CONTAINER
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 1rem var(--spacing-md);
    column-gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-self: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end; /* ensure items sit to the far right */
}

/* Ensure hamburger is always the rightmost item inside nav-right */
.nav-right .btn-nav-devis { order: 1; }
.nav-right .hamburger { order: 2; }

/* Hidden by default, shown in mobile for CTA inside hamburger */
.nav-cta-mobile { display: none; }

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

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

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

.btn-nav-devis {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-nav-devis::after {
    display: none;
}

.btn-nav-devis:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-nav-devis:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.btn-nav-devis:active {
    transform: translateY(0) scale(0.98);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, rgba(255,255,255,0.6), rgba(250,248,243,0.6)), url('images/IMG_2982.JPG') center/cover no-repeat;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: var(--spacing-md);
}

.hero-logo-container {
    margin-bottom: 2rem;
}

.hero-logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    user-select: none;
    position: relative;
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn[disabled], .btn.is-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    color: white;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.99);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold-dark);
    border: 2px solid var(--color-gold);
}

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

.btn-secondary:active {
    transform: translateY(-1px) scale(0.99);
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    color: white;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.25);
    width: 100%;
    text-align: center;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn-gold:active {
    transform: translateY(0) scale(0.99);
}

/* Loading state for any .btn */
.btn.btn-loading {
    pointer-events: none;
    color: transparent;
}

.btn.btn-loading::after {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    border-top-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--color-gold);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

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

/* ===========================
   ANIMATIONS
   =========================== */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s both;
}

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

/* ===========================
   SECTIONS COMMUNES
   =========================== */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.title-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 0 auto 2rem;
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-elegant);
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

/* ===========================
   INTRO SECTION
   =========================== */
.intro-section {
    background: linear-gradient(to bottom, var(--color-cream-light), white);
    padding: var(--spacing-lg) 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* ===========================
   FLEET SECTION
   =========================== */
.fleet-section {
    background: white;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: var(--spacing-lg);
}

.vehicle-card {
    background: var(--color-cream-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.vehicle-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--color-light-gray);
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

/* Split image (two photos with angled gold divider) */
.vehicle-image-split {
    position: relative;
}

.vehicle-image-split .split-half {
    position: absolute;
    inset: 0;
}

.vehicle-image-split .split-left {
    clip-path: polygon(0 0, 58% 0, 42% 100%, 0% 100%);
}

.vehicle-image-split .split-right {
    clip-path: polygon(58% 0, 100% 0, 100% 100%, 42% 100%);
}

.vehicle-image-split img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.vehicle-image-split::after {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%) rotate(12deg);
    width: 4px;
    height: 120%;
    background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
    z-index: 2;
}

@media (max-width: 640px) {
    /* Slightly reduce the angle and thickness on small screens for readability */
    .vehicle-image-split .split-left {
        clip-path: polygon(0 0, 60% 0, 40% 100%, 0% 100%);
    }
    .vehicle-image-split .split-right {
        clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
    }
    .vehicle-image-split::after {
        transform: translateX(-50%) rotate(10deg);
        width: 3px;
    }
}

.vehicle-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.vehicle-badge.exclusive {
    background: linear-gradient(135deg, #8B7355, #A0826D);
}

.vehicle-content {
    padding: 2rem;
}

.vehicle-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.vehicle-count {
    color: var(--color-gold-dark);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.vehicle-description {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.vehicle-features {
    margin-bottom: 2rem;
}

.vehicle-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
    color: var(--color-text);
}

.vehicle-features i {
    color: var(--color-gold);
    font-size: 0.9rem;
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery-section {
    background: linear-gradient(to bottom, white, var(--color-cream-light));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    background: var(--color-light-gray);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(184, 148, 31, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay i {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===========================
   REVIEWS SECTION
   =========================== */
.reviews-section {
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: var(--spacing-lg);
}

.review-card {
    background: var(--color-cream-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.15);
}

.review-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.review-stars i {
    color: var(--color-gold);
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-light-gray-2);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ===========================
   THANKS (VIDEOS) SECTION
   =========================== */
.thanks-section {
    background: linear-gradient(to bottom, white, var(--color-cream-light));
}

.thanks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.video-card {
    background: var(--color-cream-light);
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 56px rgba(212, 175, 55, 0.16);
}


.video-wrapper {
    position: relative;
    aspect-ratio: 9/16; /* Format téléphone (portrait) */
    background: var(--color-cream);
    border: 2px solid var(--color-gold);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.12);
}

.video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* évite le zoom/crop, garde le format tel. */
    background: transparent;
}

/* Les titres sous vidéo sont retirés selon la demande */

/* ===========================
   QUOTE SECTION
   =========================== */
.quote-section {
    background: linear-gradient(135deg, var(--color-cream-light) 0%, white 100%);
}

.quote-content {
    margin-top: var(--spacing-lg);
}

.quote-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.15);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--color-gold-dark);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-card span {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.quote-placeholder {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}

/* Quote form */
.quote-form .form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.quote-form .form-field.full { grid-column: 1 / -1; }

.quote-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quote-form select {
    width: 100%;
    padding: 0.9rem 1rem;
    padding-right: 2.5rem; /* space for arrow */
    border-radius: 12px;
    border: 1px solid var(--color-light-gray-2);
    background: var(--color-cream-light);
    outline: none;
    font-size: 1rem;
    transition: var(--transition-smooth);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 6 5-6' fill='none' stroke='%23B8941F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px;
}

.quote-form select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.quote-form select:hover {
    border-color: rgba(212, 175, 55, 0.6);
}

.quote-form select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Hide default arrow in old IE (harmless elsewhere) */
select::-ms-expand { display: none; }

.quote-form .hint {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.btn-block { width: 100%; }

/* Loading */
.loading { 
    margin-top: 1.5rem; 
    display: none;
}

.loading-bar {
    width: 100%;
    height: 10px;
    background: var(--color-cream-light);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid var(--color-gold-light);
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold));
    border-radius: 999px;
    transition: width 0.2s ease;
}

.loading-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-top: 0.6rem;
    text-align: center;
}

/* Result */
.quote-result {
    margin-top: 1.5rem;
    background: var(--color-cream-light);
    border: 1px solid var(--color-gold-light);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.12);
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.price-line .label {
    font-weight: 700;
}

.price-line .price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-details {
    color: var(--color-text-light);
    margin-bottom: 0.8rem;
}

.result-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.disclaimer {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

@media (max-width: 968px) {
    .quote-form .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Small feedback when fields missing */
@keyframes shakeX {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.shake { animation: shakeX 0.5s ease; }

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-light) 100%);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 3px solid var(--color-gold-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: var(--spacing-lg);
}

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

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

.footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--color-text-light);
    transition: var(--transition-smooth);
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.footer-contact i {
    color: var(--color-gold);
    font-size: 1.1rem;
    width: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-light-gray-2);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--color-text-light);
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--color-gold-dark);
}

.footer-legal span {
    color: var(--color-light-gray-2);
}

/* ===========================
   SCROLL TO TOP BUTTON
   =========================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }

    /* Hide desktop CTA in mobile */
    .nav-right .btn-nav-devis { display: none; }

    /* Show CTA inside hamburger */
    .nav-cta-mobile { display: block; width: 100%; }
    .nav-cta-mobile .btn-nav-devis {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.25rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-info {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: lightboxZoom 0.3s ease;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 3rem;
    color: var(--color-gold-dark);
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--color-gold);
    color: white;
}

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

/* ===========================
   ACTIVE NAV LINK
   =========================== */
.nav-link.active {
    color: var(--color-gold-dark);
    font-weight: 600;
}

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

/* ===========================
   PAGE LOADING
   =========================== */
body:not(.loaded) {
    overflow: hidden;
}

body.loaded {
    animation: fadeInPage 0.5s ease;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-hero {
    background: linear-gradient(135deg, var(--color-cream-light) 0%, white 50%, var(--color-cream-light) 100%);
    padding: 10rem var(--spacing-md) 4rem;
    text-align: center;
    position: relative;
}

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

.legal-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.legal-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.3rem;
    color: var(--color-text-light);
    position: relative;
    z-index: 1;
}

.legal-content {
    padding: var(--spacing-xl) 0;
    background: white;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    background: var(--color-cream-light);
    padding: 2rem;
    border-left: 4px solid var(--color-gold);
    border-radius: 10px;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
}

.legal-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-light-gray-2);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-section h2 i {
    color: var(--color-gold);
    font-size: 1.5rem;
}

.legal-section h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-text);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-text {
    color: var(--color-text-light);
    line-height: 1.8;
}

.legal-text p {
    margin-bottom: 1rem;
}

.legal-text strong {
    color: var(--color-text);
    font-weight: 600;
}

.legal-text ul, .legal-text ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-text li {
    margin-bottom: 0.7rem;
    list-style: disc;
}

.legal-text ol li {
    list-style: decimal;
}

.legal-text a {
    color: var(--color-gold-dark);
    text-decoration: underline;
}

.legal-text a:hover {
    color: var(--color-gold);
}

.legal-back {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--color-light-gray-2);
}

.legal-back .btn {
    display: inline-flex;
}

@media (max-width: 968px) {
    .legal-hero {
        padding: 8rem var(--spacing-md) 3rem;
    }
    
    .legal-title {
        font-size: 2.5rem;
    }
    
    .legal-subtitle {
        font-size: 1.1rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .legal-hero {
        padding: 7rem var(--spacing-sm) 2rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-intro {
        padding: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-text ul, .legal-text ol {
        margin-left: 1rem;
    }
}

/* ===========================
   CALIBRATION IMAGES FLOTTE
   =========================== */

/* Ajustements images véhicules - Mode card individuelle */

img[data-cal="classeg-1"] {
    object-position: 50% 64%;
}

img[data-cal="classeg-2"] {
    object-position: 50% 50%;
}

img[data-cal="maybach-1"] {
    object-position: 50% 73%;
}

img[data-cal="maybach-2"] {
    object-position: 50% 67%;
}

img[data-cal="rolls-classique"] {
    object-position: 50% 71%;
}

img[data-cal="rolls-moderne"] {
    object-position: 50% 87%;
}

/* ===========================
   CALIBRATION GALERIE
   =========================== */

/* Ajustements images galerie */

img[data-cal="gallery-5"] {
    object-position: 50% 66%;
}
