﻿:root {
    --k-side-bg: var(--app-surface-900, #0f172a);
    --k-side-fg: var(--app-text-200, #e5e7eb);
    --k-side-active: var(--app-surface-800, rgba(255,255,255,.12));
}

#whatsapp-button {
    position: fixed;
    bottom: 5em;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    #whatsapp-button img {
        width: 32px;
        height: 32px;
    }

#whatsapp-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    display: none;
    z-index: 1000;
    font-family: sans-serif;
}

#whatsapp-header {
    background-color: #25D366;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    #whatsapp-header span {
        font-weight: bold;
    }

#whatsapp-close {
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
}

#whatsapp-body {
    padding: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
}

#whatsappMessage {
    flex: 1;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#whatsapp-send {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.room img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* veya 'contain' istersen siyah boşluk olabilir */
    border-radius: 6px;
    background-color: #f4f4f4;
}

.child-age-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.child-age-box {
    background-color: #f2f4f8;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #d0d7e2;
    min-width: 120px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    text-align: center;
}

    .child-age-box label {
        font-weight: 500;
        margin-bottom: 6px;
        display: block;
        font-size: 0.9rem;
    }

    .child-age-box select {
        width: 100%;
        padding: 6px;
        border-radius: 6px;
        border: 1px solid #ccc;
    }

#slider-larg .item {
    width: 100%;
    height: 500px; /* Sabit yükseklik */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

    #slider-larg .item img {
        width: 100%;
        /*height: 100%;*/
        object-fit: contain;
    }

#thumbs .item {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

    #thumbs .item img {
        width: 100%;
        /*height: 100%;*/
        object-fit: contain;
    }

.search-results-wrapper {
    padding: 30px 20px;
}

.blog-result-card {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

    .blog-result-card img {
        width: 140px;
        height: 100px;
        object-fit: cover;
        border-radius: 6px;
    }

.blog-result-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .blog-result-content h6 {
        margin-bottom: 6px;
        font-size: 1rem;
        font-weight: 600;
    }

    .blog-result-content small {
        color: #666;
        font-size: 0.85rem;
    }

    .blog-result-content p {
        margin: 8px 0 0;
        font-size: 0.9rem;
        color: #333;
    }

.category-result-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: all 0.2s ease-in-out;
}

    .category-result-card:hover {
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        background-color: #fff;
    }

    .category-result-card h6 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
    }

    .category-result-card p {
        font-size: 0.9rem;
        color: #555;
        margin-bottom: 0;
    }

.video-slider-section .swiper-button-next,
.video-slider-section .swiper-button-prev {
    color: #fff !important;
    font-size: 40px;
    font-weight: bold;
    text-shadow: 0px 2px 6px rgba(0,0,0,0.7);
    z-index: 9999; /* her şeyin üstüne çıkar */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4); /* buton arkasına yarı saydam arka plan */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sağdaki buton */
.video-slider-section .swiper-button-next {
    right: 15px;
}

/* Soldaki buton */
.video-slider-section .swiper-button-prev {
    left: 15px;
}

    /* Ok ikon boyutu */
    .video-slider-section .swiper-button-next::after,
    .video-slider-section .swiper-button-prev::after {
        font-size: 25px;
    }

.video-slider-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #0072ff, #00c6ff);
}

    /* Dalga efekti */
    .video-slider-section::before,
    .video-slider-section::after {
        content: "";
        position: absolute;
        width: 200%;
        height: 100%;
        top: 0;
        left: -50%;
        background: url(/Content/images/wave.svg) repeat-x;
        background-size: 1000px 200px;
        animation: wave 15s linear infinite;
        opacity: 0.5;
        z-index: 0;
    }

    .video-slider-section::after {
        top: -100px;
        animation-duration: 20s;
        opacity: 0.3;
    }

@keyframes wave {
    from {
        background-position-x: 0;
    }

    to {
        background-position-x: 1000px;
    }
}

