/* Payment Page Specific Styles */

.payment-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.payment-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.payment-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
}

/* Account Holder Card */
.account-holder-card {
    background: linear-gradient(135deg, #1673FD 0%, #4A9FFF 100%);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(22, 115, 253, 0.3);
    animation: slideInDown 0.6s ease-out;
}

.holder-icon {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-circle-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.holder-info {
    flex: 1;
}

.holder-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.holder-name {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Payment Cards */
.payment-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    animation: fadeInUp 0.6s ease-out;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.payment-card-header {
    background: linear-gradient(135deg, #1673FD 0%, #4A9FFF 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-card-header i {
    font-size: 2rem;
}

.payment-card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.payment-card-body {
    padding: 2rem;
}

/* QR Code Card */
.qr-container {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.qr-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    max-height: 400px;
}

.payment-instructions {
    background: #f9fafb;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.payment-instructions p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-note {
    background: #eff6ff;
    border-left: 4px solid #1673FD;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e40af;
    font-size: 0.9rem;
}

/* Bank Card */
.bank-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bank-logo {
    text-align: center;
    font-size: 4rem;
    color: #1673FD;
    margin-bottom: 1rem;
}

.bank-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bank-info-item label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bank-value {
    background: #f9fafb;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.copyable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.copyable:hover {
    background: #eff6ff;
    border-left: 4px solid #1673FD;
}

.btn-copy {
    background: #1673FD;
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-copy:hover {
    background: #4A9FFF;
    transform: scale(1.05);
}

/* Gateway Card */
.gateway-card {
    animation: fadeInUp 0.8s ease-out;
}

.gateway-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.gateway-info {
    flex: 1;
}

.gateway-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gateway-icons i {
    font-size: 2.5rem;
    color: #1673FD;
}

.gateway-description {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 1rem;
}

.gateway-fee-note {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #92400e;
    font-size: 0.95rem;
    font-weight: 500;
}

.gateway-action {
    text-align: center;
}

.btn-gateway {
    background: linear-gradient(135deg, #ff6b35 0%, #f59e0b 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.btn-gateway:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    color: white;
}

.secure-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.secure-text i {
    color: #10b981;
}

/* Payment Instructions Box */
.payment-instructions-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.payment-instructions-box h4 {
    color: #1673FD;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.payment-instructions-box ol {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.payment-instructions-box ol li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.6;
}

.whatsapp-support {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f3f4f6;
}

.btn-whatsapp-support {
    background: #25D366;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-whatsapp-support:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Copy Success Animation */
@keyframes copySuccess {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.copy-success {
    animation: copySuccess 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .gateway-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gateway-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .payment-title {
        font-size: 1.8rem;
    }
    
    .holder-name {
        font-size: 1.5rem;
    }
    
    .account-holder-card {
        padding: 1.5rem;
    }
    
    .holder-icon {
        font-size: 3rem;
    }
    
    .profile-circle-image {
        width: 100px;
        height: 100px;
    }
    
    .payment-card-header h3 {
        font-size: 1.2rem;
    }
    
    .btn-gateway,
    .btn-whatsapp-support {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .payment-section {
        padding: 2rem 0;
    }
    
    .account-holder-card {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-circle-image {
        width: 80px;
        height: 80px;
    }
    
    .payment-card-body {
        padding: 1.5rem;
    }
    
    .bank-value {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
}