/* KVKK Kartları */
.kvkk-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 0 1rem 0;
}
.kvkk-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
    padding: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
    min-width: 240px;
    max-width: 100%;
    text-align: left;
    backdrop-filter: blur(4px);
}
.kvkk-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.25rem;
    box-shadow: 0 1px 10px 0 rgba(0,0,0,0.10);
    backdrop-filter: blur(4px);
}
.kvkk-card-title {
    flex: 1;
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.kvkk-card:hover, .kvkk-card:focus {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-color: rgba(255,255,255,0.45);
    box-shadow: 0 8px 22px 0 rgba(0,0,0,0.15);
    text-decoration: none;
}
.kvkk-card:hover .kvkk-card-title, .kvkk-card:focus .kvkk-card-title {
    color: #fff;
}
.kvkk-card:hover .kvkk-card-icon, .kvkk-card:focus .kvkk-card-icon {
    background: rgba(255,255,255,0.3);
    color: #fff;
}
@media (max-width: 600px) {
    .kvkk-card {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }
    .kvkk-card-icon {
        width: 1.7rem;
        height: 1.7rem;
        font-size: 1rem;
    }
}
/* Container */
#floating-contact {
    position: fixed;
    left: 20px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

/* Her bir buton */
#floating-contact .fc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 50px;
    padding: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15), 0 4px 8px rgba(0, 0, 0, .1);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    min-width: 160px;
    width: auto;
    height: 52px;
    justify-content: flex-start;
    align-items: center;
}

/* Işık efekti */
#floating-contact .fc-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

#floating-contact .fc-item:hover::before {
    left: 100%;
}

/* Hover efektleri */
#floating-contact .fc-item:hover {
    transform: translateX(8px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .2), 0 6px 12px rgba(0, 0, 0, .15);
}

#floating-contact .fc-item:active {
    transform: translateX(8px) scale(0.98);
}

/* İkonlar */
#floating-contact .fc-item i {
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

#floating-contact .fc-item .fc-label {
    line-height: 1;
    white-space: nowrap;
}

#floating-contact .fc-item:hover i {
    transform: scale(1.15) rotate(5deg);
}

/* WhatsApp Butonu */
#floating-contact .fc-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

#floating-contact .fc-whatsapp:hover {
    background: linear-gradient(135deg, #1ebe57 0%, #128c4b 100%);
    border-color: rgba(255, 255, 255, 0.4);
}

#floating-contact .fc-whatsapp i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Doktor Takvimi Butonu */
#floating-contact .fc-doctor,
#floating-contact .fc-doktor,
#floating-contact .fc-doctor-calendar,
#floating-contact .fc-doktor-takvimi {
    background: linear-gradient(135deg, #eb4e86 0%, #c9407a 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

#floating-contact .fc-doctor:hover,
#floating-contact .fc-doktor:hover,
#floating-contact .fc-doctor-calendar:hover,
#floating-contact .fc-doktor-takvimi:hover {
    background: linear-gradient(135deg, #c9407a 0%, #a93062 100%);
    border-color: rgba(255, 255, 255, 0.4);
}

#floating-contact .fc-doctor i,
#floating-contact .fc-doktor i,
#floating-contact .fc-doctor-calendar i,
#floating-contact .fc-doktor-takvimi i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Telefon Butonu */
#floating-contact .fc-phone {
    background: linear-gradient(135deg, #1c4c9e 0%, #1d5ab5 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

#floating-contact .fc-phone:hover {
    background: linear-gradient(135deg, #1d5ab5 0%, #2a6fd6 100%);
    border-color: rgba(255, 255, 255, 0.4);
}

#floating-contact .fc-phone i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* WhatsApp Pulse Animasyonu */
@keyframes pulse-whatsapp {
    
    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, .3), 0 4px 8px rgba(0, 0, 0, .1);
    }
    
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, .5), 0 4px 12px rgba(37, 211, 102, .2);
    }
}

/* Mobil Responsive - Masa Üstü Tasarımıyla Aynı */
@media(max-width: 768px) {
    #floating-contact {
        gap: 12px;
        bottom: 20px;
        /* Dikey yerleşimi koru, yön değiştirme */
    }
    
    #floating-contact .fc-item {
        padding: 14px;
        font-size: 15px;
        gap: 12px;
    }
    
    #floating-contact .fc-item:hover {
        transform: translateX(8px) scale(1.05);
    }
    
    #floating-contact .fc-item i {
        font-size: 20px;
    }
}

@media(max-width: 480px) {
    #floating-contact {
        gap: 12px;
        bottom: 20px;
        /* Dikey yerleşim devam ediyor */
    }
    
    #floating-contact .fc-item {
        padding: 14px;
        font-size: 15px;
        gap: 12px;
    }
    
    #floating-contact .fc-item i {
        font-size: 20px;
    }
}

/* Giriş Animasyonu */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#floating-contact .fc-item {
    animation: slideInLeft 0.6s ease-out forwards;
}

#floating-contact .fc-item:nth-child(1) {
    animation-delay: 0.1s;
}

#floating-contact .fc-item:nth-child(2) {
    animation-delay: 0.2s;
}