/* Swiper alanı */
.video-slider-section .swiper {
    width: 95%;
    margin: auto;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Slide kartları */
.video-slider-section .swiper-slide {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

    /* Videolar dikey görünüm */
    .video-slider-section .swiper-slide video {
        width: auto;
        height: 500px; /* dikey format */
        max-width: 100%;
        display: block;
        border-radius: 15px;
        background: #000;
    }

/* Navigasyon butonları görünür kılalım */
.video-slider-section .swiper-button-next,
.video-slider-section .swiper-button-prev {
    color: #fff;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

.video-slider-section .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.8;
}

.video-slider-section .swiper-pagination-bullet-active {
    background: #0072ff;
}

.video-slider-section .swiper-slide video {
    width: auto;
    height: 500px; /* dikey format */
    max-width: 100%;
    display: block;
    border-radius: 15px;
    background: #000;
    object-fit: cover; /* içerik taşarsa kırpar */
}

.hover_effect img {
    display: block;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /*width: auto;
    height: auto;*/
    /*max-height: 150px;*/
}

/* Top bar beautification */
.top_menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: linear-gradient(90deg,#ffffff 0%, #f6f9fc 50%, #ffffff 100%);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: saturate(180%) blur(8px);
}

header .nav-link.home-icon {
    padding: .35rem .6rem;
    border-radius: 6px;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease,color .25s ease;
}

    header .nav-link.home-icon i {
        line-height: 1;
    }

    header .nav-link.home-icon:hover {
        background: #e9f2ff;
        color: #0050d8;
    }

    header .nav-link.home-icon.active {
        background: #0050d8;
        color: #fff;
    }


header.fixed {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999 !important;
    background: rgba(255,255,255,0.9);
    backdrop-filter: saturate(180%) blur(12px);
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
    transition: top .2s ease, background .3s ease, box-shadow .3s ease, padding .25s ease;
    top: 3em;
}

    header.fixed.scrolled {
        background: rgba(255,255,255,0.85);
        box-shadow: 0 6px 18px -4px rgba(0,0,0,.12);
    }

body.has-fixed-header {
    transition: padding-top .25s ease;
}

/* Main nav link styling */
.main-nav-list > .nav-item > .nav-link,
.dropdown-menu .dropdown-item {
    position: relative;
    font-weight: 500;
    padding: .75rem 1rem;
    transition: color .25s ease;
}

    .main-nav-list > .nav-item > .nav-link::after,
    .dropdown-menu .dropdown-item::after {
        content: "";
        position: absolute;
        left: 1rem;
        right: 1rem;
        bottom: .45rem;
        height: 2px;
        background: linear-gradient(90deg,#0066ff,#00a2ff);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s ease;
        border-radius: 2px;
    }

    .main-nav-list > .nav-item > .nav-link:hover::after,
    .main-nav-list > .nav-item.active > .nav-link::after,
    .dropdown-menu .dropdown-item:hover::after,
    .dropdown-menu .dropdown-item.active::after {
        transform: scaleX(1);
    }

    .main-nav-list > .nav-item.active > .nav-link,
    .dropdown-menu .dropdown-item.active {
        color: #004cb3;
    }

    .main-nav-list > .nav-item > .nav-link:hover,
    .dropdown-menu .dropdown-item:hover {
        color: #0066ff;
    }

/* Dropdown animation (desktop) */
.has-children .child-menu {
    position: absolute;
    min-width: 220px;
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    background: #fff;
    border: 1px solid #e2e9ef;
    padding: 6px 0;
    border-radius: 10px;
    box-shadow: 0 10px 26px -8px rgba(0,27,65,.18);
    transition: opacity .25s ease, transform .25s ease;
}

.has-children:hover .child-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.child-menu .dropdown-item {
    padding: .55rem 1rem;
    font-size: .92rem;
}

.dropdown-divider {
    margin: .35rem 0;
}

/* Buttons refinement */
/*.button.btn_blue {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    padding: .6rem 1.05rem;
    border-radius: 8px;
    background: linear-gradient(135deg,#0077ff,#004cb3);
    color: #fff !important;
    box-shadow: 0 4px 10px -2px rgba(0,105,255,.4);
    transition: transform .2s ease, box-shadow .25s ease, background-position .35s ease;
    background-size: 140% 140%;
    background-position: 0% 50%;
}

    .button.btn_blue:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px -4px rgba(0,105,255,.45);
        background-position: 100% 50%;
    }

    .button.btn_blue:active {
        transform: translateY(0);
        box-shadow: 0 4px 10px -3px rgba(0,105,255,.4);
    }
*/
/* Mobile menu wrapper */
#mobileMenu {
    transition: height .25s ease, opacity .2s ease;
    overflow: hidden;
    height: 0;
    opacity: 0;
}

    #mobileMenu.open {
        height: auto;
        opacity: 1;
        overflow: visible;
    }

/* Caret styling */
.caret-icon {
    font-size: .75rem;
    margin-left: .4rem;
    transition: transform .25s ease;
}

.child-menu.open ~ .caret-icon,
.has-children.open > .parent-link .caret-icon {
    transform: rotate(180deg);
}

/* Focus accessibility */
/*.nav-link:focus, .dropdown-item:focus, .button.btn_blue:focus {
    outline: 2px solid #0050d8;
    outline-offset: 2px;
}
*/
/* Utility items */
.top_menu_right .contact-item i {
    color: #a9a9a9;
    margin-right: 4px;
}

.top_menu_right .lang-item {
    margin-left: .75rem;
}

@media (min-width: 992px) {
    #mobileMenu {
        height: auto !important;
        opacity: 1 !important;
        overflow: visible !important;
    }

    #menuToggleBtn {
        display: none;
    }

    .has-children > .parent-link {
        cursor: default;
    }

    .caret-icon {
        display: none;
    }
}

@media (max-width: 991.98px) {
    header.fixed {
        padding-top: .25rem;
    }

    .has-children .child-menu {
        position: static;
        opacity: 1 !important;
        transform: none !important;
        box-shadow: none;
        border: 0;
        display: none;
        padding: 2px 0 8px 0;
        margin: 4px 0 6px 0;
        border-left: 3px solid #0066ff;
        border-radius: 0;
    }

        .has-children .child-menu.open {
            display: block;
            animation: accordion .25s ease;
        }

    @keyframes accordion {
        from {
            opacity: 0;
            transform: translateY(-4px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .has-children > .parent-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .caret-icon {
        display: inline-block;
    }

    .main-nav-list > .nav-item > .nav-link::after {
        bottom: .3rem;
    }

    /*.button.btn_blue {
        padding: .55rem .9rem;
    }*/
}

.top_menu .welcome_mssg {
    /*padding: 13px 0;*/
    float: left;
}

.top_menu li {
    margin-top: 8px;
}

#back_to_top {
    height: 55px;
    width: 55px;
    background: #142e3a;
    border-radius: 3px;
    right: -100px;
    bottom: 15px;
    position: fixed;
    text-align: center;
    -webkit-transition: .5s;
    transition: .5s;
    z-index: 9;
}

/*.tp_m_title {
    color: #ffffff;
    line-height: 2em;
    font-family: 'Raleway', sans-serif;
    background-color: #0000005c;
    padding: 0.5em !important;
}

.tp-caption {
    background-color: #0000005c;
    padding: 0.2em !important;
}
*/

/*.tp-caption {
    background-color: #0000005c;
    color: rgb(138 224 255);
}

.tp_m_title {
    color: rgb(138 224 255);
    background-color: #0000005c;
    padding: 0.5em !important;
}
*/

.blog-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    min-height: 200px;
    max-height: 200px;
}

.loading_effect .object {
    width: 20px;
    height: 20px;
    background-color: #4c5c73;
    float: left;
    margin-right: 20px;
    margin-top: 65px;
    border-radius: 50% 50% 50% 50%;
}

#back_to_top:hover, #back_to_top:focus {
    background: #6d87ad;
    box-shadow: 0 5px 10px 0 rgba(35, 50, 56, 0.1);
}

