/* Styles de la section Tarifs pour EcoPro Nettoyage */

.pricing {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.pricing-card {
    background-color: var(--light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--secondary);
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

.pricing-header {
    padding: 32px;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.pricing-card.featured .pricing-header {
    background-color: var(--secondary);
    color: var(--dark);
}

.pricing-title {
    font-size: 24px;
    color: inherit;
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 20px;
    font-weight: 400;
}

.pricing-amount {
    font-size: 48px;
    font-weight: 700;
}

.pricing-period {
    font-size: 16px;
    opacity: 0.8;
}

.pricing-features {
    padding: 32px;
    background-color: var(--white);
    flex-grow: 1;
}

.pricing-features-list {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: var(--text);
}

.pricing-feature.disabled {
    color: var(--text-light);
    text-decoration: line-through;
}

.pricing-feature i {
    margin-right: 12px;
    font-size: 16px;
}

.pricing-feature-check {
    color: var(--success);
}

.pricing-feature-times {
    color: var(--danger);
}

.pricing-cta {
    text-align: center;
    padding: 0 32px 32px;
    background-color: var(--white);
}