#floating-contact .fc-item:nth-child(3) {
    animation-delay: 0.3s;
}
.sponsors_bg_ayar {
    min-height: 718px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
}
.programme_bg_ayar {
    min-height: 718px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer_buton {
    color: white;
    padding: 0.2rem 0rem;
}
.footer_buton:hover,
.footer_buton:focus {
    color: white;
    padding: 0.2rem 0rem;
}
.footer_buton:hover {
    color: white;
}
.banner_img {
    width: 40px;
}
::placeholder {
    color: black !important;
}
.duyuru_hover:hover {
    box-shadow: 0px 2px 8px rgb(0 0 0 / 20%);
    cursor: pointer;
}
.input_hover:hover {
    box-shadow: 0px 2px 8px rgb(0 0 0 / 20%);
    cursor: pointer;
}
.menu_div {
    padding-top: 120px;
}
.title_border {
    width: 120px;
    border: 2px solid #1c4c9e;
}
.h_f_bg {
    background-color: rgb(28 76 158 / 90%) !important;
}
/* wawe */
.w_header {
    position: relative;
    text-align: center;
    background: linear-gradient(60deg, transparent 0%, transparent 100%);
    color: white;
}
.w_logo {
    width: 0px;
    fill: white;
    padding-right: 15px;
    display: inline-block;
    vertical-align: middle;
}
.w_inner_header {
    height: 20px;
    width: 100%;
}
.w_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.w_waves {
    position: relative;
    width: 100%;
    height: 20px;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;
}
.w_parallax > use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.w_parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.w_parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.w_parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.w_parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}
@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}
@media (max-width: 768px) {
    .w_waves {
        height: 40px;
        min-height: 40px;
    }
}
/* wawe */
.footer-logo {
    width: 340px;
    max-width: 100%;
}
.main_btn {
    background-color: #1c4c9e;
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 2rem;
    border: 0.2rem solid #1c4c9e;
    margin-bottom: 0.8rem;
}
.main_btn:hover,
.main_btn:focus,
.main_btn:visited {
    background-color: white;
    color: #1c4c9e;
    padding: 0.8rem 1rem;
    border-radius: 2rem;
    border: 0.2rem solid #1c4c9e;
    margin-bottom: 0.8rem;
}
.ana_sayfa_projer_bg_color {
    background-color: rgb(8 8 8 / 80%);
}
.ana_sayfa_ikon {
    width: 60px;
}
.bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
a {
    text-decoration: none !important;
}
.iletisim_btn {
    color: #1d2631;
}
.iletisim_btn:hover {
    color: #1c4c9e;
}
/* i_b_b */
.i_b_b {
    border: 0.1rem solid white;
    color: white;
}
.i_b_b:hover {
    border: 0.1rem solid #1c4c9e;
    color: white;
}
/* i_b_b */
/* foms */
/* ilt_radio */
.ilt_radio {
    border: 1px solid #1d2631;
    color: black;
    min-height: 30px;
    min-width: 30px;
}
.ilt_radio:hover,
.ilt_radio:focus {
    color: #1c4c9e;
    min-height: 30px;
    min-width: 30px;
}
/* ilt_radio */
/* ilt_checkbox */
.ilt_checkbox {
    border: 1px solid #1d2631;
    color: black;
    min-height: 30px;
    min-width: 30px;
}
.ilt_checkbox:hover,
.ilt_checkbox:focus {
    color: #1c4c9e;
    min-height: 30px;
    min-width: 30px;
}
/* ilt_checkbox */
/* ilt_inpt */
.ilt_inpt {
    border: 1px solid #1d2631;
    color: black;
    min-height: 50px;
}
.ilt_inpt:hover,
.ilt_inpt:focus {
    color: #1c4c9e;
    min-height: 50px;
}
/* ilt_inpt */
/* ilt_btn */
.ilt_btn,
.ilt_btn:visited {
    background-color: white;
    border: 1px solid #1d2631;
    color: #1d2631;
    min-height: 50px;
}
.ilt_btn:hover,
.ilt_btn:focus,
.ilt_btn:active,
.ilt_btn.aktif {
    background-color: #1d2631;
    color: white;
    min-height: 50px;
}
/* ilt_btn */
/* btn_link */
.btn_link:visited,
.btn_link {
    color: #0099e6 !important;
}
.btn_link:hover,
.btn_link:focus,
.btn_link:active {
    color: #1c4c9e !important;
}
/* btn_link */
input[type="checkbox"] {
    width: 30px;
    height: 30px;
}
/* forms */
/* kutu_3_hover */
.kutu_3_hover {
    border: 1px solid #dee2e6;
}
.kutu_3_hover:hover {
    border: 1px solid #dee2e6;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
}
/* kutu_3_hover */
.d_d_h {
    min-height: 54px;
}
/* mobil menü tam ekran*/
.alt_menu_btn_div {
    transition: 0.5s;
    width: 100%;
    background: transparent;
    border-radius: 10px;
    padding: 4px 0;
    margin: 4px 0;
}
.alt_menu_btn_div a {
    font-size: 13px;
    padding: 10px 16px 10px 30px !important;
    font-weight: 500;
    color: #555 !important;
    border-radius: 8px;
    margin: 0 !important;
}
.bg_1 {
    background-color: #1d2631 !important;
}
.bg_2 {
    background-color: #f5f5f5 !important;
}
.bg_3 {
    background-color: rgb(255 255 255 / 40%);
}
/* Mobil menü backdrop */
.mobil_menu_backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobil_menu_backdrop.open {
    opacity: 1;
    visibility: visible;
}

.mobil_menu_overlay {
    height: 100%;
    width: 300px;
    max-width: 85vw;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: -300px;
    background-color: #ffffff;
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
    overflow-x: hidden;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    -webkit-overflow-scrolling: touch;
}
.mobil_menu_overlay.open {
    right: 0;
}
.mobil_menu_overlay_content {
    position: relative;
    top: 0;
    width: 100%;
    text-align: left;
    margin-top: 20px;
    padding: 20px 24px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    min-height: calc(100vh - 20px);
}
/* Sadece menü linkleri */
.mobil_menu_overlay a.mobil_menu_link {
    padding: 14px 12px;
    margin: 2px 0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #1d2631;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: none;
    border-radius: 10px;
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
}
.mobil_menu_overlay a.mobil_menu_link.active {
    color: #1c4c9e;
    background: #f0f4ff;
}
.mobil_menu_overlay a.mobil_menu_link:hover,
.mobil_menu_overlay a.mobil_menu_link:focus {
    color: #1c4c9e;
    background: #f0f4ff;
    padding-left: 16px;
}
/* Overlay içindeki genel linkler */
.mobil_menu_overlay a {
    text-decoration: none;
    transition: all 0.25s ease;
}
.mobil_menu_overlay .mobil_menu_closebtn {
    font-size: 16px;
    color: #1d2631;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #f5f5f5;
    padding: 0;
    margin: 0;
    line-height: 1;
    transition: all 0.3s;
    flex-shrink: 0;
}
/* Mobil menü sosyal ikonlar - overlay a reset */
.mobil_menu_overlay .mobil_social_ico {
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    font-size: 1rem;
    justify-content: center;
}
.mobil_menu {
    position: absolute;
    top: 40%;
    left: 50%;
}
#drop_down_1 {
    overflow-y: hidden;
    transition: 0.5s;
}
/* mobil menü tam ekran */
.bg_gri {
    background-color: #f5f5f5;
}
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: white;
}
.dropdown-menu {
    min-width: 4rem;
}
.b_b_b_border {
    border-bottom: 1px solid rgb(255 255 255 / 30%);
}
.bg_grey {
    background-color: #dedede;
}
.bg_ayar {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/* kutu_2_hover */
.kutu_2_hover {
    /* box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5); */
    /* background-color: rgba(18, 62, 126, 0.3); */
    color: white;
}
.kutu_2_hover:hover {
    /* box-shadow: 0px 0px 10px 0px rgba(29, 38, 49, 0.5); */
    /* background-color: rgba(18, 62, 126, 0.6); */
    color: white;
}
.kutu_2_h {
    min-height: 300px;
}
.kutu_2_m {
    margin-top: -300px;
}
.kutu_2_b {
    border-radius: 10px;
}
.g_u {
    display: none;
}
.kutu_2_hover:hover>.g_u {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(28,76,158,0.6);
}
/* kutu_2_hover */
/* kutu_2_hover */
.kutu_1_hover {
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
}
.kutu_1_hover:hover {
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(29, 38, 49, 0.5);
}
/* kutu_1_hover */
.border_color {
    border-color: #1d2631;
}
.g_r_h {
    height: 420px;
}
/* kartlar */
.kart {
    border: 1px solid #1d2631;
}
.kart>* {
    color: #1d2631;
    border: 1px solid #1d2631;
}
.kart:hover {
    border: 1px solid white;
    box-shadow: 0px 2px 8px rgb(0 0 0 / 20%);
    background-color: #1d2631;
}
.kart:hover>* {
    border: 1px solid white;
    color: white;
}
/* kartlar */
.e_i_h {
    height: 330px;
}
.a_m_i_w {
    width: 50px;
}
.logo {
    width: 260px;
    max-width: 100%;
}
.f_logo {
    width: 100px;
    max-width: 100%;
}
.mini_logo {
    width: 180px;
}
.o_border {
    border-top: 0.1rem solid rgb(255 255 255 / 50%);
}
.title_ikon {
    width: 30px;
    margin: 0em 1rem;
}
.title_alt_div_y {
    border: 1px solid #1d2631;
    width: 150px;
    max-width: 40%;
}
.title_alt_div_b {
    border: 1px solid #ffffff;
    width: 150px;
    max-width: 40%;
}
.title {
    color: #1c4c9e;
}
/* mobil menü buton */
#nav-icon3 {
    width: 45px;
    height: 38px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
#nav-icon3 span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #1d2631;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
/* Icon 3 */
#nav-icon3 span:nth-child(1) {
    top: 0px;
}
#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
    top: 14px;
}
#nav-icon3 span:nth-child(4) {
    top: 28px;
}
#nav-icon3.open span:nth-child(1) {
    top: 14px;
    width: 0%;
    left: 50%;
}
#nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#nav-icon3.open span:nth-child(4) {
    top: 14px;
    width: 0%;
    left: 50%;
}
/* mobil menü buton */
/* side_btn */
.side_btn,
.side_btn:visited {
    background-color: white;
    color: #1d2631;
    border: 3px solid #1d2631;
}
.side_btn:hover,
.side_btn:focus,
.side_btn:active,
.side_btn.aktif {
    background-color: #1d2631;
    color: white;
}
/* side_btn */
/* adres_btn */
.adres_btn>*,
.adres_btn:visited>* {
    background-color: white;
    color: #1d2631;
    border: 1px solid #1d2631;
}
.adres_btn:hover>*,
.adres_btn:focus>*,
.adres_btn:active>*,
.adres_btn.aktif>* {
    background-color: #1d2631;
    color: white;
    border: 1px solid white;
}
/* adres_btn */
/* btn_iletisim */
.btn_iletisim,
.btn_iletisim:visited {
    background-color: white;
    color: #1d2631;
    border: 1px solid #1d2631;
}
.btn_iletisim:hover,
.btn_iletisim:focus,
.btn_iletisim:active,
.btn_iletisim.aktif {
    background-color: #1d2631;
    color: white;
    border: 1px solid white;
}
/* btn_iletisim */
a,
a:visited,
a:active,
a:hover,
a:focus,
a:focus-within,
a:focus-visible {
    text-decoration: none;
}
.golge {
    box-shadow: 0px 2px 8px rgb(0 0 0 / 30%);
}
/* secim_rengi */
::-moz-selection {
    background:#1d2631;
    color:#fff;
}
::selection {
    background:#1d2631;
    color:#fff;
}
/* secim_rengi */
/* alt_menu_resimler */
.alt_menu_resimler_yazi {
    min-height: 60px;
}
.alt_menu_resimler_resim {
    max-height: 350px;
}
.mfp-counter {
    display: none;
}
.mfp-close,
.mfp-close-btn-in .mfp-close {
    font-size: 4rem;
}
/* alt_menu_resimler */
/* footer_adres_btn */
.footer_adres_btn>*,
.footer_adres_btn:visited>* {
    background-color: white;
    color: #1d2631;
    /* border: 1px solid white; */
}
.footer_adres_btn:hover>*,
.footer_adres_btn:focus>*,
.footer_adres_btn:active>*,
.footer_adres_btn.aktif>* {
    background-color: #1d2631;
    color: white;
    /* border: 1px solid white; */
}
/* footer_adres_btn */
.m_font_size {
    font-size: 1rem !important;
}

