/* ==========================================================================
   POPUP (site açılış duyurusu)
   ========================================================================== */
.kesob-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(2px);
    animation: kesob-popup-fade 0.25s ease;
}

.kesob-popup-box {
    position: relative;
    background: #fff;
    border-radius: 24px;
    max-width: 560px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.45);
    animation: kesob-popup-pop 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.kesob-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.9);
    color: #1b1b1c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.15s ease, transform 0.15s ease;
}

    .kesob-popup-close:hover {
        background: #fff;
        transform: scale(1.05);
    }

.kesob-popup-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
}

/* 16:9 responsive video kutusu — YouTube embed popup'ı. */
.kesob-popup-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 24px;
    overflow: hidden;
    background: #000;
}

.kesob-popup-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.kesob-popup-content {
    padding: 2.5rem 2rem 1.5rem;
}

.kesob-popup-dismiss {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem 1.25rem;
    font-size: 0.8125rem;
    color: #6b7280;
    cursor: pointer;
    user-select: none;
}

    .kesob-popup-dismiss input {
        width: 16px;
        height: 16px;
        cursor: pointer;
    }

@keyframes kesob-popup-fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes kesob-popup-pop {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

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

@media (prefers-reduced-motion: reduce) {
    .kesob-popup-overlay,
    .kesob-popup-box {
        animation: none;
    }
}

header .kesob-cta:hover {
    color: #fff !important;
}

    içindeki olası alt öğeler için güvence.) */
    header .kesob-cta:hover,
    header .kesob-cta:hover * {
        color: #fff !important;
        fill: #fff !important;
    }

a.group:hover [class*="group-hover:bg-primary"] .material-symbols-outlined,
div.group:hover [class*="group-hover:bg-primary"] .material-symbols-outlined,
a.group:hover .bg-primary .material-symbols-outlined {
    color: #fff !important;
}

.kesob-quick-card:hover,
.kesob-quick-link:hover {
    color: #fff !important;
}

    .kesob-quick-card:hover *,
    .kesob-quick-link:hover * {
        color: #fff !important;
        fill: #fff !important;
    }