/* image-gallery artık Bootstrap .row üzerinde; owl-carousel kullanımlarında da geçerli */
.row.image-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.image-gallery img {
    max-height: 150px;
    max-width: 300px;
    width: 100%;
    height: 100%;
}

.swiper-slide {
}

div#slider-larg img {
    width: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
}

/*.button.btn_blue {
    background: rgb(13 82 106);
    border-color: rgb(13 82 106);
    color: #fff;
}

    .button.btn_blue:hover,
    .button.btn_blue:active,
    .button.btn_blue:focus {
        background: rgb(0 123 255);
        border-color: rgb(0 51 255);
    }*/

#main_menu .navbar-nav .menu_button .button:hover, #main_menu .navbar-nav .menu_button .button:focus, #main_menu .navbar-nav .menu_button .button:active {
    background: #007bfa;
    border-color: #003cff;
    color: #fff !important;
}

#main_menu .navbar-nav .menu_button .button {
    margin-left: 10px;
}

.gallery_item_info h4 {
    font-size: 1.2em;
    color: rgb(13 82 106);
    padding: 3px;
}

#gallery_slider .item {
    margin: 0px;
    border-radius: 2px;
    background-color: transparent;
    box-shadow: 0px 1px 0.98px 0.02px rgba(0, 0, 0, 0.1);
}


/* ---------- login Form  ---------- */
#login_form_advanced {
    margin-top: 20px;
}

    #login_form_advanced .form-group {
        padding-bottom: 30px;
        position: relative;
    }

    #login_form_advanced .form-control {
        height: 52px;
        border-radius: 0px;
        border: 1px solid #dfdfdf;
        background-color: #fcfcfc;
        box-shadow: none;
    }

    #login_form_advanced textarea.form-control {
        height: 152px;
    }

    #login_form_advanced .form-control .btn-select {
        padding: 15px 12px;
    }

    #login_form_advanced .bootstrap-select.btn-group .dropdown-toggle .caret:before {
        top: -4px;
        right: 0;
    }

    #login_form_advanced .form_date:after {
        position: absolute;
        display: block;
        content: "\f073";
        top: 50%;
        right: 0;
        margin: -6px 8px 0 0;
        font-family: FontAwesome;
        line-height: 12px;
        color: #b3b3b3;
    }

    #login_form_advanced .form_date .datepicker {
        width: 100%;
        outline: none;
        padding: 6px 12px;
        margin: 0;
    }


/* ---------- register Form  ---------- */
#register_form_advanced {
    margin-top: 20px;
}

    #register_form_advanced .form-group {
        padding-bottom: 30px;
        position: relative;
    }

    #register_form_advanced .form-control {
        height: 52px;
        border-radius: 0px;
        border: 1px solid #dfdfdf;
        background-color: #fcfcfc;
        box-shadow: none;
    }

    #register_form_advanced textarea.form-control {
        height: 152px;
    }

    #register_form_advanced .form-control .btn-select {
        padding: 15px 12px;
    }

    #register_form_advanced .bootstrap-select.btn-group .dropdown-toggle .caret:before {
        top: -4px;
        right: 0;
    }

    #register_form_advanced .form_date:after {
        position: absolute;
        display: block;
        content: "\f073";
        top: 50%;
        right: 0;
        margin: -6px 8px 0 0;
        font-family: FontAwesome;
        line-height: 12px;
        color: #b3b3b3;
    }

    #register_form_advanced .form_date .datepicker {
        width: 100%;
        outline: none;
        padding: 6px 12px;
        margin: 0;
    }

.iti input {
    height: 100%;
    background: transparent !important;
    border: 0 !important;
}

.iti__search-input {
    font-size: 1em;
    height: 3em;
    padding: 1em;
}

/* ===== Account area (left sidebar) ===== */
.account-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
}

.account-aside {
    position: sticky;
    top: var(--account-sticky-top, 120px);
    align-self: start;
    max-height: calc(100vh - var(--account-sticky-top, 120px) - 24px);
    max-height: calc(100dvh - var(--account-sticky-top, 120px) - 24px);
    overflow: auto;
    background: #ffffff;
    border: 1px solid #e7eaf0;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,.05);
    padding: 14px 12px;
}

.account-main {
    min-width: 0;
}

.account-page-title {
    margin: 6px 0 16px 0;
}

/* Sidebar nav */
.account-nav__title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px 12px 10px;
    font-weight: 700;
    color: #0d526a;
    border-bottom: 1px solid #edf1f6;
    margin-bottom: 6px;
}

    .account-nav__title i {
        font-size: 20px;
    }

.account-nav__list {
    list-style: none;
    padding: 6px 0 4px 0;
    margin: 0;
}

.account-nav__item + .account-nav__item {
    margin-top: 4px;
}