@media only screen and (max-width: 1400px) {
    .m_font_size {
        font-size: 0.8rem !important;
    }
}
@media only screen and (max-width: 1200px) {
    .m_font_size {
        font-size: 0.7rem !important;
    }
}
@media (max-width:1000px) {
    .sponsors_bg_ayar {
        min-height: unset;
        background-size: contain;
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .footer_baslik {
        font-size: 0.9rem;
    }
}

/* ====================================================
MODERN HEADER - Enhanced v2
==================================================== */

/* Ana Header */
.modern_header {
    z-index: 1000;
    position: relative;
}

.modern_header_body {
    background: linear-gradient(135deg, rgba(30, 126, 187, 0.96) 0%, rgba(235, 78, 134, 0.92) 100%) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 18px 40px rgba(15, 43, 77, 0.18), 0 6px 20px rgba(15, 43, 77, 0.12);
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
}

.modern_header .header-row {
    align-items: center;
}

.modern_header .header-logo {
    margin: 0 !important;
}

@media (min-width: 768px) {
    .modern_header_body {
        padding: 8px 0 !important;
    }

    .modern_header .header-container {
        min-height: auto !important;
        height: auto;
        display: flex;
        align-items: center;
    }

    .modern_header .header-row {
        width: 100%;
        min-height: auto !important;
    }

    .modern_header .header-column {
        justify-content: center;
    }

    .modern_header .header-logo {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .modern_header .header-nav,
    .modern_header .header-nav-main,
    .modern_header .header-nav-main nav,
    .modern_header #mainNav {
        height: 100%;
        align-items: center;
    }

    .modern_header #mainNav > li {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .modern_header .header_quick_links {
        padding-top: 6px;
        padding-bottom: 6px;
    }
}

.modern_header_body::before {
    content: '';
    position: absolute;
    top: -90px;
    right: -30px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 72%);
    border-radius: 50%;
    pointer-events: none;
}

.modern_header_body::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: 32%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 72%);
    border-radius: 50%;
    pointer-events: none;
}

.modern_header::before {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.45), rgba(255,255,255,0));
    z-index: 2;
    pointer-events: none;
}

/* Sticky state enhancement */
.header-sticky .modern_header_body {
    background: linear-gradient(135deg, rgba(18, 86, 142, 0.97) 0%, rgba(203, 58, 116, 0.94) 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22) !important;
    box-shadow: 0 20px 40px rgba(15, 43, 77, 0.2), 0 8px 18px rgba(15, 43, 77, 0.14) !important;
}

/* Nav link base */
.modern_nav_link {
    position: relative;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.92) !important;
    padding: 8px !important;
    border-radius: 12px;
    transition: color 0.3s ease, background-color 0.3s ease !important;
    text-transform: none;
    text-shadow: none;
}

.modern_nav_link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* Animated underline */
.modern_nav_link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 58%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.82), rgba(255,255,255,0.4));
    border-radius: 2px;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.modern_nav_link:hover,
.modern_nav_link:focus {
    color: #ffffff !important;
}

.modern_nav_link:hover::before,
.modern_nav_link:focus::before {
    opacity: 1;
}

.modern_nav_link:hover::after,
.modern_nav_link:focus::after {
    transform: translateX(-50%) scaleX(1);
}

/* Active menu state */
.modern_nav_link.active {
    color: #ffffff !important;
}

.modern_nav_link.active::before {
    opacity: 1;
}
.modern_nav_link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Sticky nav links */
.header-sticky .modern_nav_link {
    color: rgba(255, 255, 255, 0.94) !important;
}
.header-sticky .modern_nav_link::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.85), rgba(255,255,255,0.42));
}
.header-sticky .modern_nav_link:hover,
.header-sticky .modern_nav_link:focus {
    color: #ffffff !important;
}
.header-sticky .modern_nav_link.active {
    color: #ffffff !important;
}
.header-sticky .modern_nav_link.active::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.85), rgba(255,255,255,0.42));
}

