/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #121212;
    --anthracite: #1a1a1a;
    --white: #ffffff;
    --gold: #C5A55D;
    --gold-dark: #9d834a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--black);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.logo-title {
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.logo-subtitle {
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-desktop {
    display: none;
    gap: 8px;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
    background: rgba(197, 165, 93, 0.1);
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-phone:hover {
    border-color: var(--gold);
    color: white;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--anthracite);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-nav-link:hover {
    color: white;
    background: rgba(255,255,255,0.05);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 165, 93, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.05);
    color: white;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

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

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

.btn-whatsapp i {
    font-size: 20px;
    margin-right: 8px;
}

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(18, 18, 18, 0.85), rgba(26, 26, 26, 0.9)),
        url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?w=1600&q=50&fm=webp') center/cover no-repeat;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(18, 18, 18, 0.4) 100%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(197, 165, 93, 0.15);
    border: 1px solid rgba(197, 165, 93, 0.3);
    border-radius: 20px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.hero-feature i {
    color: var(--gold);
    font-size: 18px;
}

/* Sections */
section {
    padding: 80px 0;
}

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

.section-header.center {
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, var(--black), var(--anthracite));
}

.booking-section .section-title,
.booking-section .section-subtitle {
    color: white;
}

.booking-section .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--anthracite);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

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

.form-group label {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-family: inherit;
    width: 100%;
}

.form-group select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    cursor: pointer;
    background-color: rgba(255,255,255,0.05) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C5A55D' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    padding-right: 36px !important;
}

.form-group select option {
    background: #1a1a1a !important;
    color: white !important;
    padding: 12px !important;
    font-size: 16px !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
}

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

.required {
    color: var(--gold);
}

.price-estimate {
    background: rgba(197, 165, 93, 0.1);
    border: 1px solid rgba(197, 165, 93, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.price-estimate-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price-estimate-content span:first-child {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

.price-note {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

.form-message {
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.form-note {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    line-height: 1.6;
    margin-top: 16px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
}

.trust-badge i {
    color: var(--gold);
    font-size: 16px;
}

/* Services Section */
.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-card.popular {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(197, 165, 93, 0.2);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
}

.service-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features i {
    color: var(--gold);
    font-size: 16px;
}

/* Pricing Section */
.pricing-section {
    background: #f9f9f9;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.price-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.price-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.price-route {
    font-weight: 600;
    color: #666;
    margin-bottom: 16px;
}

.price-amount {
    font-size: 40px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.price-time {
    color: #999;
    font-size: 14px;
}

.price-card.popular-price {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, rgba(197, 165, 93, 0.05), rgba(197, 165, 93, 0.1));
    position: relative;
}

.price-card.popular-price::before {
    content: '⭐ POPULAIRE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.promo-banner {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: white;
}

.promo-banner h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.promo-banner p {
    font-size: 18px;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    background: #f9f9f9;
}

.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.rating-stars i {
    color: var(--gold);
    font-size: 24px;
}

.rating-text {
    margin-left: 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 16px;
}

.testimonial-text {
    color: #666;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.testimonial-service {
    color: #999;
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.contact-card {
    background: #f9f9f9;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.contact-card i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.contact-note {
    color: #666;
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--black);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Floating Action Buttons - MOBILE FIRST */
.floating-actions {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.floating-btn {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 24px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3) !important;
    transition: all 0.3s !important;
    text-decoration: none !important;
    pointer-events: auto !important;
}

.floating-phone {
    background: linear-gradient(135deg, #C5A55D, #A68B4A) !important;
    animation: pulse-phone 2s infinite !important;
}

.floating-whatsapp {
    background: #25D366 !important;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.floating-btn:active {
    transform: scale(0.95);
}

@keyframes pulse-phone {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(197, 165, 93, 0.4);
    }
    50% {
        box-shadow: 0 4px 24px rgba(197, 165, 93, 0.8);
    }
}

/* Mobile: Masquer boutons flottants (on a déjà la barre en bas) */
@media (max-width: 767px) {
    .floating-actions {
        display: none !important;
    }
}

.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 998;
    grid-template-columns: repeat(3, 1fr);
    padding: 12px 0;
}

.mobile-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: white;
    text-decoration: none;
    font-size: 12px;
    padding: 8px;
    transition: all 0.3s;
}

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

.mobile-action:active {
    background: rgba(255,255,255,0.05);
}

/* Responsive */
@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }

    .nav-desktop {
        display: flex;
    }

    .header-actions {
        display: flex;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-lg {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .booking-form-container {
        padding: 24px;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .mobile-bottom-bar {
        display: grid;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Blog Section */
.blog-section {
    background: white;
    padding: 80px 0;
}

.blog-page {
    background: #f9fafb;
    min-height: 100vh;
    padding-bottom: 80px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.blog-card-content {
    padding: 24px;
}

.blog-card-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(197, 165, 93, 0.1);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #999;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-cta {
    text-align: center;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #f5f5f5;
    color: var(--black);
}

#modalBody h1 {
    font-size: 32px;
    color: var(--black);
    margin-bottom: 20px;
}

#modalBody h2 {
    font-size: 24px;
    color: var(--black);
    margin: 30px 0 15px;
}

#modalBody h3 {
    font-size: 20px;
    color: var(--black);
    margin: 20px 0 10px;
}

#modalBody p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

#modalBody ul, #modalBody ol {
    margin: 16px 0;
    padding-left: 24px;
}

#modalBody li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

#modalBody strong {
    color: var(--black);
    font-weight: 600;
}

#modalBody a {
    color: var(--gold);
    text-decoration: none;
}

#modalBody a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 24px;
        margin: 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    #modalBody h1 {
        font-size: 24px;
    }

    #modalBody h2 {
        font-size: 20px;
    }
}

