﻿.popup-alert {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 2000;
    background: #16a34a;
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    font-weight: 600;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
}

    .popup-alert.show {
        opacity: 1;
        transform: translateY(0);
    }

:root {
    --card-bg: #fff;
    --text: #0f172a;
    --muted: #64748b;
    --primary: #0b5aa7;
    --radius: 16px;
    --shadow: 0 14px 32px rgba(2,8,23,.10);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f5f7fb;
    color: var(--text);
}

/* Container */
.ct-wrapper {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 16px;
}

/* --- Info Cards --- */
.ct-info-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 32px;
    margin-bottom: 36px;
}

.ct-info-card {
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid lightgray;
    box-shadow: var(--shadow);
    padding: 36px 19px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 250px;
}



.ct-info-title {
    font-weight: 700;
    font-size: 16px;
    margin: -15px 0 4px;
    color: #0b5aa7;
    text-align:start;
}

.ct-info-text {
    color: var(--muted);
    font-size: 14px;
    text-align:start;
}

/* --- Split Section --- */
.ct-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
}

/* Form Card */
.ct-form-card {
    border-radius: 10px;
    background: var(--card-bg);
    box-shadow: var(--shadow);
    padding: 34px;
}

    .ct-form-card h2 {
        margin: 0 0 18px;
        font-size: 30px;
        font-weight: 700;
        color: #0b5aa7;
    }

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ct-form-group {
    margin-bottom: 14px;
}

    .ct-form-group label {
        display: block;
        font-size: 15px;
        color: var(--muted);
        margin-bottom: 6px;
    }

    .ct-form-group input,
    .ct-select-forma,
    .ct-form-group textarea {
        width: 100%;
        border: 1px solid #e2e8f0;
        background: #fff;
        color: var(--text);
        border-radius: 12px;
        padding: 14px 16px;
        outline: 0;
        transition: border .15s ease;
        font-size: 16.5px;
    }

    .ct-form-group textarea {
        min-height: 160px;
        resize: vertical;
    }

        .ct-form-group input:focus,
        .ct-select-forma:focus,
        .ct-form-group textarea:focus {
            border-color: #b6c6ff;
        }

/* Captcha */
.ct-captcha {
    margin: 14px 0 18px;
    height: 88px;
    width: 340px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 15px;
    background: #fafbff;
}

/* Button */
.ct-btn {
    appearance: none;
    border: 0;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(11,90,167,.22);
    font-size: 16.5px;
}

    .ct-btn:active {
        transform: translateY(1px);
    }

/* Map */
.ct-map {
    background: #eee;
    box-shadow: var(--shadow);
    overflow: hidden;
    border-radius: 10px;
}

    .ct-map iframe {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 620px;
        border: 0;
    }

/* --- Responsive --- */
@media (max-width:1100px) {
    .ct-info-row {
        grid-template-columns: repeat(3,1fr);
    }

    .ct-split {
        grid-template-columns: 1fr;
    }

    .ct-map iframe {
        min-height: 480px;
    }

}

@media (max-width:800px) {
    .ct-info-row {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:520px) {
    .ct-info-row {
        grid-template-columns: 1fr;
    }

    .ct-form-row {
        grid-template-columns: 1fr;
    }

    .ct-captcha {
        width: 100%;
    }

    .ct-form-card h2 {
        font-size: 28px;
    }
}
/* Telefona */
@media (max-width: 600px) {
    .ct-info-title {
        font-size: 16px;
        margin: -10px 0 4px;
    }

    .ct-info-text {
        font-size: 13px;
    }
}



/* Telefona shumë të vegjël */
@media (max-width: 400px) {
    .ct-info-title {
        font-size: 15px;
        margin: -6px 0 4px;
    }

    .ct-info-text {
        font-size: 12px;
    }
}

/* Ekrane <=1100px */
@media (max-width: 1100px) {
    .ct-info-title {
        font-size: 15px;
        margin: -30px 0 4px;
    }

    .ct-info-text {
        font-size: 12px;
    }
}
/* Ekrane <=1100px */
@media (max-width: 1500px) {
    .ct-info-title {
        font-size: 15px;
        margin: -30px 0 4px;
    }

    .ct-info-text {
        font-size: 12px;
    }
}
/* Ekrane <=800px */
@media (max-width: 800px) {
    .ct-info-title {
        font-size: 16px;
        margin: -10px 0 4px;
    }

    .ct-info-text {
        font-size: 14px;
    }
}

/* ===== FIX vetëm për 521–636px ===== */
/* Vendose PAS të gjithë CSS-ve të tjera */
@media (min-width: 521px) and (max-width: 636px) {
    /* dyfishimi i klasës rrit specifikimin */
    .ct-info-title.ct-info-title {
        font-size: 15.5px !important;
        margin: -25px 0 4px !important;
        line-height: 1.3;
    }

    .ct-info-text.ct-info-text {
        font-size: 13.5px !important;
        line-height: 1.55;
        margin: -8px 0 4px !important;
    }
}
