﻿.vin-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e6eef8;
    margin-bottom: 25px;
}

    .vin-title span {
        color: #3b82f6;
    }

/* ✅ Kjo pjesë e vendos inputin dhe butonin në një rresht */
.vin-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* hapësira mes inputit dhe butonit */
    flex-wrap: wrap; /* që të mos prishet në mobile */
    margin: 0 auto 20px;
    max-width: 600px;
    width: 100%;
}

    .vin-bar input {
        flex: 1;
        min-width: 300px;
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.15);
        background: rgba(255,255,255,0.05);
        color: #fff;
        outline: none;
    }

        .vin-bar input::placeholder {
            color: rgba(255,255,255,0.5);
        }

    .vin-bar button {
        padding: 12px 22px;
        background: linear-gradient(90deg, #3b82f6, #60a5fa);
        border: none;
        border-radius: 8px;
        color: #fff;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease;
    }

        .vin-bar button:hover {
            background: linear-gradient(90deg, #2563eb, #3b82f6);
        }

/* pjesa e poshtme e linkut dhe butonit */
.vin-actions {
    text-align: center;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

    .vin-actions button {
        background: transparent;
        border: 1px solid rgba(255,255,255,0.2);
        color: #fff;
        border-radius: 8px;
        padding: 8px 14px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

        .vin-actions button:hover {
            background: rgba(255,255,255,0.1);
        }

    .vin-actions a {
        color: #60a5fa;
        text-decoration: none;
        font-weight: 500;
    }

        .vin-actions a:hover {
            text-decoration: underline;
        }





/* Popup background */
.vm-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Popup box */
.vm-popup-content {
    position: relative;
    background: linear-gradient(135deg, rgba(15,30,70,0.95), rgba(25,55,125,0.95));
    border-radius: 25px;
    padding: 30px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 0 35px rgba(255,255,255,0.2);
    color: white;
    text-align: center;
    animation: popUp 0.6s ease forwards;
}

@keyframes popUp {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Close button */
.vm-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
    color: white;
    transition: 0.3s;
}

    .vm-close:hover {
        color: #FFD700;
    }

/* ===== Card content inside ===== */
.vm-card {
    text-align: center;
    color: white;
}

.vm-title {
    font-size: 1.9rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.vm-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 25px;
}

.highlight {
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255,215,0,0.6);
}

.vm-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

    .vm-preview img {
        width: 230px;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(255,255,255,0.25);
    }

.vm-phone {
    background: rgba(255,255,255,0.08);
    border-radius: 25px;
    padding: 15px;
    width: 180px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-screen {
    background: white;
    color: #1E3A8A;
    border-radius: 15px;
    padding: 12px;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
}

.vm-btn {
    background: linear-gradient(90deg, #FFD700, #FFFACD);
    color: #1E3A8A;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 25px rgba(255,215,0,0.5);
}

    .vm-btn:hover {
        background: white;
        transform: scale(1.07);
    }


.faq-section {
    max-width: 800px;
    margin: 60px auto;
    font-family: 'Poppins', sans-serif;
    color: #1E3A8A;
    padding: 0 20px;
}

    .faq-section h2 {
        text-align: center;
        margin-bottom: 30px;
        font-size: 1.8rem;
        color: whitesmoke;
    }

.faq-item {
    border-bottom: 1px solid #dbe2f0;
    margin-bottom: 10px;
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 0;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
}

    .faq-btn:hover {
        color: #2563EB;
    }

.faq-content {
    display: none;
    padding: 0 5px 15px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
    animation: fadeIn 0.4s ease;
}

    .faq-content ul {
        margin: 10px 0 0 20px;
        padding: 0;
    }

.arrow {
    width: 10px;
    height: 10px;
    border-left: 2px solid #1E3A8A;
    border-bottom: 2px solid #1E3A8A;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

/* Animacion për shfaqje */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

/* Kur hapet */
.faq-item.active .faq-content {
    display: block;
}

.faq-item.active .arrow {
    transform: rotate(135deg);
}


.vin-popup-small {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
    padding: 10px;
}

.vin-popup-box {
    background: #fff;
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
    width: 90%;
    max-width: 420px;
    border-top: 4px solid #1E3A8A;
    font-size: 0.95rem;
    color: #222;
    animation: slideUp 0.3s ease-out;
}

    .vin-popup-box h3 {
        color: #1E3A8A;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .vin-popup-box p {
        line-height: 1.5;
        margin-bottom: 8px;
    }

.vin-locate-title {
    font-weight: bold;
    margin-top: 10px;
}

.vin-locations {
    margin: 0 0 10px 18px;
    padding: 0;
}

    .vin-locations li {
        list-style: none;
        color: #333;
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

.vin-img {
    width: 100%;
    border-radius: 10px;
    margin-top: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.vin-close {
    display: block;
    background: #1E3A8A;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 7px 14px;
    cursor: pointer;
    font-size: 0.9rem;
    margin: 15px auto 0;
    transition: background 0.2s ease;
}

    .vin-close:hover {
        background: #0f2f6e;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

/* 📱 Mobile responsiveness */
@media (max-width: 600px) {
    .vin-popup-box {
        width: max-content;
        padding: 16px;
        font-size: 0.9rem;
    }

        .vin-popup-box h3 {
            font-size: 1.1rem;
        }

    .vin-close {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* 💻 Tablet */
@media (min-width: 601px) and (max-width: 1024px) {
    .vin-popup-box {
        width: 80%;
        max-width: 500px;
    }
}



.special-section {
    text-align: center;
    
    padding: 60px 20px;
    
}

    .special-section h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 40px;
        color: papayawhip;
    }

.special-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.special-item {
    max-width: 280px;
    text-align: center;
}

    .special-item img {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
        transition: transform 0.3s ease;
    }

        .special-item img:hover {
            transform: scale(1.1);
        }

    .special-item p {
        font-size: 1rem;
        color: antiquewhite;
        line-height: 1.5;
    }




.vin-box {
   
    border-radius: 14px;
    padding: 25px 30px;
    margin: 30px auto;
    max-width: 500px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

    .vin-box:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    }

.vin-box-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e2e8f0; /* gri e lehtë për kontrast */
    margin-bottom: 18px;
    letter-spacing: 0.4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}





.report-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 18px 22px;
    margin: 25px auto 10px;
    max-width: 500px;
    color: #e2e8f0;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

    .report-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
        border-color: rgba(37, 99, 235, 0.4);
        background: rgba(37, 99, 235, 0.15);
    }

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.report-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
}

.report-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #38bdf8; /* blu e hapur për kontrast */
}

.report-desc {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.4;
}









.vin-result-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.vin-result-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px 35px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    animation: slideUp 0.35s ease;
}

    .vin-result-card h3 {
        margin-top: 0;
        font-size: 1.4rem;
        color: #1e3a8a;
        font-weight: 700;
    }

    .vin-result-card p {
        font-size: 1.05rem;
        color: #333;
        margin-top: 12px;
    }

    .vin-result-card.success {
        border-top: 6px solid #22c55e;
    }

    .vin-result-card.error {
        border-top: 6px solid #ef4444;
    }

    .vin-result-card.warning {
        border-top: 6px solid #f59e0b;
    }

    .vin-result-card.info {
        border-top: 6px solid #3b82f6;
    }

.vin-result-btn {
    margin-top: 18px;
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

    .vin-result-btn:hover {
        background: #334cc7;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.report-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f8fafc;
    border-left: 6px solid #22c55e;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 550px;
    margin: 25px auto;
    animation: fadeIn 0.5s ease;
}

    .report-box.danger {
        background: #fff5f5;
        border-left-color: #ef4444;
    }

    .report-box img.report-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

.report-box-content h4 {
    margin: 0;
    font-size: 1.15rem;
    color: #1e3a8a;
    font-weight: 700;
}

.report-box.danger .report-box-content h4 {
    color: #b91c1c;
}

.report-box-content p {
    margin-top: 6px;
    color: #374151;
    line-height: 1.5;
    font-size: 0.98rem;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* === Overlay për popup === */
.vmx-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    animation: fadeIn 0.3s ease;
}

/* === Popup box === */
.vmx-result-popup {
    background: #fff;
    border-radius: 14px;
    padding: 30px 36px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    animation: popupSlide 0.4s ease;
    font-family: 'Segoe UI', sans-serif;
}

.vmx-popup-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
}

.vmx-popup-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

    .vmx-popup-title.green {
        color: #16a34a;
    }

    .vmx-popup-title.red {
        color: #dc2626;
    }

    .vmx-popup-title.gray {
        color: #374151;
    }

.vmx-result-popup p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
}

.vmx-close-btn {
    margin-top: 25px;
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

    .vmx-close-btn:hover {
        background: linear-gradient(90deg, #2563eb, #1e40af);
    }

/* === Animacione === */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popupSlide {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

/* === Loading Overlay === */
.vmx-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    animation: fadeIn 0.3s ease;
}

.vmx-loading-spinner {
    border: 5px solid #e5e7eb;
    border-top: 5px solid #2563eb;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.vmx-loading-text {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    color: #1e3a8a;
    font-weight: 600;
    letter-spacing: 0.3px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.vin-loader-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, #f7fbff, #e3f2fd);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(6px);
    animation: fadeIn 0.5s ease;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

    .vin-loader-overlay.success {
        background: rgba(245,255,245,0.95);
    }

.success-card {
    text-align: center;
    color: #2e7d32;
    animation: popIn 0.4s ease-out;
}

    .success-card h3 {
        font-size: 20px;
        margin-top: 15px;
        color: #2e7d32;
    }

    .success-card p {
        font-size: 14px;
        color: #4b704d;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}





.vin-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999 !important;
    backdrop-filter: blur(6px);
    animation: fadeIn 0.3s ease-in-out;
}

    .vin-loader-overlay.success {
        background: rgba(250, 250, 250, 0.98);
        flex-direction: column;
    }

.success-card {
    text-align: center;
    animation: pop 0.5s ease-out;
}

    .success-card h3 {
        margin-top: 20px;
        color: #2e7d32;
        font-weight: 600;
    }

    .success-card p {
        margin: 6px 0 0;
        color: #333;
        font-size: 14px;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}



/* Popup bazë */
.popup-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    transition: opacity 0.3s ease;
    opacity: 0;
}

    .popup-overlay.active {
        opacity: 1;
    }

.popup-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.popup-overlay.active .popup-card {
    transform: scale(1);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

    .popup-header h3 {
        margin: 0;
        font-weight: 700;
        color: #0d47a1;
    }

.popup-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #333;
}

.popup-desc {
    font-size: 14px;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Galeria */
.korea-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

    .korea-gallery img {
        width: 100%;
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

        .korea-gallery img:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

.popup-btn {
    display: block;
    margin: 0 auto;
    background: #0d47a1;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
}

    .popup-btn:hover {
        opacity: 0.95;
    }


/* Popup wrapper */
.popup-korea-wrapper {
    position: fixed;
    top: 90px; /* nën header */
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: flex-start;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
    padding: 20px;
    overflow-y: auto; /* scroll brenda popup-it */
    transition: opacity 0.25s ease;
    opacity: 0;
}

    .popup-korea-wrapper.active {
        opacity: 1;
    }

/* Karta e popup-it */
.popup-korea {
    background: #fff;
    border-radius: 16px;
    max-width: 780px;
    width: 90%;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    padding: 24px;
    animation: popupSlideUp 0.3s ease;
}

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

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

/* Header */
.popup-korea-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

    .popup-korea-header h3 {
        margin: 0;
        font-weight: 700;
        font-size: 1.3rem;
        color: #0d47a1;
    }

.popup-korea-close {
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
    color: #333;
}

/* Përshkrimi */
.popup-korea-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 18px;
    text-align: center;
}

/* Galeria */
.popup-korea-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

    .popup-korea-gallery img {
        width: 100%;
        border-radius: 10px;
        cursor: zoom-in;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .popup-korea-gallery img:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

/* Footer */
.popup-korea-footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.popup-korea-btn {
    background: #0d47a1;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s ease;
}

    .popup-korea-btn:hover {
        opacity: 0.9;
    }


.korea-features {
    list-style: none;
    padding-left: 0;
    margin: 15px 0 25px;
}

    .korea-features li {
        font-size: 14.5px;
        line-height: 1.6;
        color: #333;
        background: #f8faff;
        border-left: 4px solid #1976d2;
        padding: 8px 12px;
        margin-bottom: 8px;
        border-radius: 6px;
    }

    .korea-features b {
        color: #0d47a1;
    }

.popup-korea-desc p {
    font-size: 14.5px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
    text-align: justify;
}




/* --- Banneri QR në fund të faqes --- */
.vmx-qr-footer-banner {
    position: relative;
    margin-top: 20px;
    
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    animation: fadeInUp 0.9s ease;
}

.vmx-qr-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    gap: 25px;
}

.vmx-qr-footer-img {
    width: 220px;
    height: auto;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

    .vmx-qr-footer-img:hover {
        transform: scale(1.05);
    }

.vmx-qr-footer-text {
    flex: 1;
}

    .vmx-qr-footer-text h2 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 1.3;
    }

        .vmx-qr-footer-text h2 span {
            color: #ffeb3b;
        }

    .vmx-qr-footer-text p {
        font-size: 15px;
        color: #e3f2fd;
        line-height: 1.6;
        margin-bottom: 18px;
    }

.vmx-qr-footer-btn {
    background: #ffeb3b;
    color: #0d47a1;
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .vmx-qr-footer-btn:hover {
        background: #fff176;
        transform: translateY(-2px);
    }

/* --- Efekt i butë hyrës --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* 📱 Responsivitet për mobile */
@media (max-width: 850px) {
    .vmx-qr-content {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .vmx-qr-footer-img {
        width: 160px;
        margin-bottom: 15px;
    }

    .vmx-qr-footer-text h2 {
        font-size: 1.3rem;
    }

    .vmx-qr-footer-btn {
        padding: 10px 20px;
    }
}




/* ✅ Overlay që fillon poshtë header-it */
.vmx-overlay-page {
    position: fixed;
    top: 80px; /* ndrysho sipas lartësisë së header-it tënd */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    z-index: 2000;
    padding: 40px 0;
}

/* Karta kryesore brenda faqes */
.vmx-card-page {
   
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    animation: slideDown 0.4s ease;
}

/* Animim i butë kur hapet */
@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

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

/* Butoni X për mbyllje */
.vmx-close-top {
    position: absolute;
    top: 12px;
    right: 16px;
    
    border: none;
    font-size: 28px;
    color: #555;
    cursor: pointer;
    transition: 0.2s;
    z-index: 5;
}

    .vmx-close-top:hover {
        color: #d32f2f;
    }

/* Ruaj dizajnin ekzistues për grid, header, butona, etj. */
.vmx-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.vmx-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 1rem;
}



.about-modern {
    background: #f9fbff;
    color: #1a1a1a;
    font-family: 'Segoe UI', Roboto, 'Open Sans', sans-serif;
    padding-bottom: 60px;
}

/* ===== HEADER ===== */
.about-hero {
    background: linear-gradient(135deg, #0078ff, #0052cc);
    color: #fff;
    text-align: center;
    padding: 80px 20px 70px;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

    .about-hero h1 {
        font-size: 2.4rem;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }

        .about-hero h1 span {
            color: #fff;
            text-shadow: 0 0 8px rgba(255,255,255,0.4);
        }

    .about-hero p {
        font-size: 1.1rem;
        opacity: 0.9;
    }

/* ===== KONTAINERI ===== */
.about-container {
    width: 90%;
    max-width: 960px;
    margin: 60px auto 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 50px 60px;
}

/* ===== SEKSIONET ===== */
.about-section {
    margin-bottom: 40px;
}

    .about-section h2 {
        font-size: 1.3rem;
        color: #0056b3;
        margin-bottom: 12px;
        position: relative;
    }

        .about-section h2::before {
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 40px;
            height: 3px;
            background: #0078ff;
            border-radius: 4px;
        }

    .about-section p, .about-section li {
        font-size: 1rem;
        line-height: 1.6;
        color: #333;
    }

    .about-section ul {
        list-style: none;
        padding-left: 0;
    }

        .about-section ul li::before {
            content: "• ";
            color: #0078ff;
            font-weight: bold;
        }

.highlight {
    background: linear-gradient(90deg, #f0f7ff, #e7f1ff);
    padding: 25px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 120, 255, 0.1);
}

/* ===== KOMPANIA ===== */
.company-info ul li {
    margin-bottom: 6px;
}

.company-info a {
    color: #0078ff;
    text-decoration: none;
}

    .company-info a:hover {
        text-decoration: underline;
    }

/* ===== FOOTER ===== */
.about-footer {
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 50px;
    padding-top: 15px;
    color: #777;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-container {
        padding: 30px 20px;
    }

    .about-hero {
        padding: 60px 15px 50px;
    }

        .about-hero h1 {
            font-size: 1.9rem;
        }
}


.vin-loader-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    backdrop-filter: blur(6px);
    animation: fadeIn 0.4s ease;
}

    .vin-loader-overlay svg {
        filter: drop-shadow(0 5px 15px rgba(0,0,0,0.15));
        border-radius: 16px;
    }


    .vin-loader-overlay.success {
        background: linear-gradient(145deg, #e8f5e9, #ffffff);
    }

.success-card {
    text-align: center;
    animation: popUp 0.5s ease-out;
}

    .success-card h3 {
        color: #2e7d32;
        font-weight: 600;
        margin-top: 12px;
    }

    .success-card p {
        color: #333;
        font-size: 14px;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

    to {
        opacity: 1;
    }
}

@keyframes popUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}
.vin-loader-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #f7fbff, #e3f2fd);
    z-index: 9999;
    backdrop-filter: blur(6px);
    animation: fadeIn 0.4s ease;
}

.analyzer-container {
    text-align: center;
    animation: scaleIn 0.4s ease-out;
}

.analyzer-ring {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}

.analyzer-text h2 {
    font-family: "Poppins", "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #0d47a1;
    margin-bottom: 8px;
}

.analyzer-text p {
    font-family: "Poppins", "Segoe UI", sans-serif;
    color: #2f4b63;
    font-size: 14px;
}

.dots span {
    animation: blink 1.5s infinite;
    font-size: 22px;
    color: #1976d2;
}

    .dots span:nth-child(2) {
        animation-delay: 0.3s;
    }

    .dots span:nth-child(3) {
        animation-delay: 0.6s;
    }

.vin-loader-overlay.success {
    background: linear-gradient(145deg, #e8f5e9, #ffffff);
}

.success-card {
    text-align: center;
    animation: popUp 0.5s ease-out;
}

    .success-card h3 {
        color: #2e7d32;
        font-weight: 600;
        margin-top: 12px;
    }

    .success-card p {
        color: #333;
        font-size: 14px;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes blink {
    0%, 80%, 100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

@keyframes popUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}
.vmx-captcha-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.vmx-captcha-box {
    background: #1e293b;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.g-recaptcha {
    z-index: 9999;
    position: relative;
    display: inline-block;
    min-height: 78px;
}
.vmx-overlay-page,
.vmx-card-page {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    overflow: visible !important;
}

.vmx-captcha {
    min-height: 90px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: relative !important;
    z-index: 9999 !important;
    background: transparent !important;
}
/* 🩵 Efekti për Captcha dhe kartat */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.fade-out {
    animation: fadeOut 0.4s ease forwards;
}

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

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

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}
/* Overlay i errët me blur */
.vmx-dialog-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Kutia e dialogut */
.vmx-dialog-box {
    background: #0f0f0f;
    color: #fff;
    border-radius: 18px;
    width: 92%;
    max-width: 720px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 32px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    scrollbar-width: thin;
    scrollbar-color: #4fc3f7 #1a1a1a;
}

    /* Scrollbar custom */
    .vmx-dialog-box::-webkit-scrollbar {
        width: 8px;
    }

    .vmx-dialog-box::-webkit-scrollbar-thumb {
        background: #4fc3f7;
        border-radius: 8px;
    }

        .vmx-dialog-box::-webkit-scrollbar-thumb:hover {
            background: #72e1ff;
        }

/* Butoni për mbyllje */
.vmx-dialog-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: transparent;
    color: #fff;
    font-size: 1.8rem;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 2;
}

    .vmx-dialog-close:hover {
        color: #4fc3f7;
    }

/* Footer */
.vmx-footer-info {
    margin-top: 25px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #ccc;
}

    .vmx-footer-info h4 {
        color: #4FC3F7;
        margin-bottom: 6px;
    }

/* ✨ Animacioni i hapjes */
@keyframes dialogPop {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }

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

.animate-dialog {
    animation: dialogPop 0.35s ease-out;
}
/* Titulli i popup-it */
.vmk-swal-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    color: #1a1a1a !important;
}

/* Teksti */
.vmk-swal-text {
    font-size: 14px !important;
    line-height: 1.5;
    color: #333 !important;
}

/* Butoni Dërgo */
.vmk-swal-confirm {
    font-size: 15px !important;
    padding: 10px 18px !important;
    border-radius: 8px !important;
}

/* Butoni Anulo */
.vmk-swal-cancel {
    font-size: 14px !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
}
