/* Tarifs Page - Styles supplémentaires */

/* Pricing Intro */
.pricing-intro {
    background: white;
    padding: 60px 0;
}

.intro-content {
    text-align: center;
    margin-bottom: 50px;
}

.intro-content h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 15px;
}

.intro-content p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-feature {
    display: flex;
    gap: 20px;
    align-items: start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-light);
    font-size: 14px;
}

/* Pricing Cards */
.pricing-cards {
    background: var(--bg-color);
    padding: 80px 0;
}

.pricing-cards > .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    border: 3px solid var(--secondary-color);
    position: relative;
}

.pricing-card.featured::before {
    content: "PLUS POPULAIRE";
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 30px 25px;
    text-align: center;
}

.card-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card-description {
    font-size: 14px;
    opacity: 0.95;
}

.card-pricing {
    padding: 30px 25px;
    background: #f8f9fa;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-option {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.price-option:hover {
    border-color: var(--primary-color);
    background: #f0f8ff;
}

.price-option.popular {
    border-color: var(--secondary-color);
    border-width: 3px;
    background: #fff8f0;
}

.duration {
    font-weight: 600;
    color: var(--primary-color);
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.price span {
    font-size: 14px;
    font-weight: normal;
    color: var(--text-light);
}

.save {
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 600;
    text-align: right;
}

.card-features {
    list-style: none;
    padding: 30px 25px;
    flex-grow: 1;
}

.card-features li {
    padding: 10px 0;
    color: var(--text-color);
    border-bottom: 1px solid #f0f0f0;
}

.card-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    margin: 0 25px 30px;
}

/* Pack Offer */
.pack-offer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pack-offer::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
	pointer-events: none;
}

.pack-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.pack-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 20px;
}

.pack-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.pack-description {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 50px;
}

.pack-pricing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.pack-option {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 25px 20px;
    transition: all 0.3s;
    position: relative;
}

.pack-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.pack-option.highlighted {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary-color);
    border-width: 3px;
}
.pack-duration {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.pack-price {
    margin-bottom: 10px;
}

.old-price {
    display: block;
    text-decoration: line-through;
    font-size: 16px;
    opacity: 0.7;
    margin-bottom: 5px;
}

.new-price {
    display: block;
    font-size: 32px;
    font-weight: bold;
}

.new-price .period {
    font-size: 14px;
    font-weight: normal;
    opacity: 0.9;
}

.pack-save {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* FAQ Pricing */
.faq-pricing {
    background: white;
    padding: 80px 0;
}

.faq-pricing h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1200px) {
    .pricing-cards > .container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pack-pricing {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-features {
        grid-template-columns: 1fr;
    }
    
    .pack-content h2 {
        font-size: 28px;
    }
    
    .pack-description {
        font-size: 16px;
    }
    
    .pack-pricing {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