/* Header quick links (desktop) */
.header_quick_links {
    position: relative;
    padding: 8px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-switcher--desktop {
    margin-left: 8px;
}

.language-switcher--mobile {
    width: 100%;
    justify-content: center;
    margin-bottom: 18px;
}

.language-switcher__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

.language-switcher__link:hover {
    border-color: rgba(235, 78, 134, 0.78);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(15, 43, 77, 0.16);
}

.language-switcher__link.is-active {
    border-color: rgba(235, 78, 134, 0.9);
    background: linear-gradient(135deg, rgba(30, 126, 187, 0.22) 0%, rgba(235, 78, 134, 0.24) 100%);
    box-shadow: 0 8px 20px rgba(15, 43, 77, 0.16);
}

.language-switcher__flag {
    width: 24px;
    height: 18px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 2px 6px rgba(15, 23, 42, 0.18);
}

.language-switcher__flag svg {
    display: block;
    width: 100%;
    height: 100%;
}

.language-switcher__text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
}

.mobil_menu_overlay .language-switcher__link {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(15, 43, 77, 0.16);
}

.mobil_menu_overlay .language-switcher__link.is-active {
    border-color: rgba(255, 255, 255, 0.34);
    background: linear-gradient(135deg, rgba(30, 126, 187, 0.9) 0%, rgba(235, 78, 134, 0.88) 100%);
    color: #ffffff;
}

.mobil_menu_overlay .language-switcher__link:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: linear-gradient(135deg, rgba(30, 126, 187, 0.78) 0%, rgba(235, 78, 134, 0.74) 100%);
    color: #ffffff;
}

.header_quick_links .header_quick_link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 18px rgba(15,43,77,0.14);
    backdrop-filter: blur(4px);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.header_quick_links .header_quick_link.header_quick_link_labeled {
    width: auto;
    min-width: 42px;
    height: 42px;
    border-radius: 24px;
    padding: 0 18px 0 12px;
    gap: 10px;
    justify-content: flex-start;
}

.header_quick_links .header_quick_link.header_quick_link_labeled i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.14);
}

.header_quick_links .header_quick_link.header_quick_link_labeled span {
    font-size: 0.8rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.35px;
    white-space: nowrap;
    color: inherit;
}

/* Header quick link brand variants (DB: aikon) */
.header_quick_links .header_quick_link.quick-whatsapp {
    color: #ffffff;
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.1);
}

.header_quick_links .header_quick_link.quick-whatsapp:hover,
.header_quick_links .header_quick_link.quick-whatsapp:focus-visible {
    color: #ffffff;
    border-color: var(--brand-secondary);
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    box-shadow: 0 8px 20px rgba(30,126,187,0.28);
}

.header_quick_links .header_quick_link.quick-whatsapp.header_quick_link_labeled i {
    background: rgba(255,255,255,0.16);
}

.header_quick_links .header_quick_link.quick-whatsapp.header_quick_link_labeled:hover i,
.header_quick_links .header_quick_link.quick-whatsapp.header_quick_link_labeled:focus-visible i {
    background: rgba(255,255,255,0.2);
}

.header_quick_links .header_quick_link.quick-doctor,
.header_quick_links .header_quick_link.quick-doktor,
.header_quick_links .header_quick_link.quick-doctor-calendar,
.header_quick_links .header_quick_link.quick-doktor-takvimi {
    color: #ffffff;
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.1);
}

.header_quick_links .header_quick_link.quick-doctor:hover,
.header_quick_links .header_quick_link.quick-doctor:focus-visible,
.header_quick_links .header_quick_link.quick-doktor:hover,
.header_quick_links .header_quick_link.quick-doktor:focus-visible,
.header_quick_links .header_quick_link.quick-doctor-calendar:hover,
.header_quick_links .header_quick_link.quick-doctor-calendar:focus-visible,
.header_quick_links .header_quick_link.quick-doktor-takvimi:hover,
.header_quick_links .header_quick_link.quick-doktor-takvimi:focus-visible {
    color: #ffffff;
    border-color: var(--brand-secondary);
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    box-shadow: 0 8px 20px rgba(235,78,134,0.3);
}

.header_quick_links .header_quick_link.quick-doctor.header_quick_link_labeled i,
.header_quick_links .header_quick_link.quick-doktor.header_quick_link_labeled i,
.header_quick_links .header_quick_link.quick-doctor-calendar.header_quick_link_labeled i,
.header_quick_links .header_quick_link.quick-doktor-takvimi.header_quick_link_labeled i {
    background: rgba(255,255,255,0.16);
}

.header_quick_links .header_quick_link.quick-doctor.header_quick_link_labeled:hover i,
.header_quick_links .header_quick_link.quick-doctor.header_quick_link_labeled:focus-visible i,
.header_quick_links .header_quick_link.quick-doktor.header_quick_link_labeled:hover i,
.header_quick_links .header_quick_link.quick-doktor.header_quick_link_labeled:focus-visible i,
.header_quick_links .header_quick_link.quick-doctor-calendar.header_quick_link_labeled:hover i,
.header_quick_links .header_quick_link.quick-doctor-calendar.header_quick_link_labeled:focus-visible i,
.header_quick_links .header_quick_link.quick-doktor-takvimi.header_quick_link_labeled:hover i,
.header_quick_links .header_quick_link.quick-doktor-takvimi.header_quick_link_labeled:focus-visible i {
    background: rgba(255,255,255,0.2);
}

/* Shine sweep */
.header_quick_links .header_quick_link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.7) 50%, transparent 80%);
    transform: translateX(-130%);
    transition: transform 0.55s ease;
}

.header_quick_links .header_quick_link:hover::before,
.header_quick_links .header_quick_link:focus-visible::before {
    transform: translateX(130%);
}

.header_quick_links .header_quick_link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.header_quick_links .header_quick_link:hover,
.header_quick_links .header_quick_link:focus-visible {
    color: #ffffff;
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.18);
    box-shadow: 0 14px 28px rgba(15,43,77,0.18);
    transform: translateY(-3px);
}

.header_quick_links .header_quick_link:hover i,
.header_quick_links .header_quick_link:focus-visible i {
    transform: scale(1.15);
}

.header_quick_links .header_quick_link:active {
    transform: translateY(-1px) scale(0.97);
}

.header_quick_links .header_quick_link:focus-visible {
    outline: 2px solid #eb4e86;
    outline-offset: 2px;
}

/* Sticky quick links */
.header-sticky .header_quick_links {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 14px 28px rgba(15, 43, 77, 0.14);
}

.header-sticky .header_quick_links .header_quick_link {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 20px rgba(15, 43, 77, 0.14);
}

.header-sticky .header_quick_links .header_quick_link.header_quick_link_labeled i {
    background: rgba(255,255,255,0.16);
}

.header-sticky .header_quick_links .header_quick_link:hover,
.header-sticky .header_quick_links .header_quick_link:focus-visible {
    box-shadow: 0 14px 28px rgba(15, 43, 77, 0.18);
}