.account-nav__link {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #13324a;
    padding: 10px 12px;
    border-radius: 8px;
    transition: background .2s ease, color .2s ease, transform .1s ease;
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

    .account-nav__link i {
        width: 20px;
        text-align: center;
        color: #6b7a90;
    }

    .account-nav__item.active .account-nav__link,
    .account-nav__link:hover {
        background: #e9f2ff;
        color: #0b4bc0;
    }

        .account-nav__item.active .account-nav__link i {
            color: #0b4bc0;
        }

.account-nav__divider {
    height: 1px;
    background: #edf1f6;
    margin: 10px 8px;
}

.account-nav__logout {
    color: #8b1a1a;
}

    .account-nav__logout:hover {
        background: #ffecec;
        color: #a31616;
    }

.account-aside-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 0 0;
    padding: 8px 12px;
    border-radius: 8px;
    background: #0d526a;
    color: #fff;
    border: 0;
}

/* ===== Account area – refined ===== */
.account-aside-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.account-user {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg,#f8fbff,#ffffff);
    border: 1px solid #e7eaf0;
    border-radius: 12px;
    padding: 12px;
}

.account-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0d526a;
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.account-user-info .account-user-name {
    color: #0d526a;
}

.account-user-info .account-user-mail {
    color: #6b7a90;
    display: block;
}

.account-group {
    border: 1px solid #e7eaf0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 14px rgba(0,0,0,.04);
}

.account-group__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    background: #f7fafc;
    border: 0;
    font-weight: 600;
    color: #13324a;
}

    .account-group__toggle i.fa {
        color: #6b7a90;
    }

    .account-group__toggle .caret {
        transition: transform .2s ease;
    }

        .account-group__toggle .caret.rot {
            transform: rotate(180deg);
        }

.account-nav__list {
    list-style: none;
    padding: 6px;
    margin: 0;
    display: none;
}

    .account-nav__list.open {
        display: block;
    }

.account-nav__item + .account-nav__item {
    margin-top: 4px;
}

.account-nav__link {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #13324a;
    transition: background .18s ease, color .18s ease, transform .08s ease;
    background: transparent;
    border: 0;
    cursor: pointer;
}

    .account-nav__link i.fa {
        width: 20px;
        text-align: center;
        color: #6b7a90;
    }

    .account-nav__item.active .account-nav__link,
    .account-nav__link:hover {
        background: #e9f2ff;
        color: #0b4bc0;
    }

        .account-nav__item.active .account-nav__link i.fa {
            color: #0b4bc0;
        }

.account-badge {
    margin-left: auto;
    background: #0b4bc0;
    color: #fff;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: .75rem;
    line-height: 1.2;
}

.account-separator {
    border: 0;
    height: 1px;
    background: #edf1f6;
    margin: 4px 0;
}

.account-nav__logout {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8b1a1a;
    padding: 10px 10px;
    border-radius: 10px;
    background: transparent;
    border: 0;
}

    .account-nav__logout:hover {
        background: #ffecec;
        color: #a31616;
    }

.account-main {
    min-width: 0;
}

.account-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 6px 0 16px 0;
}

.account-page-title {
    margin: 0;
    font-weight: 700;
    color: #13324a;
}

.account-card {
    background: #fff;
    border: 1px solid #e7eaf0;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,.05);
    padding: 16px;
}

/* mobile toggler */
.account-aside-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 0 0;
    padding: 8px 12px;
    border-radius: 8px;
    background: #0d526a;
    color: #fff;
    border: 0;
}

/* responsive */
@media (max-width: 991.98px) {
    .account-shell {
        grid-template-columns: 1fr;
    }

    .account-aside {
        position: static;
        max-height: none;
        display: none;
        margin-top: 10px;
    }

        .account-aside.open {
            display: block;
        }
}

.form-input-label {
    align-items: center;
    background-color: #e9ecef;
    display: flex;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    padding: 0.6rem 0.6rem;
    border-right: 1px solid #7d7c7c42;
    text-align: left;
    height: -webkit-fill-available;
}

.form-input-element {
    align-items: stretch;
    display: flex;
    line-height: 1.5;
    margin-bottom: 0;
    /*border-left: 1px solid #7d7c7c42;*/
}

.input-default {
    width: 100%;
    min-width: 300px;
    /*padding-top: 0.3rem;
    padding-bottom: 0.3rem;*/
}

.datepicker {
    z-index: 99999 !important;
}


.room-card {
    margin-bottom: 1.5rem;
}

    .room-card .card {
        border: 1px solid #eee;
        border-radius: 4px;
        overflow: hidden;
    }

.room-card-image-wrapper {
    position: relative;
    flex: 0 0 260px;
    max-width: 260px;
}

.room-card-image {
    width: 100%;
    height: 100%;
    max-height: 200px;
    object-fit: cover;
    display: block;
}

.room-gallery-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 2;
    font-size: 0.8rem;
    padding: 4px 8px;
}

/* Modal gallery */
.room-gallery-modal .modal-body {
    padding: 0.75rem;
}

.room-gallery-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.room-gallery-image-container {
    max-width: 100%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#roomGalleryImage {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.room-gallery-nav {
    border: none;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    width: 32px;
    height: 48px;
    border-radius: 4px;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-gallery-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
}

.room-gallery-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.7;
}

    .room-gallery-thumb.active {
        border: 2px solid #007bff;
        opacity: 1;
    }

/* Mobil */
/*@media (max-width: 767.98px) {
    .room-card .card {
        flex-direction: column;
    }

    .room-card-image-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .room-gallery-wrapper {
        gap: 0.25rem;
    }

    .room-gallery-nav {
        width: 28px;
        height: 40px;
        font-size: 1.25rem;
    }
}*/

/* Oda galerisi modal'ını dikeyde ortala ve mobilde tam ekran kullan */
/*.room-gallery-modal {
    max-height: 100vh;
    display: flex;
    flex-direction: column;
}

    .room-gallery-modal .modal-body {
        flex: 1 1 auto;
        overflow-y: auto;
    }*/

/* Görsel alanını her ekranda ortada tut */
/*.room-gallery-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.room-gallery-image-container {
    max-width: 100%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#roomGalleryImage {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}*/