/* ========================================
   LANGUAGE SWITCHER (Dropdown avec drapeaux)
======================================== */
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 165, 93, 0.1);
    border: 1px solid rgba(197, 165, 93, 0.3);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.lang-current:hover {
    background: rgba(197, 165, 93, 0.2);
    border-color: var(--gold);
}

.lang-flag {
    font-size: 18px;
    line-height: 1;
}

.lang-code {
    text-transform: uppercase;
}

.lang-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--black);
    border: 1px solid rgba(197, 165, 93, 0.3);
    border-radius: 8px;
    min-width: 150px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--white);
    font-size: 14px;
    border-bottom: 1px solid rgba(197, 165, 93, 0.1);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(197, 165, 93, 0.1);
}

.lang-option.active {
    background: rgba(197, 165, 93, 0.2);
    color: var(--gold);
}

.lang-option .lang-flag {
    font-size: 20px;
}

.lang-option .lang-name {
    flex: 1;
}

/* ========================================
   COOKIE BANNER (RGPD)
======================================== */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--black);
    color: var(--white);
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    transition: bottom 0.2s ease-out;
    will-change: bottom;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text h3 {
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 18px;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cookie-accept {
    background: var(--gold);
    color: var(--black);
}

.btn-cookie-accept:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* ========================================
   GDPR CHECKBOX
======================================== */
.gdpr-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0;
    padding: 16px;
    background: rgba(197, 165, 93, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(197, 165, 93, 0.2);
}

.gdpr-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--gold);
}

.gdpr-checkbox label {
    flex: 1;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}

.gdpr-checkbox label a {
    color: var(--gold);
    text-decoration: underline;
}

.gdpr-checkbox label a:hover {
    color: var(--gold-dark);
}

.gdpr-checkbox.error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.gdpr-error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 8px;
    display: none;
}

.gdpr-checkbox.error .gdpr-error-message {
    display: block;
}

/* ========================================
   MOBILE LANGUAGE SWITCHER
======================================== */
.mobile-lang-switcher {
    display: flex;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid rgba(197, 165, 93, 0.2);
    justify-content: center;
}

.mobile-lang-switcher .lang-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(197, 165, 93, 0.1);
    border: 1px solid rgba(197, 165, 93, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    font-size: 14px;
}

.mobile-lang-switcher .lang-option:hover {
    background: rgba(197, 165, 93, 0.2);
    border-color: var(--gold);
}

.mobile-lang-switcher .lang-option.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.mobile-lang-switcher .lang-flag {
    font-size: 20px;
}

.mobile-lang-switcher .lang-name {
    font-weight: 500;
}

/* ========================================
   CALENDRIER MOBILE - Pas de modification nécessaire
======================================== */

/* ========================================
   RESPONSIVE - COOKIE & LANG
======================================== */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-cookie {
        width: 100%;
    }
    
    /* Sélecteur langue VISIBLE sur mobile */
    .lang-switcher {
        display: inline-block !important; /* Force affichage */
        margin-right: 12px;
    }
    
    .lang-current {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .lang-flag {
        font-size: 16px;
    }
    
    .lang-code {
        display: none; /* Cache "FR" sur mobile, garde juste drapeau */
    }
    
    .lang-dropdown {
        right: 0;
        min-width: 140px;
    }
    
    .lang-option {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    /* Cache téléphone et bouton réserver sur mobile */
    .btn-phone,
    .header-actions .btn-primary {
        display: none;
    }
}
