/* Styles pour la section de réservation Calendly */
.booking-section {
    margin-top: 50px;
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #ffd700, var(--gold));
    border-radius: 20px 20px 0 0;
}

.booking-section h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.booking-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.booking-section p {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.calendly-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.calendly-inline-widget {
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    background: #fff;
}

/* Loading state pour le widget Calendly */
.calendly-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin: 20px 0;
}

.calendly-loading::before {
    content: '⏳ Chargement du calendrier...';
    color: var(--gold);
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Responsive pour le widget Calendly */
@media (max-width: 768px) {
    .booking-section {
        padding: 40px 15px;
        margin-top: 40px;
        border-radius: 15px;
    }
    
    .booking-section h3 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .booking-section p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .calendly-container {
        padding: 10px;
    }
    
    .calendly-inline-widget {
        height: 600px !important;
        min-width: 300px !important;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .booking-section {
        padding: 30px 10px;
        margin-top: 30px;
    }
    
    .booking-section h3 {
        font-size: 1.4rem;
    }
    
    .booking-section p {
        font-size: 1rem;
    }
    
    .calendly-inline-widget {
        height: 500px !important;
        min-width: 280px !important;
    }
}

/* Animation d'apparition */
.booking-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

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