﻿
/* ===== Header modern ===== */
header.navbar {
    width: 100%;
    background: linear-gradient(90deg,#1E3A8A,#2563EB,#3B82F6);
    color: white;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .navbar .logo-area img {
        width: 44px;
        height: 44px;
        border-radius: 8px;
        background: white;
        padding: 4px;
        box-shadow: 0 1px 5px rgba(0,0,0,0.2);
    }

.navbar .brand-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: .5px;
}

nav.nav-links {
    display: flex;
    gap: 25px;
}

    nav.nav-links a {
        color: #E0E7FF;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: color .3s ease, transform .2s ease;
    }

        nav.nav-links a:hover {
            color: #fff;
            transform: translateY(-2px);
        }

.btn-vazhdo {
    background: linear-gradient(90deg,#60A5FA,#3B82F6);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    transition: all .25s ease;
    box-shadow: 0 3px 8px rgba(59,130,246,0.4);
}

    .btn-vazhdo:hover {
        background: linear-gradient(90deg,#3B82F6,#2563EB);
        transform: translateY(-2px);
    }

.menu-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
}

@media (max-width:850px) {
    nav.nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        right: 0;
        width: 100%;
        background: linear-gradient(180deg,#1E3A8A,#2563EB);
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0,0,0,.4);
    }

        nav.nav-links a {
            display: block;
            padding: 12px 0;
        }

    .menu-toggle {
        display: block;
    }

    .nav-active {
        display: flex;
    }
}

/* ===== Layout i faqes ===== */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI',sans-serif;
    background: #f7f9fc;
}

.main-content {
    position: relative;
    background-image: url('../Images/backround.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* ⚙️ Zëvendëso këtë */
    /* min-height: 100vh; */
    /* ✅ Me këtë */
    min-height: auto;
    padding-bottom: 50px;
}
    .main-content::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 0;
        pointer-events: none; /* ✅ Lejon klikimet në përmbajtje */
    }

    .main-content > * {
        position: relative;
        z-index: 1;
    }


    

  












/* ===== Karta me flamuj mbi footer ===== */
.flag-section {
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg,#f9fbff,#f1f6ff);
    padding: 25px 10px 35px 10px;
    border-top: 1px solid #e0ebff;
}

.info-card-flags {
    text-align: center;
    max-width: 850px;
    background: #fff;
    border: 1px solid #d8e6ff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

    .info-card-flags h2 {
        font-size: 1.3rem;
        color: #0a2a80;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .info-card-flags p {
        font-size: 1rem;
        color: #334155;
        margin-bottom: 14px;
    }

.flag-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    transition: max-height .4s ease;
    max-height: 120px;
    overflow: hidden;
}

    .flag-row.expanded {
        max-height: 400px;
    }

.flag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #d7e6ff;
    border-radius: 999px;
    padding: 6px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    font-size: .9rem;
    color: #10337f;
    transition: transform .2s ease;
}

    .flag-pill:hover {
        transform: translateY(-2px);
    }

    .flag-pill img {
        width: 28px;
        height: 20px;
        border-radius: 3px;
    }

.flag-text {
    font-weight: 600;
}

.show-more-btn {
    margin-top: 12px;
    background: linear-gradient(90deg,#2563eb,#3b82f6);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(59,130,246,.3);
    transition: all .25s ease;
}

    .show-more-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(59,130,246,.4);
    }

/* ===== Banner i hollë informues poshtë headerit ===== */
.top-banner {
    position: absolute;
    top: 64px; /* fiks poshtë headerit, pa prekur VIN */
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    color: #fff;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 10px;
    letter-spacing: 0.3px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
}

    .top-banner i {
        color: #fff;
        font-size: 1.2rem;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivitet */
@media (max-width: 600px) {
    .top-banner {
        font-size: 0.9rem;
        padding: 6px 8px;
    }

        .top-banner i {
            font-size: 1rem;
        }
}




/* ===== Banner për mënyrat e pagesës ===== */
.payment-banner {
    position: absolute;
    top: 104px; /* menjëherë poshtë bannerit të parë */
    left: 0;
    width: 100%;
    background: #f8fafc;
    color: #1e3a8a;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 10px;
    letter-spacing: 0.2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.08);
    z-index: 998;
    animation: fadeIn 0.5s ease-in-out;
}

.payment-text {
    font-size: 0.95rem;
    color: #0f2167;
}