.header-sticky .header_quick_links .header_quick_link.quick-whatsapp:hover,
.header-sticky .header_quick_links .header_quick_link.quick-whatsapp:focus-visible {
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border-color: var(--brand-secondary);
    box-shadow: 0 8px 20px rgba(30,126,187,0.3);
}

.header-sticky .header_quick_links .header_quick_link.quick-doctor:hover,
.header-sticky .header_quick_links .header_quick_link.quick-doctor:focus-visible,
.header-sticky .header_quick_links .header_quick_link.quick-doktor:hover,
.header-sticky .header_quick_links .header_quick_link.quick-doktor:focus-visible,
.header-sticky .header_quick_links .header_quick_link.quick-doctor-calendar:hover,
.header-sticky .header_quick_links .header_quick_link.quick-doctor-calendar:focus-visible,
.header-sticky .header_quick_links .header_quick_link.quick-doktor-takvimi:hover,
.header-sticky .header_quick_links .header_quick_link.quick-doktor-takvimi:focus-visible {
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border-color: var(--brand-secondary);
    box-shadow: 0 8px 20px rgba(235,78,134,0.3);
}

/* ====================================================
   MASAÜSTÜ DROPDOWN SİSTEMİ — Temiz Yeniden Yazım
   ==================================================== */

/* --- Dropdown panel ortak stil --- */
.modern_dropdown {
    background: #ffffff !important;
    border: 1px solid rgba(30,126,187,0.10) !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05) !important;
    padding: 8px !important;
    overflow: visible !important;
    min-width: 240px !important;
    border-top: none !important;
    border-image: none !important;
}

/* Gradient üst çizgi */
.modern_dropdown::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e7ebb, #eb4e86);
    border-radius: 12px 12px 0 0;
}

/* --- Masaüstü (≥768px): hover ile aşağı açılış --- */
@media (min-width: 768px) {

    /* Hamburger gizle */
    #nav-icon3 { display: none !important; }

    /* 1. seviye: li.dropdown konumu */
    #mainNav > li.dropdown {
        position: relative;
    }

    /* Hover bridge: menü ile dropdown arası boşlukta fare kaybını engelle */
    #mainNav > li.dropdown::after {
        content: '';
        position: absolute;
        left: 0; right: 0;
        top: 100%;
        height: 12px;          /* dropdown'a kadar köprü */
        background: transparent;
        display: none;
    }
    #mainNav > li.dropdown:hover::after {
        display: block;
    }

    /* 1. seviye dropdown panel */
    #mainNav > li.dropdown > .dropdown-menu.modern_dropdown {
        display: block !important;   /* Bootstrap display:none'u ez */
        position: absolute !important;
        top: 100% !important;        /* nav-link'in hemen altı */
        left: 0 !important;
        right: auto !important;
        margin: 4px 0 0 0 !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        z-index: 1050;
    }

    /* Son 2 menü öğesi sağa taşmasın */
    #mainNav > li.dropdown:last-child > .dropdown-menu.modern_dropdown,
    #mainNav > li.dropdown:nth-last-child(2) > .dropdown-menu.modern_dropdown {
        left: auto !important;
        right: 0 !important;
    }

    /* Hover / focus-within ile AÇ */
    #mainNav > li.dropdown:hover > .dropdown-menu.modern_dropdown,
    #mainNav > li.dropdown:focus-within > .dropdown-menu.modern_dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    /* 2. seviye: submenu (yana açılır) */
    .modern_dropdown .dropdown-submenu {
        position: relative;
    }

    /* Submenu hover bridge */
    .modern_dropdown .dropdown-submenu::after {
        content: '';
        position: absolute;
        top: 0; bottom: 0;
        right: -12px;
        width: 12px;
        background: transparent;
    }

    .modern_dropdown .dropdown-submenu > .dropdown-menu.modern_dropdown {
        display: block !important;
        position: absolute !important;
        top: -8px !important;
        left: 100% !important;
        right: auto !important;
        margin: 0 0 0 4px !important;
        min-width: 240px !important;
        border-radius: 10px !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        z-index: 1060;
    }

    .modern_dropdown .dropdown-submenu:hover > .dropdown-menu.modern_dropdown,
    .modern_dropdown .dropdown-submenu:focus-within > .dropdown-menu.modern_dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    /* Dar ekranlarda submenu sola aç */
    @media (max-width: 1199px) {
        .modern_dropdown .dropdown-submenu > .dropdown-menu.modern_dropdown {
            left: auto !important;
            right: 100% !important;
            margin: 0 4px 0 0 !important;
            transform: translateX(-8px);
        }
        .modern_dropdown .dropdown-submenu:hover > .dropdown-menu.modern_dropdown,
        .modern_dropdown .dropdown-submenu:focus-within > .dropdown-menu.modern_dropdown {
            transform: translateX(0);
        }
    }
}

/* --- Dropdown item stili (tüm ekranlar) --- */
.modern_dropdown .dropdown-item {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 8px !important;
    padding: 11px 16px !important;
    font-size: 0.88rem !important;
    color: #374151 !important;
    font-weight: 500;
    position: relative;
    margin: 2px 0;
    letter-spacing: 0.15px;
    white-space: nowrap;
    transition: all 0.25s ease !important;
}

.modern_dropdown .dropdown-item-label {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    flex: 1;
    white-space: normal;
}

.modern_dropdown .submenu-chevron {
    font-size: 0.72rem;
    color: rgba(30,126,187,0.72);
    transition: transform 0.25s ease, color 0.25s ease;
    flex-shrink: 0;
}

/* Sol accent bar */
.modern_dropdown .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0; top: 15%;
    width: 3px; height: 70%;
    background: linear-gradient(180deg, #1e7ebb, #eb4e86);
    transform: scaleY(0);
    transition: transform 0.25s ease;
    border-radius: 0 3px 3px 0;
}

/* Hover */
.modern_dropdown .dropdown-item:hover {
    background: rgba(30,126,187,0.06) !important;
    color: #1e7ebb !important;
    padding-left: 20px !important;
}
.modern_dropdown .dropdown-item:hover::before {
    transform: scaleY(1);
}
.modern_dropdown .dropdown-item .text-warning {
    color: #1e7ebb !important;
    transition: transform 0.25s ease, color 0.25s ease;
    display: inline-block;
}
.modern_dropdown .dropdown-item:hover .text-warning {
    color: #eb4e86 !important;
    transform: translateX(3px);
}

/* Submenu chevron hover */
.modern_dropdown .dropdown-submenu:hover > .dropdown-item .submenu-chevron,
.modern_dropdown .dropdown-submenu:focus-within > .dropdown-item .submenu-chevron,
.modern_dropdown li.active > .dropdown-item .submenu-chevron {
    color: #eb4e86;
    transform: translateX(3px);
}

/* Aktif item */
.modern_dropdown li.active > .dropdown-item {
    background: rgba(30,126,187,0.08) !important;
    color: #1e7ebb !important;
    font-weight: 600;
    padding-left: 20px !important;
}
.modern_dropdown li.active > .dropdown-item::before {
    transform: scaleY(1);
}

/* ====================================================
   PORTO TEMA DROPDOWN OVERRIDE'LARI
   Porto'nun header-nav-main-effect-2 ve sub-effect-1
   sınıflarının kendi dropdown CSS kurallarını ezmek için
   ==================================================== */
