/* Force tous les titres à utiliser The Seasons */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-seasons) !important;
}


/* CSS Consultation - Nouvelle version */

/* Hero Section */
.hero-consultation {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
}

/* Image en arrière-plan */
.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Image HTML en arrière-plan */
.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    min-width: 100vw;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover; /* Assure que l'image couvre tout l'espace */
}

/* Fallback si l'image ne charge pas */
.image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red) 0%, #8B0000 100%);
    z-index: 0;
    display: block;
}

.hero-consultation .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 4;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: rgba(220, 38, 38, 0.2);
    padding: 15px 25px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Section Détails */
.consultation-details {
    padding: 80px 0;
    background: var(--white);
}

.details-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.detail-card {
    background: var(--white);
    border: 3px solid var(--light-gray);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.detail-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
}

.detail-card:nth-child(1) {
    border-color: var(--primary-red);
}

.detail-card:nth-child(2) {
    border-color: var(--black);
}

.detail-card:nth-child(3) {
    border-color: var(--primary-red);
}

.detail-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.detail-card:nth-child(1) .detail-icon {
    background: var(--primary-red);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.detail-card:nth-child(2) .detail-icon {
    background: var(--black);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.detail-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
}

.detail-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
    line-height: 1.4;
}

.detail-note {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: italic;
}

/* Section Process */
.reservation-process {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #F0F0F0 100%);
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.step {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
}

.step:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 20px;
}

.step-content {
    text-align: center;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.3;
}

.step-subtitle {
    font-size: 1rem;
    color: var(--medium-gray);
    font-style: italic;
}

.process-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    min-width: 220px;
    transition: var(--transition);
}

/* Section Pourquoi nous choisir */
.why-choose {
    padding: 80px 0;
    background: var(--white);
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}

.advantage-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--white);
}

.advantage-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Section Booking */
.booking-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--black) 0%, #2C2C2C 100%);
    color: var(--white);
}

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

.booking-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

.booking-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.booking-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.consultation-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
}

.price-duration {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.booking-features {
    margin-bottom: 40px;
}

.booking-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.booking-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.booking-features i {
    color: #4CAF50;
    font-size: 1.1rem;
    min-width: 20px;
}

.booking-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    margin-bottom: 20px;
}

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

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--black);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.booking-form select {
    color: var(--white);
}

.booking-form select option {
    background: var(--black);
    color: var(--white);
}

.booking-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-booking {
    width: 100%;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    background: var(--gradient-dark);
    color: var(--white);
    border: 2px solid var(--black);
    transition: var(--transition);
}

.btn-booking:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-consultation {
        min-height: 80vh;
        padding: 100px 15px 60px;
    }
    
    .hero-image {
        width: 120vw;
        height: 120vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .intro-text {
        font-size: 1.2rem;
    }
    
    .highlight-text {
        font-size: 1.3rem;
        padding: 12px 20px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .detail-card {
        padding: 30px 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .process-actions .btn-primary,
    .process-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .booking-title {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-consultation {
        padding: 80px 10px 50px;
        min-height: 70vh;
    }
    
    .hero-image {
        width: 130vw;
        height: 130vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .highlight-text {
        font-size: 1.2rem;
        padding: 10px 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .booking-title {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .btn-large {
        min-width: auto;
        width: 100%;
    }
}

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

.detail-card,
.step,
.advantage-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.detail-card:nth-child(1) { animation-delay: 0.1s; }
.detail-card:nth-child(2) { animation-delay: 0.2s; }
.detail-card:nth-child(3) { animation-delay: 0.3s; }

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }

.advantage-card:nth-child(1) { animation-delay: 0.1s; }
.advantage-card:nth-child(2) { animation-delay: 0.2s; }
.advantage-card:nth-child(3) { animation-delay: 0.3s; }