/**
 * STYLES SPÉCIFIQUES - PAGE TARIFS (tarifs.php)
 * Jagg.Site - Grille tarifaire
 */

/* ===================================
   HERO SECTION
   =================================== */
.hero-tarifs {
    padding: 60px 0;
}

.hero-tarifs .highlight-orange {
    color: #e9840a;
    font-weight: 600;
}

.hero-tarifs .highlight-green {
    color: #326108;
    font-weight: 600;
}

/* ===================================
   SECTION TITRES
   =================================== */
.tarifs-subtitle {
    color: #838385;
}

.services-title h2 {
    color: #0d5a73;
}

.services-title p {
    color: #1d1d1d;
}

.included-title {
    color: #0d5a73;
    margin-bottom: 30px;
}

/* ===================================
   GRILLE FORMULES
   =================================== */
.tarifs-grid {
    align-items: stretch;
}

/* ===================================
   CARTES PRICING
   =================================== */
.card.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.8);
}

.card.pricing-card-featured {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(110, 110, 110, 0.7);
    border: 3px solid #0d5a73;
    box-shadow: 0 8px 30px rgba(13, 90, 115, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e9840a;
    color: white;
    padding: 5px 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.card.pricing-card h3,
.card.pricing-card-featured h3 {
    color: #0d5a73;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e9840a;
    margin: 15px 0;
}

.pricing-amount-white {
    color: #ffffff;
}

.pricing-description {
    color: #0d5a73;
    margin-bottom: 25px;
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #838385;
    font-size: 1.15rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Features liste blanche pour carte featured */
.pricing-features-white li {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
}

.pricing-features-white li:last-child {
    border-bottom: none;
}

/* Feature spéciale verte */
.pricing-feature-highlight {
    color: #326108 !important;
    font-weight: 700 !important;
}

.card.pricing-card .btn,
.card.pricing-card-featured .btn {
    margin-top: auto;
    width: 100%;
}

/* ===================================
   CARTES SERVICES
   =================================== */
.card.service-card {
    background: rgba(110, 110, 110, 0.7);
}

.card.service-card-light {
    background: rgba(255, 255, 255, 0.8);
}

.card.service-card h3,
.card.service-card-light h3 {
    color: #0d5a73;
}

.card.service-card p {
    color: #ffffff;
    text-align: justify;
    hyphens: none;
}

.card.service-card-light p {
    color: #1d1d1d;
    text-align: justify;
    hyphens: none;
}

/* ===================================
   SECTION INCLUS
   =================================== */
.included-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    color: #e9840a;
    margin-bottom: 15px;
    font-size: clamp(1.6rem, 2vw, 1.6rem);
}

.included-list li:last-child {
    margin-bottom: 0;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    .card.pricing-card h3,
    .card.pricing-card-featured h3 {
        font-size: 1.5rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .pricing-features li {
        font-size: 1.05rem;
    }

    .included-list li {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
}
