/*
Designer Erando Ciko
https://erinformatique.com
Styles spécifiques page TARIFS uniquement
*/

@charset "utf-8";

/* ===== STYLES SPÉCIFIQUES TARIFS ===== */

/* Container des 3 colonnes de tarifs */
.tarifs-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Style de chaque colonne - Effet Glass Morphism */
.tarif-column {
    background: linear-gradient(135deg, rgba(255, 94, 0, 0.1) 0%, rgba(0, 178, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Effet de brillance animé au survol */
.tarif-column::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.tarif-column:hover::before {
    left: 100%;
}

/* Mise en valeur de la colonne du milieu */
.tarif-column:nth-child(2) {
    transform: scale(1.03);
    background: linear-gradient(135deg, rgba(255, 94, 0, 0.15) 0%, rgba(0, 178, 255, 0.15) 100%);
    border: 2px solid rgba(255, 94, 0, 0.4);
    box-shadow: 0 12px 40px rgba(255, 94, 0, 0.3);
}

/* Badge "POPULAIRE" pour la colonne du milieu */
.tarif-column:nth-child(2)::after {
    content: 'POPULAIRE';
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #FF5E00, #FF8C00);
    color: white;
    padding: 4px 35px;
    font-size: 0.65rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(255, 94, 0, 0.5);
    letter-spacing: 1px;
}

/* Hover effect pour toutes les colonnes */
.tarif-column:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: rgba(0, 178, 255, 0.6);
    box-shadow: 0 15px 50px rgba(0, 178, 255, 0.4);
}

.tarif-column:nth-child(2):hover {
    transform: translateY(-10px) scale(1.04);
}

/* Titre du pack avec effet dégradé */
.tarif-column h4 {
    background: linear-gradient(135deg, #FF5E00, #00B2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

/* Prix avec animation pulse */
.tarif-column .price {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #00B2FF, #00D9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin: 15px 0;
    font-family: 'Orbitron', sans-serif;
    animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

/* Description du pack */
.pack-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-weight: 500;
    font-style: italic;
}

/* Liste des features avec style moderne */
.pack-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 20px;
}

.pack-features li {
    padding: 10px 10px 10px 28px;
    margin-bottom: 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid #00B2FF;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.pack-features li:hover {
    background: rgba(0, 178, 255, 0.1);
    transform: translateX(3px);
    border-left-color: #FF5E00;
}

/* Icône checkmark personnalisée */
.pack-features li::before {
    content: "✓";
    position: absolute;
    left: 8px;
    color: #00B2FF;
    font-weight: bold;
    font-size: 1rem;
}

/* ===== SECTION SUPPORT (si utilisée) ===== */

/* Support Grid - 4 catégories */
.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px auto;
    max-width: 900px;
}

.support-category {
    background: linear-gradient(135deg, rgba(255, 94, 0, 0.05) 0%, rgba(0, 178, 255, 0.05) 100%);
    border: 1px solid rgba(255, 94, 0, 0.2);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.support-category:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 178, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 178, 255, 0.3);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(255, 94, 0, 0.4));
}

.support-category h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #FF5E00;
    margin-bottom: 10px;
    font-weight: 700;
}

.support-category p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* Section Tarifs Support Moderne */
.support-pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 50px auto 0;
}

.pricing-box {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 94, 0, 0.3);
    border-radius: 15px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-box.highlighted {
    border-color: rgba(255, 94, 0, 0.6);
    box-shadow: 0 10px 40px rgba(255, 94, 0, 0.2);
    transform: scale(1.05);
}

.pricing-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 178, 255, 0.3);
}

.pricing-box.highlighted:hover {
    transform: translateY(-5px) scale(1.05);
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF5E00, #FF8C00);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-weight: 500;
}

.pricing-value {
    font-size: 3rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    background: linear-gradient(135deg, #00B2FF, #00D9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.pricing-value span {
    font-size: 1.2rem;
    opacity: 0.7;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features span {
    font-size: 0.9rem;
    opacity: 0.8;
    padding: 8px;
    background: rgba(0, 178, 255, 0.05);
    border-radius: 5px;
}

/* ===== RESPONSIVE SPÉCIFIQUE TARIFS ===== */
@media (max-width: 768px) {
    /* Tarifs responsive pour mobile */
    .tarifs-container {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }
    
    .tarif-column:nth-child(2) {
        transform: scale(1);
    }
    
    .tarif-column .price {
        font-size: 2.2rem;
    }
    
    .tarif-column:nth-child(2)::after {
        font-size: 0.6rem;
        padding: 3px 30px;
    }

    /* Support Grid responsive */
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .support-pricing {
        grid-template-columns: 1fr;
    }
    
    .pricing-box.highlighted {
        transform: scale(1);
    }
}