@media (min-width: 768px) {
    /* Porto nav > ul > li altındaki dropdown-menu stillerini ez */
    .header-nav-main nav > ul > li > .dropdown-menu,
    .header-nav-main nav > ul > li .dropdown-menu,
    html .header-nav-main nav > ul > li .dropdown-menu {
        display: block !important;
        margin: 0 !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    /* Porto hover/show/active açılış stillerini ez */
    .header-nav-main nav > ul > li:hover > .dropdown-menu,
    .header-nav-main nav > ul > li.show > .dropdown-menu,
    html .header-nav-main nav > ul > li:hover > .dropdown-menu,
    html .header-nav-main nav > ul > li.show > .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    /* Porto effect-2 animasyon override */
    .header-nav-main-effect-2 nav > ul > li > .dropdown-menu,
    .header-nav-main-sub-effect-1 .dropdown-submenu > .dropdown-menu {
        display: block !important;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease !important;
    }
}

/* Phone Bounce Animation - Disabled */

/* Mobil menü iyileştirmeler - Enhanced */
.mobil_social_ico {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
    color: #1c4c9e;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(28,76,158,0.12);
}

.mobil_social_ico:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(28,76,158,0.25);
}

.mobil_social_ico:nth-child(1):hover {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
    color: white;
    border-color: #1877f2;
}

.mobil_social_ico:nth-child(2):hover {
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
    color: white;
    border-color: transparent;
}

.mobil_social_ico:nth-child(3):hover {
    background: linear-gradient(135deg, #25d366, #1ea952);
    color: white;
    border-color: #25d366;
}

.mobil_social_ico:nth-child(4):hover {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    border-color: #ff0000;
}

/* Mobile Menu Backdrop Enhanced */
.mobil_menu_backdrop {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: linear-gradient(135deg, rgba(30,126,187,0.42) 0%, rgba(235,78,134,0.48) 100%);
}

/* Mobile Menu Panel Enhanced */
.mobil_menu_overlay {
    background: linear-gradient(180deg, rgba(18, 86, 142, 0.98) 0%, rgba(203, 58, 116, 0.96) 100%);
    box-shadow: -15px 0 50px rgba(15,43,77,0.28);
}

/* Mobile Menu Link Enhanced */
.mobil_menu_link {
    position: relative;
    overflow: hidden;
    color: rgba(255,255,255,0.9) !important;
}

.mobil_menu_link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ffc107, #FFD700);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.mobil_menu_link:hover::before,
.mobil_menu_link.active::before {
    transform: scaleY(1);
}

.mobil_menu_link i.fa-chevron-down {
    transition: transform 0.3s ease;
}

.mobil_menu_link.expanded i.fa-chevron-down {
    transform: rotate(180deg);
}

.mobil_menu_overlay a.mobil_menu_link.active {
    color: #ffffff;
    background: rgba(255,255,255,0.12);
}

.mobil_menu_overlay a.mobil_menu_link:hover,
.mobil_menu_overlay a.mobil_menu_link:focus {
    color: #ffffff;
    background: rgba(255,255,255,0.1);
}

/* Mobile Menu Close Button Enhanced */
.mobil_menu_closebtn {
    position: relative;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobil_menu_closebtn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

/* Mobile Close Button Animation - Disabled */

.mobil_menu_closebtn:hover::before {
    opacity: 1;
}

/* Mobile Menu Header Enhanced */
.mobil_menu_header {
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.2) !important;
}

/* Phone Ring Animation - Disabled */

/* Hamburger Menu Button Enhanced */
#nav-icon3 span {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(15,43,77,0.18);
}

/* Hamburger Hover - Disabled */

/* Submenu Enhanced */

.alt_menu_btn_div a {
    position: relative;
    color: rgba(255,255,255,0.82) !important;
}

.alt_menu_btn_div a::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #ffc107;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.alt_menu_btn_div a:hover::before {
    opacity: 1;
}

.alt_menu_btn_div {
    gap: 8px;
}

.mobile-submenu-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.alt_menu_btn_div .mobile-submenu-link,
.alt_menu_btn_div .mobile-submenu-child {
    width: 100%;
    text-decoration: none;
}

.alt_menu_btn_div .mobile-submenu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 16px 12px 18px !important;
    border-radius: 12px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 600;
}

.alt_menu_btn_div .mobile-submenu-link::before,
.alt_menu_btn_div .mobile-submenu-child::before {
    content: none;
}

.alt_menu_btn_div .mobile-submenu-link:hover,
.mobile-submenu-group.active > .mobile-submenu-link {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.18);
    color: #ffffff !important;
}

.mobile-submenu-link-label {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.mobile-submenu-chevron {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.72);
    flex-shrink: 0;
}

.mobile-submenu-children {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px 0 2px 18px;
    border-left: 1px solid rgba(255,255,255,0.16);
    margin-left: 12px;
}

.alt_menu_btn_div .mobile-submenu-child {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px !important;
    border-radius: 10px;
    color: rgba(255,255,255,0.82) !important;
    background: rgba(255,255,255,0.04);
    font-size: 12px !important;
    font-weight: 500;
}

.alt_menu_btn_div .mobile-submenu-child:hover,
.mobile-submenu-child.active {
    color: #ffffff !important;
    background: rgba(255,255,255,0.1);
}

.mobile-submenu-child i {
    font-size: 0.7rem;
    color: #ffc107;
}

/* ====================================================
HEADER ADDITIONAL ENHANCEMENTS
==================================================== */

/* Smooth transitions for all interactive elements */
a, button, .dropdown-item {
    -webkit-tap-highlight-color: transparent;
}

/* Logo glow effect on hover - Disabled */

/* ====================================================
MODERN FOOTER
==================================================== */
.modern_footer {
    background: linear-gradient(135deg, #1e7ebb 0%, #eb4e86 100%);
    position: relative;
    overflow: hidden;
}
.modern_footer::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}
.modern_footer::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 30%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

/* Footer info band */
.footer_info_band {
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1;
}
.footer_info_ikon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,193,7,0.1);
    color: #ffc107;
    font-size: 1rem;
    transition: all 0.3s;
}
.footer_info_band .col-6:hover .footer_info_ikon {
    background: #ffc107;
    color: #0f2b4d;
    transform: scale(1.1);
}

/* Footer ana içerik */
.footer_main {
    position: relative;
    z-index: 1;
}
.footer_baslik {
    position: relative;
    padding-bottom: 12px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}
.footer_baslik::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ffc107;
    border-radius: 2px;
}

/* Footer Linkler */
.footer_link {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    padding: 5px 0;
    transition: all 0.3s;
    text-decoration: none;
}
.footer_link:hover {
    color: #ffc107;
    padding-left: 6px;
}
.footer_link i {
    opacity: 1;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateX(-5px);
}
.footer_link:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Footer İletişim */
.footer_iletisim_link {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.3s;
}
a.footer_iletisim_link:hover {
    color: #ffc107;
}
.footer_iletisim_link i {
    margin-top: 2px;
    font-size: 0.8rem;
}

