/* Basit KKU Kariyer temasÃƒâ€žÃ‚Â± */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header exactly like Umran OTO - Red Theme */
.kku-red-header {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .kku-red-header .navbar {
        padding: 0.5625rem 0;
    }

    .kku-red-header .navbar-brand {
        color: #0f172a;
        text-decoration: none;
        display: flex;
        align-items: center;
        font-weight: 700;
        background: var(--bs-body-bg);
        padding: 7.5px;
        border-radius: 15px;
    }

    .kku-red-header .brand-logo {
        font-size: 2rem;
        font-weight: 700;
        text-transform: lowercase;
    }

    .kku-red-header .brand-logo-sub {
        font-size: 1.8rem;
        font-weight: 600;
        margin-left: 0.25rem;
        /* text-transform: lowercase; */
    }

    .kku-red-header .navbar-brand:hover {
        /* color: white; */
    }

    .kku-red-header .navbar-nav .nav-link {
        color: white;
        font-weight: 500;
        padding: 0.5rem 1rem;
        margin: 0 0.1rem;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        border-radius: 4px;
    }

        .kku-red-header .navbar-nav .nav-link:hover,
        .kku-red-header .navbar-nav .nav-link:focus {
            color: white;
            background: rgba(255, 255, 255, 0.1);
        }

    .kku-red-header .dropdown-menu {
        border: none;
        border-radius: 8px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        margin-top: 0.5rem;
        padding: 0.5rem 0;
        background: white;
    }

    .kku-red-header .dropdown-item {
        padding: 0.5rem 1rem;
        color: #333;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

        .kku-red-header .dropdown-item:hover {
            background-color: #f8f9fa;
            color: #e53e3e;
        }

    .kku-red-header .header-buttons {
        display: flex;
        gap: 0.75rem;
        align-items: center;
    }

    .kku-red-header .randevu-btn,
    .kku-red-header .giris-btn {
        border: 2px solid white;
        background: transparent;
        color: white;
        padding: 0.5rem 1.25rem;
        border-radius: 25px;
        font-weight: 600;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

        .kku-red-header .randevu-btn:hover,
        .kku-red-header .giris-btn:hover {
            background: white;
            color: #e53e3e;
        }

    .kku-red-header .navbar-toggler {
        border: 2px solid white;
        padding: 0.25rem 0.5rem;
    }

    .kku-red-header .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .kku-red-header .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    }

/* Login Modal Styles - Umran OTO */
.kku-modal {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

    .kku-modal .modal-header {
        padding: 0;
        border-bottom: none;
        position: relative;
    }

.login-tabs {
    display: flex;
    width: 100%;
}

.login-tab {
    flex: 1;
    padding: 1rem;
    border: none;
    background: #f8f9fa;
    color: #666;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

    .login-tab.active {
        background: white;
        color: #333;
        border-bottom-color: #e53e3e;
    }

    .login-tab:hover {
        background: #f1f1f1;
    }

.kku-modal .btn-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.kku-modal .modal-body {
    padding: 2rem;
}

.login-form h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.login-form p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.phone-input {
    display: flex;
    margin-bottom: 1rem;
}

.country-code {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-right: none;
    padding: 0.75rem 1rem;
    color: #666;
    font-weight: 600;
    border-radius: 6px 0 0 6px;
}

.phone-input .form-control {
    border-radius: 0 6px 6px 0;
    border-left: none;
}

.kku-modal .form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.95rem;
}

    .kku-modal .form-control:focus {
        border-color: #e53e3e;
        box-shadow: 0 0 0 0.2rem rgba(229, 62, 62, 0.25);
    }

.code-input {
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    text-align: center;
    font-weight: 600;
}

.kku-modal .form-check {
    margin: 1rem 0 1.5rem 0;
}

.kku-modal .form-check-label {
    font-size: 0.9rem;
    color: #666;
}

.kku-modal .btn {
    border-radius: 6px;
    padding: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.kku-modal .btn-primary {
    background: #e53e3e;
    border-color: #e53e3e;
}

    .kku-modal .btn-primary:hover {
        background: #c53030;
        border-color: #c53030;
    }

.kku-modal .btn-success {
    background: #28a745;
    border-color: #28a745;
}

.code-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.kku-modal .btn-link {
    color: #e53e3e;
    text-decoration: none;
    padding: 0.5rem;
    font-size: 0.9rem;
}

    .kku-modal .btn-link:hover {
        color: #c53030;
        text-decoration: underline;
    }

/* Footer exactly like Umran OTO */
.kku-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem 0;
}

    .kku-footer .footer-brand {
        margin-bottom: 2rem;
    }

    .kku-footer .footer-logo {
        height: 60px;
        margin-bottom: 1rem;
        filter: brightness(0) invert(1);
    }

    .kku-footer .contact-info p {
        margin: 0.5rem 0;
        color: #bdc3c7;
        font-size: 1rem;
    }

        .kku-footer .contact-info p strong {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }

    .kku-footer .footer-title {
        color: white;
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .kku-footer .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .kku-footer .footer-links li {
            margin-bottom: 0.75rem;
        }

        .kku-footer .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            display: block;
        }

            .kku-footer .footer-links a:hover {
                color: white;
            }

    .kku-footer .mobile-apps {
        margin-top: 2rem;
    }

    .kku-footer .app-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .kku-footer .app-btn {
        display: inline-block;
        transition: transform 0.3s ease;
    }

        .kku-footer .app-btn:hover {
            transform: translateY(-2px);
        }

        .kku-footer .app-btn img {
            height: 45px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

    .kku-footer .footer-bottom {
        border-top: 1px solid #34495e;
        padding-top: 2rem;
        margin-top: 3rem;
    }

    .kku-footer .copyright-text {
        color: #bdc3c7;
        font-size: 0.95rem;
        margin: 0;
    }

    .kku-footer .footer-legal-links {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
    }

        .kku-footer .footer-legal-links a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

            .kku-footer .footer-legal-links a:hover {
                color: white;
            }

/* Responsive Design */
@media (max-width: 768px) {
    /* Genel mobil düzenlemeler */
    body {
        overflow-x: hidden;
    }
    
    .container, .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    
    /* Header mobil düzenlemeler */
    .kku-header .navbar-nav {
        text-align: center;
    }

    .kku-header .login-btn {
        margin-top: 1rem;
        display: inline-block;
    }
    
    .kku-red-header .navbar-brand {
        font-size: 1.2rem;
        padding: 8px;
    }
    
    .kku-red-header .brand-logo {
        font-size: 1.5rem;
    }
    
    .kku-red-header .brand-logo-sub {
        font-size: 1.3rem;
    }

    /* Footer mobil düzenlemeler */
    .kku-footer .footer-bottom .row {
        text-align: center;
    }

    .kku-footer .footer-legal-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .kku .footer-copyright .row {
        text-align: center;
    }
    
    .kku .footer-copyright .col-md-4 {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .kku .copyright-text {
        text-align: center;
        font-size: 0.85rem;
    }
    
    .kku .copyright-text strong {
        font-size: 0.95rem;
    }
    
    .kku .footer-address,
    .kku .footer-department {
        font-size: 0.8rem;
    }
    
    /* Tablo ve içerik düzenlemeler */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .btn {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Form düzenlemeler */
    .form-control {
        width: 100%;
        max-width: 100%;
    }
    
    /* Modal düzenlemeler */
    .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    /* Grid düzenlemeler */
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, 
    .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 480px) {
    /* Çok küçük ekranlar için ek düzenlemeler */
    body {
        font-size: 14px;
    }
    
    .container, .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .kku-header .brand-text {
        font-size: 1.2rem;
    }

    .kku-header .login-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .kku-red-header .navbar-brand {
        font-size: 1rem;
        padding: 6px;
    }
    
    .kku-red-header .brand-logo {
        font-size: 1.2rem;
    }
    
    .kku-red-header .brand-logo-sub {
        font-size: 1rem;
    }

    .kku-footer {
        padding: 3rem 0 1.5rem 0;
    }

        .kku-footer .footer-title {
            font-size: 0.9rem;
        }

        .kku-footer .app-btn img {
            height: 35px;
        }
    
    /* Küçük ekranlar için özel düzenlemeler */
    .card {
        margin-bottom: 0.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .modal-dialog {
        margin: 5px;
        max-width: calc(100% - 10px);
    }
    
    .table-responsive {
        font-size: 0.8rem;
    }
    
    /* Grid düzenlemeler */
    .row {
        margin-left: -5px;
        margin-right: -5px;
    }
    
    .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, 
    .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* Çok küçük ekranlar için ekstra düzenlemeler */
@media (max-width: 320px) {
    body {
        font-size: 12px;
    }
    
    .container, .container-fluid {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .kku-red-header .navbar-brand {
        font-size: 0.9rem;
        padding: 4px;
    }
    
    .kku-red-header .brand-logo {
        font-size: 1rem;
    }
    
    .kku-red-header .brand-logo-sub {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .modal-dialog {
        margin: 2px;
        max-width: calc(100% - 4px);
    }
    
    .card {
        margin-bottom: 0.25rem;
    }
    
    .table-responsive {
        font-size: 0.7rem;
    }
}

/* Ana iÃƒÆ’Ã‚Â§erik */
main {
    min-height: 60vh;
    padding: 2rem 0;
}

/* ===== Umran Red Footer (exact-like) ===== */
.kku-red-footer {
    background: #0f172a; /* very dark slate */
    color: #cbd5e1; /* slate-300 */
    padding: 2.5rem 0 1.5rem 0;
}

    .kku-red-footer .footer-top {
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        border-radius: 18px;
        padding: 1.25rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        color: #fff;
        box-shadow: 0 12px 30px rgba(239, 68, 68, 0.25);
        margin-bottom: 2rem;
    }

    .kku-red-footer .footer-logo {
        font-size: 1.75rem;
        font-weight: 800;
        letter-spacing: .5px;
        margin: 0;
    }

    .kku-red-footer .footer-contact h3 {
        margin: 0;
        font-weight: 800;
        color: #fff;
    }

    .kku-red-footer .footer-contact p {
        margin: .25rem 0 0 0;
        color: rgba(255,255,255,.9);
    }

    .kku-red-footer .footer-social {
        display: flex;
        align-items: center;
        gap: .5rem;
    }

        .kku-red-footer .footer-social .social-icon {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,.15);
            color: #fff;
            text-decoration: none;
            transition: all .25s ease;
        }

            .kku-red-footer .footer-social .social-icon:hover {
                background: #fff;
                color: #dc2626;
                transform: translateY(-2px);
            }

    /* Footer title underline and live icon */
    .kku-red-footer .footer-title {
        position: relative;
        padding-bottom: .6rem;
        display: flex;
        align-items: center;
        gap: .5rem;
    }

        .kku-red-footer .footer-title::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 56px;
            height: 3px;
            border-radius: 3px;
            background: linear-gradient(90deg, #ef4444, #dc2626);
            box-shadow: 0 2px 8px rgba(239, 68, 68, .45);
        }

.footer-title-icon {
    color: #ef4444;
    animation: livePulse 1.6s infinite ease-in-out;
}

@keyframes livePulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(239, 68, 68, 0.0));
    }

    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 6px rgba(239, 68, 68, 0.6));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(239, 68, 68, 0.0));
    }
}

/* Animated list items */
.kku-red-footer .footer-links li {
    transform: translateY(0);
    transition: transform .2s ease, opacity .2s ease;
}

    .kku-red-footer .footer-links li:hover {
        transform: translateY(-3px);
    }

.kku-red-footer .footer-links a {
    position: relative;
}

    .kku-red-footer .footer-links a::before {
        content: "";
        position: absolute;
        left: -10px;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #ef4444;
        opacity: 0;
        transition: opacity .2s ease, left .2s ease;
    }

    .kku-red-footer .footer-links a:hover::before {
        opacity: 1;
        left: -4px;
    }

.kku-red-footer .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .kku-red-footer .footer-links li {
        margin-bottom: .6rem;
    }

    .kku-red-footer .footer-links a {
        color: #cbd5e1;
        text-decoration: none;
        transition: color .2s ease;
    }

        .kku-red-footer .footer-links a:hover {
            color: #ffffff;
        }

.kku-red-footer .footer-legal-links {
    display: inline-flex;
    gap: 1.25rem;
}

    .kku-red-footer .footer-legal-links a {
        color: #94a3b8;
        text-decoration: none;
    }

        .kku-red-footer .footer-legal-links a:hover {
            color: #ffffff;
        }

@media (max-width: 992px) {
    .kku-red-footer .footer-top {
        flex-direction: column;
        text-align: center;
        gap: .75rem;
    }
}

/* ===== Shaped Header Bar (Umran-like) ===== */
.kku-red-header .header-bar {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 14px;
    padding: .2625rem .75rem;
    box-shadow: 0 10px 24px rgba(239, 68, 68, .25);
}

.kku-red-header {
    padding: .225rem 0;
}

    .kku-red-header .navbar-brand {
        font-size: 2.25rem;
    }

    .kku-red-header .navbar-nav .nav-link {
        font-size: .95rem;
    }

    .kku-red-header .giris-btn {
        border-width: 2px;
    }

    /* Header social icons */
    .kku-red-header .header-social {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        margin-left: auto;
    }

        .kku-red-header .header-social .social-icon {
            width: 34px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #fff;
            text-decoration: none;
            background: rgba(255,255,255,.18);
            transition: all .25s ease;
        }

            .kku-red-header .header-social .social-icon:hover {
                background: #fff;
                color: #dc2626;
                transform: translateY(-2px);
            }

/* Footer cards */
.kku-red-footer .footer-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 1.25rem;
    height: 100%;
    box-shadow: 0 10px 24px rgba(0,0,0,.15);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

    .kku-red-footer .footer-card:hover {
        transform: translateY(-4px);
        background: rgba(255,255,255,.06);
        box-shadow: 0 16px 32px rgba(0,0,0,.25);
    }

/* KKU header logo */
.kku-red-header .header-logo {
    height: 48px;
    margin-right: .5rem;
}

/* Footer title underline full width */
.kku-red-footer .footer-card .footer-title {
    padding-bottom: .75rem;
}

    .kku-red-footer .footer-card .footer-title::after {
        width: 100%;
        left: 0;
        right: 0;
    }

/* Center contact in top band */
.kku-red-footer .footer-top {
    text-align: center;
}

    .kku-red-footer .footer-top .footer-brand,
    .kku-red-footer .footer-top .footer-social {
        flex: 1;
    }

    .kku-red-footer .footer-top .footer-contact {
        flex: 1;
    }

        .kku-red-footer .footer-top .footer-contact h3,
        .kku-red-footer .footer-top .footer-contact p {
            text-align: center;
        }

/* ===== Alias: kku == kku-red-footer ===== */
.kku {
    background: #0f172a;
    color: #cbd5e1;
    padding: 2.5rem 0 1.5rem 0;
}

    .kku .footer-top {
        background: linear-gradient(135deg,#ef4444 0%,#dc2626 100%);
        border-radius: 18px;
        padding: 1.25rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        color: #fff;
        box-shadow: 0 12px 30px rgba(239,68,68,.25);
        margin-bottom: 2rem;
        text-align: center;
    }

    .kku .footer-logo {
        font-size: 1.75rem;
        font-weight: 800;
        letter-spacing: .5px;
        margin: 0;
    }

    .kku .footer-contact h3 {
        margin: 0;
        font-weight: 800;
        color: #fff;
        text-align: center;
    }

    .kku .footer-contact p {
        margin: .25rem 0 0 0;
        color: rgba(255,255,255,.9);
        text-align: center;
    }

    .kku .footer-brand, .kku .footer-social, .kku .footer-contact {
        flex: 1;
    }

    .kku .footer-social {
        display: flex;
        align-items: center;
        gap: .5rem;
        justify-content: center;
    }

        .kku .footer-social .social-icon {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,.15);
            color: #fff;
            text-decoration: none;
            transition: all .25s ease;
        }

            .kku .footer-social .social-icon:hover {
                background: #fff;
                color: #dc2626;
                transform: translateY(-2px);
            }

    .kku .footer-card {
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 16px;
        padding: 1.25rem;
        height: 100%;
        box-shadow: 0 10px 24px rgba(0,0,0,.15);
        transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

        .kku .footer-card:hover {
            transform: translateY(-4px);
            background: rgba(255,255,255,.06);
            box-shadow: 0 16px 32px rgba(0,0,0,.25);
        }

    .kku .footer-title {
        color: #fff;
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: .5px;
        position: relative;
        padding-bottom: .75rem;
        display: flex;
        align-items: center;
        gap: .5rem;
    }

        .kku .footer-title::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 3px;
            border-radius: 3px;
            width: 100%;
            background: linear-gradient(90deg,#ef4444,#dc2626);
            box-shadow: 0 2px 8px rgba(239,68,68,.45);
        }

    .kku .footer-links {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .kku .footer-links li {
            margin-bottom: .6rem;
            transform: translateY(0);
            transition: transform .2s ease, opacity .2s ease;
        }

            .kku .footer-links li:hover {
                transform: translateY(-3px);
            }

        .kku .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color .2s ease;
            position: relative;
            display: block;
        }

            .kku .footer-links a:hover {
                color: #fff;
            }

            .kku .footer-links a::before {
                content: "";
                position: absolute;
                left: -10px;
                top: 50%;
                transform: translateY(-50%);
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: #ef4444;
                opacity: 0;
                transition: opacity .2s ease, left .2s ease;
            }

            .kku .footer-links a:hover::before {
                opacity: 1;
                left: -4px;
            }

    .kku .footer-legal-links {
        display: inline-flex;
        gap: 1.25rem;
    }

        .kku .footer-legal-links a {
            color: #94a3b8;
            text-decoration: none;
        }

            .kku .footer-legal-links a:hover {
                color: #fff;
            }

@media (max-width: 992px) {
    .kku .footer-top {
        flex-direction: column;
    }
}

/* Footer title icon bigger */
.footer-title-icon {
    font-size: 1.05rem;
}

.kku .footer-title .footer-title-icon {
    font-size: 1.2rem;
}

/* Footer KKU logo image */
.kku .footer-logo-img {
    height: 80px;
    margin-right: .5rem;
    /* filter: brightness(0) invert(1); */
    vertical-align: middle;
    background: white;
    border-radius: 16px;
    padding: 6px;
}

.kku .footer-brand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

/* Scroll reveal: fade-in on enter, fade-out on leave */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .6s ease, transform .6s ease;
    will-change: opacity, transform;
}

    .reveal.is-visible {
        opacity: 1;
        transform: none;
    }

/* Optional direction variants */
.reveal-left {
    transform: translateX(-16px);
}

.reveal-right {
    transform: translateX(16px);
}

    .reveal-left.is-visible, .reveal-right.is-visible {
        transform: none;
    }

/* Delay helpers */
.reveal[data-delay="100"] {
    transition-delay: .1s;
}

.reveal[data-delay="200"] {
    transition-delay: .2s;
}

.reveal[data-delay="300"] {
    transition-delay: .3s;
}

.reveal[data-delay="400"] {
    transition-delay: .4s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Spacing between bullet dot and link text */
.kku .footer-links a {
    padding-left: 14px; /* provide gap for the dot */
}

    .kku .footer-links a::before {
        left: 0; /* align dot inside the padding area */
    }

    .kku .footer-links a:hover::before {
        left: 0; /* keep dot steady; just fade in */
        opacity: 1;
    }

/* Footer bottom as bordered card */
.kku .footer-copyright {
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.03);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.kku .copyright-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
}

.kku .copyright-text strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.kku .footer-address {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.25rem;
}

.kku .footer-department {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

/* Equal-height footer titles for perfect symmetry */
.kku .footer-card {
    display: flex;
    flex-direction: column;
}

    .kku .footer-card .footer-title {
        min-height: 56px; /* keep same block height even if title wraps */
        line-height: 1.25;
        align-items: flex-end; /* underline aligns at same vertical line */
    }

@media (max-width: 576px) {
    .kku .footer-card .footer-title {
        min-height: 44px;
    }
}

/* ===== GENEL MOBİL DÜZENLEMELERİ ===== */

/* Viewport meta tag için ekstra güvenlik */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Tüm elementlerin ekran sınırları içinde kalmasını sağla */
* {
    box-sizing: border-box;
}

/* Horizontal scroll'u engelle */
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Container'ların taşmasını engelle */
.container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 100%;
    overflow-x: hidden;
}

/* Row'ların taşmasını engelle */
.row {
    max-width: 100%;
    overflow-x: hidden;
}

/* Col'ların taşmasını engelle */
[class*="col-"] {
    max-width: 100%;
    overflow-x: hidden;
}

/* Tabloların responsive olmasını sağla */
table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: none;
}

/* Resimlerin responsive olmasını sağla */
img {
    max-width: 100%;
    height: auto;
}

/* Video elementlerinin responsive olmasını sağla */
video {
    max-width: 100%;
    height: auto;
}

/* Iframe'lerin responsive olmasını sağla */
iframe {
    max-width: 100%;
}

/* Form elementlerinin responsive olmasını sağla */
input, textarea, select {
    max-width: 100%;
    width: 100%;
}

/* Button'ların taşmasını engelle */
.btn {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Modal'ların mobilde düzgün görünmesini sağla */
.modal {
    padding: 0 !important;
}

.modal-dialog {
    margin: 0;
    max-width: 100%;
    height: 100%;
}

.modal-content {
    height: 100%;
    border: none;
    border-radius: 0;
}

/* Dropdown'ların taşmasını engelle */
.dropdown-menu {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Navbar'ın mobilde düzgün görünmesini sağla */
.navbar {
    max-width: 100%;
    overflow-x: hidden;
}

.navbar-nav {
    max-width: 100%;
}

.navbar-brand {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Card'ların responsive olmasını sağla */
.card {
    max-width: 100%;
    overflow-x: hidden;
}

.card-body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Alert'lerin responsive olmasını sağla */
.alert {
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
}

/* Badge'lerin taşmasını engelle */
.badge {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Progress bar'ların responsive olmasını sağla */
.progress {
    max-width: 100%;
}

/* List group'ların responsive olmasını sağla */
.list-group {
    max-width: 100%;
}

.list-group-item {
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
}

/* Pagination'ın responsive olmasını sağla */
.pagination {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Breadcrumb'ın responsive olmasını sağla */
.breadcrumb {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Carousel'ın responsive olmasını sağla */
.carousel {
    max-width: 100%;
}

.carousel-item {
    max-width: 100%;
}

.carousel-item img {
    max-width: 100%;
    height: auto;
}

/* Accordion'ın responsive olmasını sağla */
.accordion {
    max-width: 100%;
}

.accordion-item {
    max-width: 100%;
}

.accordion-body {
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
}

/* Tab'ların responsive olmasını sağla */
.nav-tabs {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-content {
    max-width: 100%;
    overflow-x: hidden;
}

/* Tooltip ve Popover'ların responsive olmasını sağla */
.tooltip {
    max-width: 90vw;
    word-wrap: break-word;
}

.popover {
    max-width: 90vw;
    word-wrap: break-word;
}

/* Flexbox elementlerinin responsive olmasını sağla */
.d-flex {
    max-width: 100%;
    overflow-x: hidden;
}

.flex-wrap {
    max-width: 100%;
}

/* Grid elementlerinin responsive olmasını sağla */
.d-grid {
    max-width: 100%;
}

/* Text overflow için genel kural */
.text-truncate {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Word wrap için genel kural */
.text-wrap {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Küçük ekranlarda font boyutlarını optimize et */
@media (max-width: 576px) {
    body {
        font-size: 14px;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }
    h4 { font-size: 1rem; }
    h5 { font-size: 0.9rem; }
    h6 { font-size: 0.8rem; }
    
    .display-1 { font-size: 2rem; }
    .display-2 { font-size: 1.8rem; }
    .display-3 { font-size: 1.6rem; }
    .display-4 { font-size: 1.4rem; }
}

/* Çok küçük ekranlarda font boyutlarını daha da küçült */
@media (max-width: 320px) {
    body {
        font-size: 12px;
    }
    
    h1 { font-size: 1.3rem; }
    h2 { font-size: 1.1rem; }
    h3 { font-size: 1rem; }
    h4 { font-size: 0.9rem; }
    h5 { font-size: 0.8rem; }
    h6 { font-size: 0.7rem; }
    
    .display-1 { font-size: 1.8rem; }
    .display-2 { font-size: 1.6rem; }
    .display-3 { font-size: 1.4rem; }
    .display-4 { font-size: 1.2rem; }
}

/* SweetAlert2 Özelleştirmeleri */
.swal-popup-custom {
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid #e2e8f0 !important;
}

.swal-title-custom {
    color: #2d3748 !important;
    font-weight: 600 !important;
    font-size: 1.25rem !important;
}

.swal-content-custom {
    color: #4a5568 !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

/* SweetAlert2 Buton Özelleştirmeleri */
.swal2-confirm {
    border-radius: 8px !important;
    font-weight: 500 !important;
    padding: 0.75rem 1.5rem !important;
    transition: all 0.2s ease !important;
}

.swal2-confirm:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3) !important;
}

.swal2-cancel {
    border-radius: 8px !important;
    font-weight: 500 !important;
    padding: 0.75rem 1.5rem !important;
    transition: all 0.2s ease !important;
}

.swal2-cancel:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3) !important;
}

/* SweetAlert2 İkon Özelleştirmeleri */
.swal2-icon {
    border-radius: 50% !important;
}

.swal2-icon.swal2-warning {
    border-color: #f6ad55 !important;
    color: #f6ad55 !important;
}

.swal2-icon.swal2-error {
    border-color: #fc8181 !important;
    color: #fc8181 !important;
}

.swal2-icon.swal2-info {
    border-color: #4299e1 !important;
    color: #4299e1 !important;
}

.swal2-icon.swal2-success {
    border-color: #68d391 !important;
    color: #68d391 !important;
}

/* SweetAlert2 Timer Progress Bar */
.swal2-timer-progress-bar {
    background: #4299e1 !important;
}

/* SweetAlert2 Animasyonları */
.swal2-show {
    animation: swal2-show 0.3s ease-out !important;
}

.swal2-hide {
    animation: swal2-hide 0.3s ease-in !important;
}

@keyframes swal2-show {
    0% {
        transform: scale(0.7) !important;
        opacity: 0 !important;
    }
    100% {
        transform: scale(1) !important;
        opacity: 1 !important;
    }
}

@keyframes swal2-hide {
    0% {
        transform: scale(1) !important;
        opacity: 1 !important;
    }
    100% {
        transform: scale(0.7) !important;
        opacity: 0 !important;
    }
}