.payment-logos {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

    .payment-logos img {
        height: 28px;
        filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
        transition: transform 0.3s ease;
    }

        .payment-logos img:hover {
            transform: scale(1.07);
        }

/* Responsivitet për mobile */
@media (max-width: 600px) {
    .payment-banner {
        padding: 6px;
        gap: 4px;
    }

    .payment-text {
        font-size: 0.85rem;
    }

    .payment-logos img {
        height: 22px;
    }
}

/* ===== NAVBAR MODERN ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #1E3A8A, #2563EB);
    color: #fff;
    padding: 12px 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .logo-area img {
        width: 42px;
        height: 42px;
    }

.brand-title {
    font-size: 20px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    transition: all 0.3s ease-in-out;
}

    .nav-links a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: #FFDC64;
        }

.btn-vazhdo {
    background: #FFDC64;
    color: #1E3A8A;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

    .btn-vazhdo:hover {
        background: #fff;
    }

/* ===== Dropdown ===== */
.dropdown {
    position: relative;
}

.dropdown-btn {
    background: none;
    border: none;
    color: white;
    font-weight: 500;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #fff;
    top: 40px;
    left: 0;
    min-width: 180px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
    z-index: 10;
}

    .dropdown-content a {
        color: #1E3A8A;
        padding: 10px 15px;
        display: block;
        text-decoration: none;
        transition: background 0.2s;
    }

        .dropdown-content a:hover {
            background: #EEF3FF;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

/* ===== Toggle për telefona ===== */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 22px;
}

@media (max-width: 960px) {
    .menu-toggle {
        display: block;
        color: #fff;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        background: #1E3A8A;
        flex-direction: column;
        align-items: flex-start;
        width: 220px;
        height: 100vh;
        padding: 30px;
        gap: 20px;
        transition: right 0.3s ease-in-out;
    }

        .nav-links.nav-active {
            right: 0;
        }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background: none;
    }

        .dropdown-content a {
            color: #fff;
            padding-left: 10px;
        }

            .dropdown-content a:hover {
                background: rgba(255,255,255,0.1);
            }
}

/* ===== BANER RAPORT FALAS – PËRMBYTJET ===== */
.vmx-flood-banner {
    background: linear-gradient(135deg, #0c1629 0%, #102542 100%);
    color: #e8f1ff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.vmx-flood-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 600px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out;
}

/* Logo */
.vmx-flood-logo {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 200, 255, 0.4);
}

/* Spinner */
.vmx-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top: 4px solid #00c6ff;
    border-radius: 50%;
    margin: 10px auto 25px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Titull dhe përshkrim */
.vmx-flood-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.vmx-flood-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #dce7f8;
}

/* Lista */
.vmx-flood-points {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
    display: grid;
    gap: 8px;
}

    .vmx-flood-points li {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        padding: 10px 14px;
        font-size: 0.95rem;
    }

/* Shënim fundor */
.vmx-note {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
    color: #bcd3f1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivitet */
@media (max-width: 600px) {
    .vmx-flood-card {
        padding: 30px 20px;
    }

        .vmx-flood-card h2 {
            font-size: 1.5rem;
        }

        .vmx-flood-card p {
            font-size: 0.95rem;
        }
}
.loading-subtext {
    margin-top: 8px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    max-width: 360px;
    line-height: 1.5;
    background: linear-gradient(90deg, #007bff, #00a8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeGlow 2s ease-in-out infinite alternate;
    letter-spacing: 0.3px;
}

/* Efekt animacioni i butë dhe ndriçues */
@keyframes fadeGlow {
    0% {
        opacity: 0.6;
        text-shadow: 0 0 3px rgba(0, 123, 255, 0.3);
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 8px rgba(0, 168, 255, 0.6);
    }
}



/* ===== Seksioni i kartës KM Check ===== */
.km-card-section {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 0 20px;
}

.km-card {
    position: relative;
    background: linear-gradient(145deg, #0b2f4f 0%, #0f4c81 100%);
    color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    max-width: 850px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Ndriçim i lehtë animuar brenda kartës */
.km-card-glow {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
    animation: move-glow 8s linear infinite;
}

@keyframes move-glow {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(80px, 80px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* Efekt hover elegant */
.km-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 15px 50px rgba(15, 76, 129, 0.6);
}

/* Header me ikonë + titull */
.km-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.km-card-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.4));
}

.km-card-header h2 {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Teksti brenda kartës */
.km-card-body {
    position: relative;
    z-index: 2;
}

    .km-card-body p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 12px;
        opacity: 0.95;
    }

/* Responsive dizajn */
@media (max-width: 768px) {
    .km-card {
        padding: 20px;
    }

    .km-card-header h2 {
        font-size: 1.15rem;
    }

    .km-card-body p {
        font-size: 0.95rem;
    }
}