/* Footer sosyal butonlar */
.footer_social_btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.08);
}
.footer_social_btn:hover {
    color: white;
    transform: translateY(-3px);
}
.footer_social_btn:nth-child(1):hover {
    background: #1877f2;
    border-color: #1877f2;
}
.footer_social_btn:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}
.footer_social_btn:nth-child(3):hover {
    background: #25d366;
    border-color: #25d366;
}
.footer_social_btn:nth-child(4):hover {
    background: #ff0000;
    border-color: #ff0000;
}

/* Footer Alt */
.footer_bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1;
}

/* --- Footer Responsive --- */
@media (max-width: 768px) {
    .footer_info_ikon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.85rem;
    }
    .modern_footer .col-6.col-lg-2 {
        margin-bottom: 0.5rem;
    }
}

/* --- Header Responsive --- */
@media (max-width: 1000px) {
    .header_top_bar {
        display: none !important;
    }
}

/* Header Responsive - Tablet & Mobile */
@media (max-width: 992px) {
    .modern_header_body {
        padding: 8px 0;
    }
}

@media (max-width: 768px) {
    .modern_header_body {
        padding: 6px 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    
    .mobil_menu_overlay {
        width: 280px;
        max-width: 90vw;
    }
    
    .mobil_menu_overlay_content {
        padding: 16px 20px;
    }
    
    .mobil_menu_link {
        font-size: 0.95rem;
        padding: 12px 10px;
    }
    
    .mobil_social_ico {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    .modern_header_body {
        padding: 5px 0;
    }
    
    .header-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .mobil_menu_overlay {
        width: 260px;
        max-width: 85vw;
    }
    
    .mobil_menu_overlay_content {
        padding: 14px 18px;
        margin-top: 16px;
    }
    
    .mobil_menu_link {
        font-size: 0.9rem;
        padding: 11px 8px;
    }
    
    .alt_menu_btn_div {
        padding: 6px 0;
        margin: 6px 0;
    }
    
    .alt_menu_btn_div a {
        font-size: 12px !important;
        padding: 9px 14px 9px 26px !important;
    }
    
    .mobil_social_ico {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .mobil_menu_footer {
        padding-top: 16px !important;
    }
}

/* ====================================================
MOBİL GENEL RESPONSIVE (576px ve altı)
==================================================== */
@media (max-width: 576px) {
    
    /* --- Genel --- */
    body {
        font-size: 14px;
    }
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    section.py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    /* --- Araç Seçici --- */
    .arac_secici_form {
        padding: 1.2rem !important;
    }
    .arac_secici_form .form-select {
        padding: 10px 12px !important;
        font-size: 0.85rem;
    }
    #arac_secici h2 {
        font-size: 1.4rem;
    }
    
    /* --- Bölüm Başlıkları --- */
    section h2.fw-bold {
        font-size: 1.4rem;
    }
    section .badge {
        font-size: 0.72rem;
    }
    
    /* --- Footer Mobil --- */
    .footer_info_band .col-6 {
        flex: 0 0 50%;
    }
    .footer_info_ikon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.75rem;
    }
    .footer_info_band .text-white.fw-semibold {
        font-size: 0.72rem !important;
    }
    .footer_info_band [style*="font-size:0.75rem"] {
        font-size: 0.65rem !important;
    }
    .footer_main .col-lg-4 .footer_social_btn {
        margin: 0 auto;
    }
    .footer_main .col-lg-4 .d-flex.gap-2 {
        justify-content: center;
    }
    .footer_baslik {
        font-size: 0.85rem;
    }
    .footer_baslik::after {
        left: 0;
    }
    .footer_link {
        font-size: 0.8rem;
        padding: 4px 0;
    }
    .footer_iletisim_link {
        font-size: 0.78rem;
    }
    .footer_bottom p {
        font-size: 0.72rem !important;
    }
    /* --- Wave Mobil --- */
    .w_waves {
        min-height: 50px;
        max-height: 60px;
    }
}

/* ====================================================
MOBİL GENEL RESPONSIVE (768px - 577px arası tablet)
==================================================== */
@media (min-width: 577px) and (max-width: 768px) {
    section h2.fw-bold {
        font-size: 1.5rem;
    }
}

/* ====================================================
MOBİL HEADER (768px altı)
==================================================== */
@media (max-width: 768px) {
    .modern_header_body {
        padding: 0 8px;
    }
}

/* ====================================================
GELİŞMİŞ FOOTER TASARIMI
==================================================== */

/* Footer Section Başlıklar */
.footer_section_title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    letter-spacing: 0.3px;
}

/* Footer Modern Linkler */
.footer_links_wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_link_modern {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    border-left: 2px solid transparent;
}

.footer_link_modern:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-left-color: #ffffff;
    padding-left: 16px;
    transform: translateX(4px);
}

.footer_link_modern i {
    transition: transform 0.3s ease;
}

.footer_link_modern:hover i {
    transform: translateX(4px);
}

/* Footer İletişim Kartları */
.footer_contact_wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer_contact_item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.footer_contact_item:hover {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.40);
    transform: translateX(6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.footer_contact_icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer_contact_item:hover .footer_contact_icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.footer_contact_content {
    flex: 1;
    min-width: 0;
}

.footer_contact_label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.footer_contact_text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    word-break: break-word;
}

/* Yeni Sosyal Medya Butonları */
.footer_social_btn_new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.footer_social_btn_new:hover {
    background: rgba(255, 255, 255, 0.30);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.50);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer_social_btn_new:active {
    transform: translateY(-2px) scale(1.05);
}

/* Footer Designer Link */
.footer_designer_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px 18px;
}

.footer_designer_link img {
    width: 181px !important;
    max-width: 100%;
    opacity: 1 !important;
}

.footer_designer_link:hover img {
    opacity: 1 !important;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer_section_title {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
}

@media (max-width: 768px) {
    .footer_section_title {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }
    
    .footer_link_modern,
    .footer_contact_text {
        font-size: 0.85rem;
    }
    
    .footer_contact_item {
        padding: 12px;
    }
    
    .footer_contact_icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .footer_social_btn_new {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .footer_section_title {
        font-size: 0.9rem;
    }
    
    .footer_link_modern {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .footer_contact_item {
        padding: 10px;
        gap: 10px;
    }
    
    .footer_contact_icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .footer_contact_label {
        font-size: 0.65rem;
    }
    
    .footer_contact_text {
        font-size: 0.8rem;
    }
    
    .footer_social_btn_new {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ====================================================
BRAND THEME OVERRIDES
Ana renkler: #1e7ebb / #eb4e86
==================================================== */
:root {
    --brand-primary: #1e7ebb;
    --brand-secondary: #eb4e86;
    --brand-primary-dark: #16689b;
    --brand-secondary-dark: #cf3d72;
    --brand-soft: #fbe8f1;
}

.text-warning {
    color: var(--brand-secondary) !important;
}

::selection,
::-moz-selection {
    background: var(--brand-primary);
    color: #fff;
}

.title,
.title_border,
.main_btn,
.main_btn:hover,
.main_btn:focus,
.main_btn:visited,
.iletisim_btn:hover,
.btn_link:hover,
.btn_link:focus,
.btn_link:active {
    color: var(--brand-primary) !important;
}

.title_border,
.main_btn,
.main_btn:hover,
.main_btn:focus,
.main_btn:visited,
.i_b_b:hover,
.ilt_radio:hover,
.ilt_radio:focus,
.ilt_checkbox:hover,
.ilt_checkbox:focus,
.ilt_inpt:hover,
.ilt_inpt:focus,
.btn_iletisim,
.btn_iletisim:visited,
.side_btn,
.side_btn:visited,
.adres_btn > *,
.adres_btn:visited > * {
    border-color: var(--brand-primary) !important;
}

.main_btn,
.btn_iletisim:hover,
.btn_iletisim:focus,
.btn_iletisim:active,
.btn_iletisim.aktif,
.side_btn:hover,
.side_btn:focus,
.side_btn:active,
.side_btn.aktif,
.adres_btn:hover > *,
.adres_btn:focus > *,
.adres_btn:active > *,
.adres_btn.aktif > *,
.ilt_btn:hover,
.ilt_btn:focus,
.ilt_btn:active,
.ilt_btn.aktif {
    background-color: var(--brand-primary) !important;
    color: #fff !important;
}

.btn_link,
.btn_link:visited {
    color: var(--brand-secondary) !important;
}

.modern_nav_link::after,
.modern_dropdown .dropdown-item::before,
.modern_dropdown::before,
.mobil_menu_link::before,
.footer_baslik::after,
.footer_feature_item:hover .footer_feature_icon,
.footer_social_btn_new:hover,
.iletisim_bilgi_item::before {
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary)) !important;
}

.modern_nav_link::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.08) 100%) !important;
}

