﻿/* ===== Struktura ===== */
.payment-section {
    background: #f5f6fa;
    color: #1e293b;
    min-height: calc(100vh - 120px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 20px;
}

.payment-container {
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.payment-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e3a8a;
}

.payment-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #334155; /* Blu-gri profesional */
    margin-bottom: 45px;
    letter-spacing: 0.3px;
    position: relative;
    font-weight: 500;
    line-height: 1.6;
}

    .payment-subtitle::after {
        content: "";
        display: block;
        width: 70px;
        height: 3px;
        background: linear-gradient(90deg, #004aad, #007bff);
        border-radius: 3px;
        margin: 10px auto 0 auto;
        opacity: 0.8;
    }

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* ===== Klienti ===== */
.client-info {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e2e8f0;
}

    .client-info h2 {
        font-size: 1.2rem;
        color: #1e3a8a;
        margin-bottom: 20px;
    }

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

    .input-group label {
        margin-bottom: 6px;
        font-weight: 600;
        color: #334155;
    }

    .input-group input,
    .input-group select {
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        padding: 12px;
        font-size: 1rem;
        outline: none;
        transition: 0.3s;
    }

        .input-group input:focus,
        .input-group select:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
        }

/* ===== Metodat ===== */
.payment-methods {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e2e8f0;
}

    .payment-methods h2 {
        font-size: 1.2rem;
        color: #1e3a8a;
        margin-bottom: 20px;
        text-align: center;
    }

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
}

.method-card {
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 20px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

    .method-card img {
        width: 55px;
        height: auto;
        object-fit: contain;
        margin-bottom: 8px;
    }

    .method-card span {
        color: #1e293b;
        font-size: 0.95rem;
        font-weight: 600;
    }

    .method-card:hover {
        border-color: #2563eb;
        transform: translateY(-3px);
    }

    /* Kur zgjidhet */
    .method-card.selected {
        border-color: #2563eb;
        background: #e0ecff;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
        transform: scale(1.02);
    }

/* ===== Butoni poshtë ===== */
.bottom-btn {
    text-align: center;
    margin-top: 40px;
}

.btn-submit {
    width: 280px;
    background-color: #2563eb;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-submit:hover {
        background-color: #1d4ed8;
        transform: scale(1.03);
    }

/* ===== Responsive ===== */
@media (max-width: 850px) {
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .payment-container {
        padding: 25px;
    }

    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-submit {
        width: 100%;
    }
}
