/* ========================================
   Styles pour la page Honoraires
   ======================================== */

/* Pricing Cards */
.pricing-section {
    margin-top: 3rem;
}

.pricing-card {
    background: #fff;
    border: 2px solid #D4E0C8;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(75, 83, 51, 0.06);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(75, 83, 51, 0.12);
    border-color: #8FBC8F;
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #F5F8F2;
    padding-bottom: 1.5rem;
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    color: #3D4529;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pricing-badge {
    display: inline-block;
    background: #7BAA7A;
    color: white;
    padding: 0.35rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Pricing Price */
.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #3D4529;
    line-height: 1;
}

/* Pricing Features */
.pricing-features {
    margin-bottom: 1.5rem;
    padding-left: 1.0rem;
}

.pricing-features li::before {
    content: '' !important;
}

.features-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #5A6640;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #333;
}

.features-list li i {
    color: #7BAA7A;
    font-size: 1.1rem;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Pricing Footer */
.pricing-footer {
    padding-top: 1.5rem;
    border-top: 2px solid #F5F8F2;
}

.pricing-note {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
    text-align: center;
    margin: 0;
}

/* Payment Section */
.payment-section {
    margin-top: 4rem;
    padding: 2rem 0;
}

.payment-subtitle {
    font-family: 'Playfair Display', serif;
    color: #3D4529;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
}

.payment-subtitle i {
    color: #7BAA7A;
    font-size: 1.5rem;
}

.payment-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.payment-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #333;
}

.payment-list li:before {
    position: absolute;
    left: 0;
    color: #7BAA7A;
    font-weight: bold;
    font-size: 1.2rem;
}

.payment-note {
    font-style: italic;
    color: #5A6640;
    font-weight: 500;
}

/* Alert for payment note */
.payment-section .alert-warning {
    background-color: #FFF8E1;
    border: 2px solid #F5C842;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #5A4A1F;
    font-size: 0.9rem;
}

.payment-section .alert-warning small {
    display: block;
    line-height: 1.5;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
}

.accordion-item {
    border: 1px solid #D4E0C8;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.accordion-button {
    background: #FAFBF9;
    color: #3D4529;
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: #F5F8F2;
    color: #3D4529;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #7BAA7A;
}

.accordion-button:hover {
    background: #F5F8F2;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237BAA7A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background: #fff;
    color: #333;
}

.benefit-card {
    background: #fff;
    border: 1px solid #D4E0C8;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5A6640 0%, #7BAA7A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(90, 102, 64, 0.15);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    color: #3D4529;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.benefit-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
}

.benefit-list li:before {
    position: absolute;
    left: 0;
    color: #7BAA7A;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Button Styling */
.button-green {
    background-color: #5A6640;
    border-color: #5A6640;
    color: white;
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.button-green:hover {
    background-color: #3D4529;
    border-color: #3D4529;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 69, 41, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .pricing-card {
        margin-bottom: 1.5rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .investment-section {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .pricing-card {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .pricing-title {
        font-size: 1.25rem;
    }

    .benefit-card {
        margin-bottom: 1.5rem;
    }

    .info-box {
        margin-bottom: 1.5rem;
    }
}