.modern_nav_link::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.82), rgba(255,255,255,0.4)) !important;
}

.modern_nav_link:hover,
.modern_nav_link:focus,
.modern_nav_link.active,
.footer_link:hover,
.footer_iletisim_link:hover,
.footer_link_modern:hover,
.iletisim_bilgi_item:hover .iletisim_bilgi_baslik,
.iletisim_bilgi_item:hover .iletisim_bilgi_arrow {
    color: #ffffff !important;
}

.modern_nav_link.active {
    color: #ffffff !important;
}

.modern_header_body {
    box-shadow: 0 18px 40px rgba(15, 43, 77, 0.18), 0 6px 20px rgba(15, 43, 77, 0.12) !important;
    background: linear-gradient(135deg, rgba(30, 126, 187, 0.96) 0%, rgba(235, 78, 134, 0.92) 100%) !important;
    border-bottom-color: rgba(255, 255, 255, 0.18) !important;
}

.modern_header_body::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 72%) !important;
}

.header-sticky .modern_header_body {
    background: linear-gradient(135deg, rgba(18, 86, 142, 0.97) 0%, rgba(203, 58, 116, 0.94) 100%) !important;
    box-shadow: 0 20px 40px rgba(15, 43, 77, 0.2), 0 8px 18px rgba(15, 43, 77, 0.14) !important;
}

#floating-contact .fc-item:focus-visible,
.header_quick_links .header_quick_link:focus-visible,
.modern_dropdown .dropdown-item:focus-visible,
.mobil_menu_link:focus-visible,
.footer_social_btn_new:focus-visible,
.kvkk-card:focus-visible {
    outline: 2px solid var(--brand-secondary) !important;
    outline-offset: 2px;
}

#floating-contact .fc-phone,
.footer_social_btn_new {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    color: #fff !important;
}

#floating-contact .fc-phone:hover {
    background: linear-gradient(135deg, var(--brand-secondary-dark) 0%, var(--brand-primary-dark) 100%) !important;
}

.kvkk-card:hover,
.kvkk-card:focus,
.footer_feature_item:hover,
.footer_contact_item:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    color: #ffffff !important;
}

/* Header/Footer: sarı kalan alanlar için kesin override */
.modern_dropdown .dropdown-item::before,
.modern_dropdown::before,
.mobil_menu_link::before,
.alt_menu_btn_div a::before {
    background: linear-gradient(180deg, var(--brand-secondary), var(--brand-primary)) !important;
    box-shadow: none !important;
}

.modern_nav_link::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.82), rgba(255,255,255,0.4)) !important;
    box-shadow: none !important;
}

.modern_nav_link.active {
    color: #ffffff !important;
}
.footer_link:hover,
a.footer_iletisim_link:hover,
.footer_info_ikon,
.footer_feature_icon,
.footer_contact_icon,
.footer_section_title .text-warning,
.footer_link_modern .text-warning {
    color: #ffffff !important;
}

.modern_dropdown .dropdown-item:hover {
    color: var(--brand-primary) !important;
}

.modern_dropdown .dropdown-item .text-warning {
    color: var(--brand-primary) !important;
}

.modern_dropdown .dropdown-item:hover .text-warning {
    color: var(--brand-secondary) !important;
}

.header-sticky .header_quick_links .header_quick_link:hover,
.header-sticky .header_quick_links .header_quick_link:focus-visible,
.header-sticky .header_quick_links .header_quick_link.quick-whatsapp:hover,
.header-sticky .header_quick_links .header_quick_link.quick-whatsapp:focus-visible {
    box-shadow: 0 10px 24px rgba(15,43,77,0.12) !important;
}

.header-sticky .header_quick_links .header_quick_link:hover,
.header-sticky .header_quick_links .header_quick_link:focus-visible {
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.28) !important;
    background: rgba(255,255,255,0.18) !important;
}

#floating-contact .fc-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

#floating-contact .fc-whatsapp:hover,
#floating-contact .fc-whatsapp:focus-visible {
    background: linear-gradient(135deg, #1ebe57 0%, #128c4b 100%) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.header_quick_links .header_quick_link.quick-whatsapp {
    color: var(--brand-primary) !important;
    border-color: rgba(30,126,187,0.18) !important;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%) !important;
}

.header_quick_links .header_quick_link.quick-whatsapp:hover,
.header_quick_links .header_quick_link.quick-whatsapp:focus-visible,
.header-sticky .header_quick_links .header_quick_link.quick-whatsapp:hover,
.header-sticky .header_quick_links .header_quick_link.quick-whatsapp:focus-visible {
    color: #ffffff !important;
    border-color: var(--brand-secondary) !important;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%) !important;
    box-shadow: 0 8px 20px rgba(30,126,187,0.3) !important;
}

.footer_info_ikon {
    background: rgba(255, 255, 255, 0.15) !important;
}

.footer_info_band .col-6:hover .footer_info_ikon,
.footer_feature_item:hover .footer_feature_icon,
.footer_social_btn_new:hover {
    background: rgba(255, 255, 255, 0.30) !important;
    border-color: rgba(255, 255, 255, 0.50) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.footer_baslik::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.2)) !important;
}

.footer_feature_item:hover,
.footer_contact_item:hover {
    border-color: rgba(255, 255, 255, 0.45) !important;
}

.footer_section_title {
    border-bottom-color: rgba(255, 255, 255, 0.25) !important;
}

.footer_link_modern:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-left-color: #ffffff !important;
}

/* Footer arka plan: title tasarımıyla uyumlu tema */
.modern_footer {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%) !important;
}

.modern_footer::before {
    background: rgba(255, 255, 255, 0.08) !important;
    width: 220px !important;
    height: 220px !important;
    top: -60px !important;
    right: -60px !important;
    border-radius: 50% !important;
}

.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.20) !important;
}