/* ===== SECTION 008: PAYMENT ===== */
.payment-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    margin: 0 auto; /* Center the container */
    padding: 40px 20px; /* Add padding for spacing */
}

.payment-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.payment-title i {
    color: #1877F2;
    margin-right: 10px;
}

.payment-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.payment-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.payment-card-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-card-title i {
    color: #1877F2;
    font-size: 1.8rem;
}

.payment-card-content {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.payment-qr-container {
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: inline-block;
}

.payment-qr-image {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-button {
    background: linear-gradient(135deg, #1877F2, #0d5fbf);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.payment-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.payment-button:active {
    transform: translateY(0);
}

.payment-instruction {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.payment-instruction:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.payment-instruction-image {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
}

.payment-instruction-qr {
    width: 180px;
    height: 320px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.payment-instruction-content {
    flex: 2;
    min-width: 300px;
    text-align: left;
}

.payment-instruction-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-instruction-title i {
    color: #1877F2;
    font-size: 1.8rem;
}

.payment-instruction-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.payment-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.payment-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.payment-whatsapp:active {
    transform: translateY(0);
}

.phone-number-container {
    margin-top: 40px;
    text-align: center;
}

.phone-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1877F2;
    text-shadow: 0 2px 10px rgba(24, 119, 242, 0.3);
    animation: pulse-008 2s infinite;
    display: inline-block;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.phone-number i {
    margin-right: 15px;
    color: #25D366;
}

@keyframes pulse-008 {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(24, 119, 242, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-container {
        padding: 30px 15px;
    }
    
    .payment-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .payment-card {
        max-width: 100%;
        padding: 25px;
    }
    
    .payment-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .payment-instruction {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        margin-top: 30px;
    }
    
    .payment-instruction-content {
        text-align: center;
    }
    
    .phone-number {
        font-size: 1.8rem;
        padding: 12px 20px;
    }
    
    .payment-qr-image {
        width: 180px;
        height: 180px;
    }
    
    .payment-instruction-qr {
        width: 160px;
        height: 285px;
    }
}

@media (max-width: 480px) {
    .payment-container {
        padding: 20px 10px;
    }
    
    .phone-number {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    
    .payment-instruction-qr {
        width: 140px;
        height: 250px;
    }
    
    .payment-card {
        padding: 20px;
    }
    
    .payment-title {
        font-size: 1.8rem;
    }
    
    .payment-card-title {
        font-size: 1.3rem;
    }
    
    .payment-instruction {
        padding: 20px;
    }
    
    .payment-instruction-title {
        font-size: 1.3rem;
    }
    
    .payment-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .payment-whatsapp {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .payment-qr-image {
        width: 160px;
        height: 160px;
    }
}