/* Navigation butonları sabit yükseklikte kalsın */
/*.room-gallery-nav {
    border: none;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    width: 32px;
    height: 48px;
    border-radius: 4px;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}*/

/* Thumbnail satırı yatay kaydırılabilir olsun */
/*.room-gallery-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
}

.room-gallery-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.7;
}

    .room-gallery-thumb.active {
        border: 2px solid #007bff;
        opacity: 1;
    }*/

/* Küçük ekranlar için tam ekran görünüm ve daha iyi hizalama */
/*@media (max-width: 767.98px) {
    #roomGalleryModal .modal-dialog {
        margin: 0;
        max-width: 100%;
        height: 100%;
    }

    #roomGalleryModal .modal-content {
        height: 100%;
        border-radius: 0;
    }

    .room-gallery-modal .modal-body {
        padding: 0.5rem;
    }

    .room-gallery-wrapper {
        gap: 0.25rem;
    }

    .room-gallery-nav {
        width: 28px;
        height: 40px;
        font-size: 1.25rem;
    }

    .room-gallery-image-container,
    #roomGalleryImage {
        max-height: 60vh;
    }
}*/

/* ============================================
   MOBİL MENÜ DROPDOWN STİLLERİ
   ============================================ */

/* Mobilde child-menu varsayılan olarak gizli */
@media (max-width: 991.98px) {
    /* Mobile menu wrapper gizli başlar, open ile görünür */
    .mobile-menu-wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        max-height: 80vh;
        overflow-y: auto;
        z-index: 1000;
    }

    .mobile-menu-wrapper.open {
        display: block;
    }

    /* Child menu (dropdown) varsayılan gizli */
    .mobile-menu-wrapper .child-menu {
        display: none !important;
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        padding-left: 1rem;
        background: #f8f9fa;
        margin: 0;
    }

    /* Child menu açık durumda */
    .mobile-menu-wrapper .child-menu.open {
        display: block !important;
    }

    /* Alt menü öğeleri */
    .mobile-menu-wrapper .child-menu .dropdown-item {
        padding: 10px 15px;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu-wrapper .child-menu .dropdown-item:last-child {
        border-bottom: none;
    }

    /* Parent link stili */
    .mobile-menu-wrapper .parent-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    /* Caret icon (ok işareti) */
    .mobile-menu-wrapper .caret-icon {
        font-size: 0.8rem;
        transition: transform 0.2s ease;
    }

    /* Açık durumda has-children için görsel ipucu */
    .mobile-menu-wrapper .has-children.open > .parent-link {
        background-color: #f0f0f0;
    }

    /* Nav listesi düzeni */
    .mobile-menu-wrapper .main-nav-list {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-wrapper .nav-item {
        border-bottom: 1px solid #eee;
    }

    .mobile-menu-wrapper .nav-link {
        padding: 12px 15px;
        display: block;
    }

    /* Bootstrap dropdown-toggle okunu gizle (kendi caret-icon kullanıyoruz) */
    .mobile-menu-wrapper .dropdown-toggle::after {
        display: none;
    }
}

/* Masaüstünde normal Bootstrap davranışı */
@media (min-width: 992px) {
    .mobile-menu-wrapper {
        display: block;
    }

    /* Caret icon masaüstünde FA ikonu yerine gizlenebilir veya görünür bırakılabilir */
    .mobile-menu-wrapper .caret-icon {
        display: none;
    }

    /* Masaüstünde Bootstrap dropdown normal çalışsın */
    .mobile-menu-wrapper .dropdown-toggle::after {
        display: inline-block;
    }
}

/* ------------------------------------------------------------------
   Menu modulu tema varyantlari
   Modulun "menuTheme" ayarindan gelir: classic | bordered | pill | minimal
   Yalnizca gorunumu degistirir; menu yapisi, baglantilar ve davranis aynidir.
   Bilinmeyen bir deger gelirse view classic'e duser.
   ------------------------------------------------------------------ */
.menu-module .nav {
    gap: .25rem;
    align-items: center;
}

.menu-module .nav-link {
    transition: color .15s ease, background-color .15s ease, border-color .15s ease;
}

/* classic: mevcut gorunum; alt cizgi ile vurgulanir */
.menu-theme-classic .nav-link {
    position: relative;
    padding: .5rem .85rem;
    font-weight: 500;
}

.menu-theme-classic .nav-link::after {
    content: "";
    position: absolute;
    left: .85rem;
    right: .85rem;
    bottom: .25rem;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease;
}

.menu-theme-classic .nav-link:hover::after,
.menu-theme-classic .nav-link.active::after {
    transform: scaleX(1);
}

/* bordered: her oge cerceveli, kurumsal ve net */
.menu-theme-bordered .nav-link {
    padding: .45rem .9rem;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: .375rem;
    font-weight: 500;
}

.menu-theme-bordered .nav-link:hover,
.menu-theme-bordered .nav-link.active {
    border-color: currentColor;
    background: rgba(0, 0, 0, .03);
}

/* pill: yuvarlak dolgulu, daha canli */
.menu-theme-pill .nav-link {
    padding: .45rem 1.05rem;
    border-radius: 999px;
    font-weight: 500;
}

.menu-theme-pill .nav-link:hover {
    background: rgba(0, 0, 0, .05);
}

.menu-theme-pill .nav-link.active {
    background: currentColor;
    color: #fff;
}

/* minimal: cercevesiz, aralikli, sade tipografi */
.menu-theme-minimal .nav {
    gap: .75rem;
}

.menu-theme-minimal .nav-link {
    padding: .5rem .25rem;
    font-weight: 400;
    letter-spacing: .01em;
    opacity: .78;
}

.menu-theme-minimal .nav-link:hover,
.menu-theme-minimal .nav-link.active {
    opacity: 1;
}

/* Dikey yerlesimde tema bosluklari daralir */
.menu-module.nav-vertical .nav {
    gap: .15rem;
}

@media (max-width: 767.98px) {
    .menu-module .nav {
        gap: .1rem;
    }

    .menu-theme-bordered .nav-link,
    .menu-theme-pill .nav-link {
        padding: .4rem .7rem;
    }
}

/* ============================================================
   Hero / Banner modulu
   Yukseklik ve overlay degerleri modul ayarindan CSS degiskeni
   olarak gelir; view tarafinda bicimi dogrulanir.
   ============================================================ */
.hero-module {
    position: relative;
    display: flex;
    align-items: center;
    min-height: var(--hero-height, 500px);
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: var(--hero-image, none);
}

/* Gorsel veya video verilmemisse bos beyaz yerine tasarlanmis bir zemin.
   Yeni acilan siteler icerik girilmeden once de dolu gorunur. */
.hero-module--gradient {
    background-color: #16243c;
    background-image:
        radial-gradient(circle at 18% 22%, rgba(96, 165, 250, .30), transparent 55%),
        radial-gradient(circle at 82% 78%, rgba(56, 189, 248, .22), transparent 52%),
        linear-gradient(135deg, #16243c 0%, #1f3a5f 52%, #2a5580 100%);
}

.hero-module__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-module__overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay, rgba(0, 0, 0, .5));
    z-index: 1;
}

