/* ===== PAIEMENT - TOUS LES STYLES ===== */

/* --- Grille de prix --- */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.pricing-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

.pricing-card .price::after {
    content: " TTC";
    font-size: 0.8rem;
    color: #aaa;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.pricing-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ddd;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* --- Formulaire CB --- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

#payment-form form {
    max-width: 500px;
    margin: 0 auto;
}

/* ===== NOUVELLE SECTION WHATSAPP + VERIFICATION ===== */
.whatsapp-section {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #25D366;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.whatsapp-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(37, 211, 102, 0.03) 0%, transparent 70%);
    animation: pulse-whatsapp 4s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.whatsapp-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.whatsapp-header h3 {
    color: #25D366;
    font-size: 1.6rem;
    font-weight: bold;
}

.whatsapp-desc {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.whatsapp-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.step-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: 0.3s;
    align-items: flex-start;
}

.step-card:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.05);
}

.step-number {
    background: #25D366;
    color: #000;
    font-weight: bold;
    font-size: 1.3rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: #25D366;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step-content p {
    color: #bbb;
    font-size: 0.92rem;
    margin-bottom: 15px;
}

/* Bouton WhatsApp */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #000;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp.highlight {
    animation: glow-btn 1.5s ease-in-out infinite;
}

@keyframes glow-btn {
    0%, 100% { box-shadow: 0 0 10px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 0 30px rgba(37, 211, 102, 0.6); }
}

/* Upload */
.or-divider {
    display: block;
    text-align: center;
    color: #888;
    margin: 15px 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.upload-fake {
    text-align: center;
}

.upload-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px dashed #ffd700;
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    color: #ffd700;
    font-size: 0.9rem;
}

.upload-label:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #fff;
    color: #fff;
}

.upload-status {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
}

.upload-status.success {
    color: #25D366;
}

/* Flèche de transition */
.step-arrow {
    text-align: center;
    padding: 5px 0;
    position: relative;
}

.timer-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid #ffd700;
    color: #ffd700;
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-top: 5px;
    font-weight: bold;
}

/* Countdown */
.countdown-container {
    text-align: center;
    margin: 15px 0;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span:first-child {
    font-size: 2.8rem;
    font-weight: bold;
    color: #25D366;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
    min-width: 70px;
    text-align: center;
}

.countdown-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.countdown-sep {
    font-size: 2.5rem;
    color: #25D366;
    font-weight: bold;
    margin-bottom: 20px;
}

.countdown-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid #ffd700;
    color: #ffd700;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* Status de vérification */
.verification-status {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.pending {
    background: #ff9800;
    animation: blink 1s infinite;
}

.status-dot.verifying {
    background: #2196F3;
    animation: blink 0.5s infinite;
}

.status-dot.verified {
    background: #25D366;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.status-text.verifying {
    color: #2196F3;
}

#status-text {
    color: #ff9800;
    font-weight: bold;
}

/* Payment lock/unlock */
.payment-lock, .payment-unlock {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
}

.payment-lock {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
}

.payment-unlock {
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.3);
    flex-direction: column;
    gap: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .whatsapp-section {
        padding: 20px;
    }
    .step-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .countdown-item span:first-child {
        font-size: 2rem;
        min-width: 50px;
    }
    .countdown-sep {
        font-size: 1.8rem;
    }
    .pricing-card.featured {
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}