/* ===== VARIABLES ===== */
:root {
    /* Couleurs */
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #cccccc;
    --cream: #f5f5f0;
    --gold: #c9a96e;
    --gold-light: #d4b88c;
    
    /* Fonts */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--light-gray);
    line-height: 1.6;
}

/* ===== CONTACT HERO ===== */
.contact-hero {
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
                url('https://images.unsplash.com/photo-1559925393-8be0ec4767c8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1471&q=80');
    background-size: cover;
    background-position: center;
    height: 50vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    display: none; /* Non utilisé dans ce layout */
}

.hero-content {
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

.hero-content p {
    font-size: 1.4rem;
    color: var(--light-gray);
    opacity: 0.9;
}

/* ===== RESERVATION SECTION ===== */
.contact-reservation {
    padding: 6rem 2rem;
    background: var(--black);
}

.reservation-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reservation-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reservation-header h2 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.reservation-header h2 i {
    font-size: 2.5rem;
}

.reservation-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== RESERVATION BENEFITS ===== */
.reservation-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: var(--dark-gray);
    border: 1px solid rgba(201, 169, 106, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: var(--cream);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card li {
    color: var(--light-gray);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.benefit-card li::before {
    content: '✓';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.benefit-card li strong {
    color: var(--gold-light);
}

/* ===== RESERVATION FORM ===== */
.reservation-form-section {
    background: var(--dark-gray);
    border: 1px solid rgba(201, 169, 106, 0.2);
    padding: 3rem;
    border-radius: 2px;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(201, 169, 106, 0.1);
}

.form-header h3 {
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.form-header p {
    color: var(--light-gray);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.reservation-form .form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(201, 169, 106, 0.1);
}

.form-section h4 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.reservation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.reservation-form .form-group {
    margin-bottom: 1.5rem;
}

.reservation-form label {
    display: block;
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.reservation-form input,
.reservation-form textarea,
.reservation-form select {
    width: 100%;
    padding: 1rem;
    background: var(--black);
    border: 1px solid var(--medium-gray);
    color: var(--light-gray);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    border-radius: 2px;
}

.reservation-form input:focus,
.reservation-form textarea:focus,
.reservation-form select:focus {
    outline: none;
    border-color: var(--gold);
}

.reservation-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox Styles */
.checkbox-large {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkbox-large input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    accent-color: var(--gold);
}

.checkbox-large label {
    flex: 1;
    margin: 0;
    cursor: pointer;
}

.checkbox-large label strong {
    display: block;
    color: var(--cream);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.checkbox-large label span {
    display: block;
    color: var(--light-gray);
    font-size: 0.9rem;
    font-weight: normal;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.checkbox input[type="checkbox"] {
    width: auto;
    accent-color: var(--gold);
}

.checkbox label {
    margin: 0;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--light-gray);
}

/* Submit Button */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: var(--black);
    border: none;
    padding: 1.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
    margin: 2rem 0 1.5rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 169, 106, 0.3);
}

.form-note {
    background: rgba(201, 169, 106, 0.05);
    border: 1px solid rgba(201, 169, 106, 0.2);
    padding: 1.5rem;
    border-radius: 2px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.form-note i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.form-note p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Success Message */
.form-success {
    display: none;
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.1), rgba(46, 213, 115, 0.05));
    border: 1px solid #2ed573;
    padding: 2rem;
    border-radius: 2px;
    margin-top: 2rem;
}

.success-icon {
    font-size: 3rem;
    color: #2ed573;
}

.success-content {
    flex: 1;
}

.success-content h4 {
    color: var(--cream);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.success-content p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-details {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.success-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.success-details strong {
    color: var(--cream);
}

.success-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
    padding: 6rem 2rem;
    background: var(--dark-gray);
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--black);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(201, 169, 106, 0.1);
    border-radius: 2px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: var(--cream);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.info-hours {
    color: var(--gold-light);
    font-size: 0.85rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 169, 106, 0.1);
    width: 100%;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
    justify-content: center;
}

.btn-phone, .btn-whatsapp {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    min-width: 120px;
    justify-content: center;
}

.btn-phone {
    background: #007bff;
    color: white;
    border: 1px solid #007bff;
}

.btn-phone:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: 1px solid #25D366;
}

.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
}

/* Info Link */
.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    transition: var(--transition);
    padding: 8px 16px;
    border: 1px solid var(--gold);
    border-radius: 2px;
}

.info-link:hover {
    color: var(--gold-light);
    background: rgba(201, 169, 106, 0.1);
    gap: 0.8rem;
}

/* ===== FAQ SECTION ===== */
.contact-faq {
    padding: 6rem 2rem;
    background: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(201, 169, 106, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.faq-item.active {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--dark-gray);
    border: none;
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(201, 169, 106, 0.05);
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--dark-gray);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

.faq-answer p,
.faq-answer ul {
    color: var(--light-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-answer ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: var(--gold-light);
}

/* ===== CTA CONTACT ===== */
.contact-cta {
    padding: 6rem 2rem;
    background: linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)),
                url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition: var(--transition);
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: rgba(201, 169, 106, 0.1);
    transform: translateY(-3px);
}

.cta-note {
    color: var(--gold-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== CACHE LA SECTION MAP ===== */
.contact-map {
    display: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .contact-hero {
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .reservation-header h2 {
        font-size: 2.5rem;
    }
    
    .reservation-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 40vh;
        min-height: 350px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .contact-reservation,
    .contact-info-section,
    .contact-faq,
    .contact-cta {
        padding: 4rem 1.5rem;
    }
    
    .reservation-benefits {
        grid-template-columns: 1fr;
    }
    
    .reservation-form-section {
        padding: 2rem 1.5rem;
    }
    
    .form-section h4 {
        font-size: 1.2rem;
    }
    
    .info-container {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 35vh;
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .reservation-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .reservation-header h2 i {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-buttons {
        gap: 0.8rem;
    }
    
    .btn-phone, .btn-whatsapp {
        min-width: 100px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .form-success {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .success-icon {
        font-size: 2.5rem;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-actions .btn {
        width: 100%;
        justify-content: center;
    }
}