/* Medyasiz degrade zeminde overlay'i hafifletiriz; aksi halde
   ozenle kurulan renk gecisi gri bir perdenin altinda kayboluyor. */
.hero-module--gradient .hero-module__overlay {
    opacity: .35;
}

.hero-module__inner {
    position: relative;
    z-index: 2;
    padding-top: 3rem;
    padding-bottom: 3rem;
    width: 100%;
}

.hero-module__content {
    max-width: 46rem;
    color: #fff;
}

.hero-module--center .hero-module__content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-module--right .hero-module__content {
    margin-left: auto;
    text-align: right;
}

.hero-module--left .hero-module__content {
    text-align: left;
}

.hero-module__title {
    font-size: clamp(1.9rem, 4.2vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
    text-wrap: balance;
}

.hero-module__subtitle {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    line-height: 1.6;
    opacity: .92;
    margin-bottom: 1.75rem;
}

.hero-module__cta {
    padding: .7rem 1.9rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 .5rem 1.4rem rgba(0, 0, 0, .25);
}

@media (max-width: 767.98px) {
    .hero-module {
        /* Mobilde sabit yukseklik cok uzun bir bos alan biraktigi icin sinirlanir */
        min-height: min(var(--hero-height, 500px), 22rem);
    }

    .hero-module__content {
        text-align: center;
    }
}

/* ============================================================
   Blog listesi ve yazi kartlari
   ============================================================ */
.web-blog-list__heading {
    font-weight: 700;
    letter-spacing: -.015em;
    margin-bottom: 1.75rem;
}

.web-blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: .85rem;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.web-blog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 23, 42, .14);
    box-shadow: 0 .9rem 1.8rem rgba(15, 23, 42, .10);
}

/* Sabit oran: gorselli ve gorselsiz kartlar ayni hizada durur */
.web-blog-card__media {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    background: #eef2f7;
    overflow: hidden;
}

.web-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.web-blog-card:hover .web-blog-card__media img {
    transform: scale(1.04);
}

.web-blog-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(135deg, #e7edf6 0%, #d9e3f0 100%);
    color: rgba(30, 58, 95, .30);
    font-size: 2.4rem;
}

.web-blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 1.15rem 1.25rem 1.35rem;
}

.web-blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    font-size: .8125rem;
    color: #64748b;
    margin-bottom: .55rem;
}

.web-blog-card__category {
    display: inline-block;
    padding: .12rem .6rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, .10);
    color: #1d4ed8;
    font-weight: 600;
    font-size: .75rem;
}

.web-blog-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: .5rem;
}

.web-blog-card__title a {
    color: inherit;
    text-decoration: none;
}

.web-blog-card__title a:hover {
    text-decoration: underline;
}

/* Ozet uc satirda kesilir; farkli uzunluktaki yazilar izgarayi bozmaz */
.web-blog-card__summary {
    color: #475569;
    font-size: .9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.web-blog-card__link {
    margin-top: auto;
    align-self: flex-start;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
}

.web-blog-card__link::after {
    content: " \2192";
    transition: margin-left .15s ease;
    display: inline-block;
}

.web-blog-card__link:hover::after {
    margin-left: .2rem;
}

/* ============================================================
   Blog yazi detayi
   ============================================================ */
.web-blog-article {
    max-width: 46rem;
    margin: 0 auto;
}

.web-blog-article__header {
    margin-bottom: 1.5rem;
}

.web-blog-article__title {
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: .75rem;
    text-wrap: balance;
}

.web-blog-article__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .55rem;
    font-size: .875rem;
    color: #64748b;
    margin-bottom: 0;
}

.web-blog-article__media {
    margin: 0 0 1.75rem;
    border-radius: .85rem;
    overflow: hidden;
}

.web-blog-article__media img {
    width: 100%;
    height: auto;
    display: block;
}

/* Okuma konforu: govde metni ve ic basliklar icin olcek */
.web-blog-detail__content {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #1f2937;
}

.web-blog-detail__content > * + * {
    margin-top: 1rem;
}

.web-blog-detail__content h2,
.web-blog-detail__content h3 {
    font-weight: 650;
    line-height: 1.3;
    margin-top: 2rem;
}

.web-blog-detail__content h2 {
    font-size: 1.5rem;
}

.web-blog-detail__content h3 {
    font-size: 1.2rem;
}

.web-blog-detail__content img {
    max-width: 100%;
    height: auto;
    border-radius: .6rem;
}

.web-blog-detail__content ul,
.web-blog-detail__content ol {
    padding-left: 1.35rem;
}

.web-blog-detail__content blockquote {
    border-left: 3px solid rgba(37, 99, 235, .35);
    padding-left: 1rem;
    color: #475569;
    font-style: italic;
}

/* ============================================================
   Hesap / profil formu
   Alan satirlarini editor sablonlari uretir (.form-row,
   .form-input-label, .form-input-element). Bu sinuflar public
   sitede stilsizdi; etiketler gri kutu, alanlar hizasiz cikiyordu.
   Kurallar .account-shell altina kapsanir: ayni sablonlari kullanan
   diger yuzeyler etkilenmez.
   ============================================================ */

/* Kenar cubugu render edilmeyen sayfalarda 260px'lik sutun bosa
   ayriliyor ve kart sağa kayıp daraliyordu. */
.account-shell:not(:has(.account-aside)) {
    grid-template-columns: 1fr;
    max-width: 46rem;
    margin-inline: auto;
}

.account-page-title {
    font-weight: 700;
    letter-spacing: -.02em;
}

.account-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: .85rem;
    padding: 1.5rem;
    box-shadow: 0 .35rem 1rem rgba(15, 23, 42, .05);
}

.account-shell .form-row,
.account-shell .profile-list-item {
    display: block;
    margin-bottom: 0;
}

.account-shell .form-input-label {
    display: block;
    margin-bottom: .35rem;
    background: none;
    padding: 0;
}

.account-shell .form-input-label label,
.account-shell .form-label {
    font-size: .8125rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0;
}

.account-shell .form-input,
.account-shell .form-input-element {
    display: block;
    width: 100%;
    padding: 0;
}

.account-shell .form-input-element input:not([type="checkbox"]):not([type="radio"]),
.account-shell .form-input-element select,
.account-shell .form-input-element textarea {
    width: 100%;
    min-height: 2.6rem;
    padding: .5rem .75rem;
    border: 1px solid rgba(15, 23, 42, .18);
    border-radius: .5rem;
    background: #fff;
    font-size: .95rem;
    line-height: 1.4;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.account-shell .form-input-element textarea {
    min-height: 7rem;
    resize: vertical;
}

.account-shell .form-input-element input:focus,
.account-shell .form-input-element select:focus,
.account-shell .form-input-element textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.account-shell .form-input-element input[disabled],
.account-shell .form-input-element input[readonly] {
    background: #f1f5f9;
    color: #64748b;
}

/* Telefon alani: intl-tel-input kendi sarmalayicisini kurar,
   genislik onun uzerinden verilmezse alan daralir. */
.account-shell .iti {
    width: 100%;
}

.account-shell .form-input-element .iti input {
    width: 100%;
}

.account-shell .button,
.account-shell button[type="submit"] {
    padding: .6rem 1.6rem;
    border-radius: .5rem;
    font-weight: 600;
    border: 0;
    background: #2563eb;
    color: #fff;
    cursor: pointer;
    transition: background .15s ease;
}

.account-shell .button:hover,
.account-shell button[type="submit"]:hover {
    background: #1d4ed8;
}

@media (max-width: 767.98px) {
    .account-card {
        padding: 1.1rem;
    }
}
/* ============================================================
   Sosyal medya modulu
   Ikonlar bitisik cikiyordu: markup'ta `gap-3` vardi ama bu sitelerde
   Bootstrap'in gap yardimcilari yok, hesaplanan deger `normal` kaliyordu.
   Aralik artik burada tanimlanir, yardimci sinifa guvenilmez.
   ============================================================ */

.social-links-module {
    --social-icon-size: 2.5rem;
}

.social-links-module .social-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.social-icons__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: var(--social-icon-size);
    min-height: var(--social-icon-size);
    border-radius: 50%;
    text-decoration: none;
    line-height: 1;
    transition: background-color .15s ease, color .15s ease, transform .15s ease;
}

/* Ikon boyutu artik baglantinin kendisinden gelir; fa-2x gibi siniflar
   kutuyu tasirdigi icin ikon olceklemesi tek yerden yonetilir. */
.social-icons__link > i {
    font-size: 1.15rem;
}

.social-links-module .social-icons--large {
    --social-icon-size: 3rem;
}

.social-links-module .social-icons--large .social-icons__link > i {
    font-size: 1.4rem;
}

.social-links-module .social-icons--small {
    --social-icon-size: 2rem;
}

.social-links-module .social-icons--small .social-icons__link > i {
    font-size: 0.95rem;
}

/* Sade (ikon) varyanti: cerceve yok, yalniz zemin vurgusu. */
.social-icons__link--plain {
    color: inherit;
    opacity: .75;
}

.social-icons__link--plain:hover,
.social-icons__link--plain:focus-visible {
    opacity: 1;
    background: rgba(148, 163, 184, .18);
    transform: translateY(-1px);
}

.social-icons__link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* Buton varyantlarinda yuvarlak kutu zorlanmaz; Bootstrap butonu kendi
   olcusunu korur, yalnizca odak halkasi ve gecis eklenir. */
.social-icons__link.btn {
    border-radius: .375rem;
    min-width: 0;
    min-height: 0;
}

.social-icons__link.btn:hover {
    transform: translateY(-1px);
}
/* Footer yasal belge baglantilari (Copyright modulu).
   Liste KandoPrivacy'de yayinlanmis belgelerden turer; sabit sayida degildir. */
.copyright-module__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: inherit;
    align-items: center;
    gap: 0.25rem 0.9rem;
}

.copyright-module.text-center .copyright-module__legal {
    justify-content: center;
}

.copyright-module.text-end .copyright-module__legal {
    justify-content: flex-end;
}

.copyright-module__legal a {
    text-decoration: none;
    opacity: .85;
}

.copyright-module__legal a:hover,
.copyright-module__legal a:focus-visible {
    opacity: 1;
    text-decoration: underline;
}
/* Kabuk basligi, sayfanin ana basligini bir modul sagladiginda <h1> yerine
   .page_title-heading olarak basilir (iki <h1> olmasin diye). Gorunum degismemeli:
   tarayicinin h1 tipografisi burada tekrar edilir. Renk .page_title'dan miras alinir. */
.page_title .page_title-heading {
    margin: 0 0 .5rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .page_title .page_title-heading {
        font-size: 2.5rem;
    }
}

/* ============================================================
   Ust bant (TopBar) + baslik kabugu
   ------------------------------------------------------------
   NEDEN VAR: kabuk (_WebShellRegionContent) jenerik satir basar ve
   "baslik" diye bir bolge tanimi yoktur. Bu yuzden logo + menu satiri
   icin dikey bosluk, hizalama ve yapiskanlik verecek hicbir kural
   yoktu; logo ile menu ic ice gorunuyordu.
   Kurallar satir sarmalayicisina degil, ICINDEKI module gore secilir
   (:has), boylece sayfa duzenine veya layout kaydina dokunmak
   gerekmez ve hicbir mevcut sayfa etkilenmez.
   ============================================================ */

.topbar-module {
    font-size: .8125rem;
    line-height: 1.4;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.topbar-module__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .35rem 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topbar-module--left .topbar-module__list { justify-content: flex-start; }
.topbar-module--center .topbar-module__list { justify-content: center; }
.topbar-module--right .topbar-module__list { justify-content: flex-end; }
.topbar-module--space-between .topbar-module__list { justify-content: space-between; }

.topbar-module__item {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
}

.topbar-module__icon { opacity: .7; }

.topbar-module__link {
    color: inherit;
    text-decoration: none;
}

.topbar-module__link:hover,
.topbar-module__link:focus {
    text-decoration: underline;
}

/* Renk varyantlari */
.topbar-module--light { background: #f6f8fb; color: #4a5568; }
.topbar-module--dark { background: #0b1f3a; color: rgba(255, 255, 255, .82); border-bottom-color: rgba(255, 255, 255, .12); }
.topbar-module--brand { background: var(--site-primary, #0b1f3a); color: #fff; border-bottom-color: rgba(255, 255, 255, .16); }

@media (max-width: 767.98px) {
    .topbar-module--desktop-only { display: none; }

    .topbar-module__list {
        justify-content: center;
        gap: .25rem 1rem;
    }
}

/* ------------------------------------------------------------
   Baslik bolgesi
   ------------------------------------------------------------
   ONCEKI YAKLASIM VE NEDEN BIRAKILDI: kurallar once
   ".web-shell-module-grid:has(> .module-wrapper > .menu-module)"
   ile yaziliyordu, yani "menuyu iceren satir". Sayfalar bolgesiz
   calistigi (her modul tek content-region'da oldugu) icin bu secici
   SAYFANIN TAMAMINI esledi: yapiskanlik 2007 piksellik bir bloga
   uygulandi ve sayfa kaydirilinca icerik gorunmez oldu.
   Artik sayfalar header/content/footer bolgeleri olan bir layout
   kullaniyor; kurallar bolge kancasina baglandi. Bolge sinirini
   kabuk cizer, CSS tahmin etmez.
   ------------------------------------------------------------ */

/* Ust bant bolgenin tam genisligini kullanir; satir bosluklari
   bandin kendi dolgusunu bozmasin diye sifirlanir. */
.region-header-region .web-shell-module-grid:has(> .module-wrapper > .topbar-module) {
    --bs-gutter-y: 0;
    margin-top: 0;
}

/* Logo ve menuyu ayni satirda dikey ortalar, nefes alanini verir. */
.region-header-region .web-shell-module-grid:has(> .module-wrapper > .menu-module) {
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
}

.region-header-region .menu-module .nav {
    justify-content: flex-end;
}

@media (max-width: 991.98px) {
    .region-header-region .menu-module .nav {
        justify-content: flex-start;
    }
}

/* ------------------------------------------------------------
   Yapiskan baslik
   Menu modulunde "Sayfa Kaydirilinca Sabitle" acikken BASLIK
   BOLGESININ TAMAMI yapisir: ust bant, logo ve menu birlikte kalir.
   ------------------------------------------------------------ */
/* Yapiskanlik yalniz genis ekranlarda: dar ekranda baslik tek satira sigmaz
   (ust bant iki satira sarar, logo ve menu alt alta iner) ve olculen yukseklik
   224px olur -- 812px'lik bir telefonda ekranin %28'i. Standart mobil baslik
   56-64px oldugundan bu kalici bir daralma yaratir. Mobilde baslik normal
   sekilde yukari kayar. */
@media (min-width: 992px) {
    .region-header-region:has(.menu-module[data-menu-sticky="true"]) {
        position: sticky;
        top: 0;
        z-index: 1030;
        background: #fff;
        box-shadow: 0 1px 0 rgba(0, 0, 0, .06), 0 6px 18px rgba(11, 31, 58, .06);
    }
}

/* Yazdirmada yapiskanlik icerigi tekrarlar; kapatilir. */
@media print {
    .region-header-region:has(.menu-module[data-menu-sticky="true"]) {
        position: static;
        box-shadow: none;
    }
}
