/* 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(30, 34, 40, 0.92);
    color: #fff;
    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;
}
.kvkk-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffc107 60%, #fffbe6 100%);
    color: #222;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.25rem;
    box-shadow: 0 1px 6px 0 rgba(255,193,7,0.15);
}
.kvkk-card-title {
    flex: 1;
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.kvkk-card:hover, .kvkk-card:focus {
    background: #ffc107;
    color: #222;
    box-shadow: 0 4px 18px 0 rgba(255,193,7,0.18);
    text-decoration: none;
}
.kvkk-card:hover .kvkk-card-title, .kvkk-card:focus .kvkk-card-title {
    color: #222;
}
.kvkk-card:hover .kvkk-card-icon, .kvkk-card:focus .kvkk-card-icon {
    background: #fffbe6;
    color: #ffc107;
}
@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);
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    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: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));
}

/* 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));
}

/* Sahibinden Butonu */
#floating-contact .fc-sahibinden {
    background: linear-gradient(135deg, #ffe800 0%, #f0dc00 100%);
    color: #1d2631;
    border-color: rgba(29, 38, 49, 0.1);
}

#floating-contact .fc-sahibinden:hover {
    background: linear-gradient(135deg, #ffe800 0%, #e6d200 100%);
    border-color: rgba(29, 38, 49, 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: #fafbfc;
    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;
}
.alt_menu_btn_div a:hover {
    color: #1c4c9e !important;
    background: #e8edf5 !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_menu_overlay .mobil_menu_closebtn:hover {
    color: #fff;
    background: #ff4757;
    padding-left: 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: 300px;
    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: white;
    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
==================================================== */

/* Ana Header */
.modern_header {
    z-index: 1000;
    position: relative;
}

.modern_header_body {
    /* background: linear-gradient(135deg, #1d5ab5 0%, #1c4c9e 50%, #123775 100%) !important; */
    background: white !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: none !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Dekoratif shine effect - Disabled */

/* Sticky state enhancement */
.header-sticky .modern_header_body {
    box-shadow: 0 8px 40px rgba(0,0,0,0.22), 0 3px 12px rgba(28,76,158,0.3);
    background: linear-gradient(135deg, #1a4fa0 0%, #1c4c9e 50%, #0f2d5e 100%) !important;
}

.modern_nav_link {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.modern_nav_link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #ffc107, #FFD700);
    border-radius: 3px;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(255,193,7,0.4);
}

.modern_nav_link:hover::after,
.modern_nav_link:focus::after {
    width: 70%;
}

/* Active menu state */
.modern_nav_link.active {
    color: #FFD700 !important;
}
.modern_nav_link.active::after {
    width: 70%;
}

/* Header quick links (desktop) */
.header_quick_links {
    position: relative;
    padding: 6px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border: 0;
}

.header_quick_links .header_quick_link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1c4c9e;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border: 1px solid rgba(28,76,158,0.18);
    box-shadow: 0 3px 10px rgba(17, 44, 92, 0.12);
    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: 0;
    padding: 0 16px 0 10px;
    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(28,76,158,0.1);
}

.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;
}

/* Header quick link brand variants (DB: aikon) */
.header_quick_links .header_quick_link.quick-whatsapp {
    color: #1fa855;
    border-color: rgba(37,211,102,0.32);
    background: linear-gradient(180deg, #ffffff 0%, #f2fff7 100%);
}

.header_quick_links .header_quick_link.quick-whatsapp:hover,
.header_quick_links .header_quick_link.quick-whatsapp:focus-visible {
    color: #ffffff;
    border-color: #1fa855;
    background: linear-gradient(135deg, #25d366 0%, #1fa855 100%);
    box-shadow: 0 8px 20px rgba(37,211,102,0.38);
}

.header_quick_links .header_quick_link.quick-whatsapp.header_quick_link_labeled i {
    background: rgba(37,211,102,0.18);
}

.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-sahibinden {
    color: #2f2f2f;
    border-color: rgba(255,232,0,0.6);
    background: linear-gradient(180deg, #fff27a 0%, #ffe800 100%);
}

.header_quick_links .header_quick_link.quick-sahibinden:hover,
.header_quick_links .header_quick_link.quick-sahibinden:focus-visible {
    color: #1f1f1f;
    border-color: #ffe800;
    background: linear-gradient(135deg, #ffe800 0%, #f0dc00 100%);
    box-shadow: 0 8px 20px rgba(255,232,0,0.4);
}

.header_quick_links .header_quick_link.quick-sahibinden.header_quick_link_labeled i {
    background: rgba(255,232,0,0.28);
}

.header_quick_links .header_quick_link.quick-sahibinden.header_quick_link_labeled:hover i,
.header_quick_links .header_quick_link.quick-sahibinden.header_quick_link_labeled:focus-visible i {
    background: rgba(255,255,255,0.35);
}

.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: #1c4c9e;
    background: linear-gradient(135deg, #1c4c9e 0%, #2a6fd6 100%);
    box-shadow: 0 8px 20px rgba(28,76,158,0.35);
    transform: translateY(-3px);
}

.header_quick_links .header_quick_link:hover i,
.header_quick_links .header_quick_link:focus-visible i {
    transform: scale(1.12);
}

.header_quick_links .header_quick_link:active {
    transform: translateY(-1px) scale(0.97);
}

.header_quick_links .header_quick_link:focus-visible {
    outline: 2px solid #ffc107;
    outline-offset: 2px;
}

.header-sticky .header_quick_links {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.header-sticky .header_quick_links .header_quick_link {
    color: #ffffff;
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    box-shadow: none;
}

.header-sticky .header_quick_links .header_quick_link.header_quick_link_labeled i {
    background: rgba(255,255,255,0.2);
}

.header-sticky .header_quick_links .header_quick_link:hover,
.header-sticky .header_quick_links .header_quick_link:focus-visible {
    color: #1d2631;
    background: linear-gradient(135deg, #ffc107 0%, #ffda47 100%);
    border-color: #ffc107;
    box-shadow: 0 8px 20px rgba(255,193,7,0.35);
}

.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, #25d366 0%, #1fa855 100%);
    border-color: #25d366;
    box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}

.header-sticky .header_quick_links .header_quick_link.quick-sahibinden:hover,
.header-sticky .header_quick_links .header_quick_link.quick-sahibinden:focus-visible {
    color: #1f1f1f;
    background: linear-gradient(135deg, #ffe800 0%, #f0dc00 100%);
    border-color: #ffe800;
    box-shadow: 0 8px 20px rgba(255,232,0,0.35);
}

/* Dropdown modern */
.modern_dropdown {
    background: white !important;
    border: none !important;
    border-radius: 14px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 5px 15px rgba(28,76,158,0.1) !important;
    padding: 10px !important;
    margin-top: 10px !important;
    overflow: hidden;
    min-width: 240px !important;
    animation: dropdownFadeIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(28,76,158,0.08) !important;
}

@keyframes dropdownFadeIn {
    0% { 
        opacity: 0; 
        transform: translateY(-12px) scale(0.95); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.modern_dropdown .dropdown-item {
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 0.87rem !important;
    color: #1d2631 !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

/* Dropdown item hover effect */
.modern_dropdown .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #ffc107, #FFD700);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.modern_dropdown .dropdown-item:hover {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%) !important;
    color: #1c4c9e !important;
    padding-left: 22px !important;
    transform: translateX(2px);
}

.modern_dropdown .dropdown-item:hover::before {
    transform: scaleY(1);
}

.modern_dropdown .dropdown-item .text-warning {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.modern_dropdown .dropdown-item:hover .text-warning {
    transform: translateX(4px) scale(1.1);
}

/* 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: rgba(0,0,0,0.65);
}

/* Mobile Menu Panel Enhanced */
.mobil_menu_overlay {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: -15px 0 50px rgba(0,0,0,0.25);
}

/* Mobile Menu Link Enhanced */
.mobil_menu_link {
    position: relative;
    overflow: hidden;
}

.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);
}

/* 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: linear-gradient(135deg, #ff4757, #ff3838);
    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: 2px solid #e8eeff !important;
}

/* Phone Ring Animation - Disabled */

/* Hamburger Menu Button Enhanced */
#nav-icon3 span {
    background: #154898;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Hamburger Hover - Disabled */

/* Submenu Enhanced */
.alt_menu_btn_div {
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
    border: 1px solid #e8eeff;
    box-shadow: inset 0 2px 8px rgba(28,76,158,0.05);
}

.alt_menu_btn_div a {
    position: relative;
}

.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;
}

/* ====================================================
HEADER ADDITIONAL ENHANCEMENTS
==================================================== */

/* Smooth page load animation - Disabled */

/* Header shadow enhancement on scroll */
.header-sticky .modern_header_body::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, transparent 100%);
    pointer-events: none;
}

/* 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(180deg, #0f2b4d 0%, #0a1929 100%);
    position: relative;
    overflow: hidden;
}
.modern_footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    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;
    }
    .footer_logo {
        width: 340px;
    }
    .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;
    }
    .footer_logo {
        width: 340px;
    }
    
    /* --- 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;
    }
}

/* ====================================================
TITLE BAR
==================================================== */
.title_bar {
    background: linear-gradient(135deg, #0f2b4d 0%, #1d2631 40%, #1c4c9e 100%);
    padding: 55px 0 65px;
    position: relative;
    overflow: hidden;
}
.title_bar_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Dekoratif dişli ikonlar */
.title_bar_gear {
    position: absolute;
    color: rgba(255,255,255,0.03);
    z-index: 1;
    pointer-events: none;
}
.title_bar_gear_1 {
    font-size: 180px;
    top: -40px;
    right: -30px;
    animation: rotateGear 25s linear infinite;
}
.title_bar_gear_2 {
    font-size: 100px;
    bottom: -20px;
    left: 5%;
    animation: rotateGear 18s linear infinite reverse;
}

/* Başlık */
.title_bar_baslik {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    position: relative;
    padding-left: 18px;
}
.title_bar_baslik::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: #ffc107;
    border-radius: 4px;
}

/* Breadcrumb */
.title_bar_breadcrumb {
    background: none !important;
    padding: 0 !important;
}
.title_bar_breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
    text-decoration: none;
}
.title_bar_breadcrumb .breadcrumb-item a:hover {
    color: #ffc107;
}
.title_bar_breadcrumb .breadcrumb-item.active {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 600;
}
.title_bar_breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.3);
    content: "›";
    font-size: 1rem;
    font-weight: 700;
}

/* Alt dalga */
.title_bar_wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    line-height: 0;
}
.title_bar_wave svg {
    width: 100%;
    height: 40px;
    display: block;
}

/* Title Bar Responsive */
@media (max-width: 768px) {
    .title_bar {
        padding: 40px 0 55px;
    }
    .title_bar_baslik {
        font-size: 1.35rem;
        padding-left: 14px;
    }
    .title_bar_breadcrumb .breadcrumb-item a,
    .title_bar_breadcrumb .breadcrumb-item.active {
        font-size: 0.78rem;
    }
    .title_bar_gear_1 {
        font-size: 120px;
    }
    .title_bar_gear_2 {
        font-size: 70px;
    }
    .title_bar_wave svg {
        height: 25px;
    }
}

@media (max-width: 576px) {
    .title_bar {
        padding: 30px 0 45px;
    }
    .title_bar_baslik {
        font-size: 1.15rem;
    }
    .title_bar_breadcrumb {
        justify-content: flex-start !important;
    }
}

/* ====================================================
İLETİŞİM SAYFASI
==================================================== */

/* Sol kart (bilgi paneli) */
.iletisim_bilgi_kart {
    background: linear-gradient(135deg, #0f2b4d 0%, #1d2631 50%, #1c4c9e 100%);
    position: relative;
    overflow: hidden;
}
.iletisim_bilgi_kart::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,193,7,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}
.iletisim_bilgi_kart::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Bilgi ikon */
.iletisim_bilgi_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.12);
    color: #ffc107;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.iletisim_bilgi_ikon:hover {
    background: #ffc107;
    color: #1d2631;
    transform: scale(1.1);
}

/* Sosyal butonlar */
.iletisim_sosyal_btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: all 0.3s;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
}
.iletisim_sosyal_btn:hover {
    background: #ffc107;
    color: #1d2631;
    border-color: #ffc107;
    transform: translateY(-3px);
}

/* Form label */
.iletisim_form_label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1d2631;
    margin-bottom: 6px;
}

/* Input wrapper (ikon + input) */
.iletisim_input_wrap {
    position: relative;
}
.iletisim_input_ikon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    font-size: 0.85rem;
    pointer-events: none;
    transition: color 0.3s;
    z-index: 2;
}
.iletisim_input_wrap:focus-within .iletisim_input_ikon {
    color: #1c4c9e;
}

/* Input stilleri */
.iletisim_input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 0.88rem;
    color: #1d2631;
    background: #fafbfc;
    transition: all 0.3s ease;
    outline: none;
}
.iletisim_input:focus {
    border-color: #1c4c9e;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(28,76,158,0.08);
}
.iletisim_input::placeholder {
    color: #adb5bd;
    font-size: 0.85rem;
}

/* Textarea */
.iletisim_textarea {
    resize: vertical;
    min-height: 130px;
}

/* File input */
.iletisim_file_input {
    padding: 10px 14px;
    border: 2px dashed #e9ecef;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #1d2631;
    background: #fafbfc;
    transition: all 0.3s ease;
}
.iletisim_file_input:focus {
    border-color: #1c4c9e;
    box-shadow: 0 0 0 4px rgba(28,76,158,0.08);
}

/* Gönder butonu */
.iletisim_gonder_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: linear-gradient(135deg, #1c4c9e, #1d5ab5);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(28,76,158,0.25);
}
.iletisim_gonder_btn:hover {
    background: linear-gradient(135deg, #1d5ab5, #2a6fd6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28,76,158,0.35);
}
.iletisim_gonder_btn:active {
    transform: translateY(0);
}

/* ====================================================
İLETİŞİM BİLGİLERİ LİSTESİ - Modern Tasarım
==================================================== */
.iletisim_bilgi_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

/* Her iletişim bilgi kartı */
.iletisim_bilgi_item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Hover efekti */
.iletisim_bilgi_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.15), transparent);
    transition: left 0.5s ease;
}
.iletisim_bilgi_item:hover::before {
    left: 100%;
}
.iletisim_bilgi_item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 193, 7, 0.4);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* İkon wrap */
.iletisim_bilgi_ikon_wrap {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.15);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 14px;
    font-size: 24px;
    color: #ffc107;
    transition: all 0.3s ease;
}
.iletisim_bilgi_item:hover .iletisim_bilgi_ikon_wrap {
    background: rgba(255, 193, 7, 0.25);
    border-color: #ffc107;
    transform: scale(1.1) rotate(5deg);
}

/* İçerik alanı */
.iletisim_bilgi_content {
    flex: 1;
    min-width: 0;
}

/* Başlık */
.iletisim_bilgi_baslik {
    margin: 0 0 4px 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
.iletisim_bilgi_item:hover .iletisim_bilgi_baslik {
    color: #ffc107;
}

/* Yazı */
.iletisim_bilgi_yazi {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    word-break: break-word;
}

/* Ok ikonu */
.iletisim_bilgi_arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 8px;
    color: #ffc107;
    font-size: 14px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}
.iletisim_bilgi_item:hover .iletisim_bilgi_arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
    .iletisim_bilgi_item {
        padding: 16px;
        gap: 12px;
    }
    .iletisim_bilgi_ikon_wrap {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    .iletisim_bilgi_baslik {
        font-size: 0.7rem;
    }
    .iletisim_bilgi_yazi {
        font-size: 0.85rem;
    }
    .iletisim_bilgi_item:hover {
        transform: translateX(4px);
    }
}

@media (max-width: 576px) {
    .iletisim_bilgi_item {
        padding: 14px;
    }
    .iletisim_bilgi_ikon_wrap {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .iletisim_bilgi_baslik {
        font-size: 0.65rem;
    }
    .iletisim_bilgi_yazi {
        font-size: 0.8rem;
    }
}

/* İletişim Responsive */
@media (max-width: 768px) {
    .iletisim_bilgi_kart {
        padding: 1.5rem !important;
    }
    .iletisim_bilgi_kart h3 {
        font-size: 1.2rem;
    }
    .iletisim_bilgi_ikon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 0.8rem;
    }
    .iletisim_gonder_btn {
        width: 100%;
    }
}
@media (max-width: 576px) {
    .iletisim_input {
        padding: 10px 12px 10px 38px;
        font-size: 0.85rem;
    }
    .iletisim_bilgi_kart h3 {
        font-size: 1.1rem;
    }
}

/* ====================================================
GELİŞMİŞ FOOTER TASARIMI
==================================================== */

/* Footer Dekoratif Arka Plan */
.footer_deko_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
    rgba(28, 76, 158, 0.05) 0%, 
    transparent 50%, 
    rgba(255, 193, 7, 0.03) 100%);
    pointer-events: none;
    z-index: 0;
}

.footer_deko_gears {
    position: absolute;
    bottom: 20%;
    right: 5%;
    width: 300px;
    height: 300px;
    background-image: 
    radial-gradient(circle at 30% 30%, rgba(255,193,7,0.03) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(28,76,158,0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Footer Özellikler Bandı */
.footer_features_band {
    background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.02) 0%, 
    rgba(255, 255, 255, 0.05) 100%);
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 2;
}

.footer_feature_item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.footer_feature_item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer_feature_icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.25));
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    font-size: 22px;
    color: #ffc107;
    transition: all 0.3s ease;
}

.footer_feature_item:hover .footer_feature_icon {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.25), rgba(255, 193, 7, 0.35));
    border-color: #ffc107;
    transform: scale(1.1) rotate(-5deg);
}

.footer_feature_content {
    flex: 1;
}

.footer_feature_title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
}

.footer_feature_desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* 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, 193, 7, 0.3);
    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, 193, 7, 0.1);
    border-left-color: #ffc107;
    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.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer_contact_item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 193, 7, 0.4);
    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, 193, 7, 0.12);
    border-radius: 10px;
    font-size: 16px;
    color: #ffc107;
    transition: all 0.3s ease;
}

.footer_contact_item:hover .footer_contact_icon {
    background: rgba(255, 193, 7, 0.2);
    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.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer_social_btn_new:hover {
    background: #ffc107;
    color: #1d2631;
    border-color: #ffc107;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.footer_social_btn_new:active {
    transform: translateY(-2px) scale(1.05);
}

/* Footer Designer Link */
.footer_designer_link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.footer_designer_link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.footer_designer_link img {
    transition: all 0.3s ease;
}

.footer_designer_link:hover img {
    opacity: 1 !important;
    transform: scale(1.05);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer_section_title {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .footer_feature_item {
        padding: 12px;
        gap: 12px;
    }
    
    .footer_feature_icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
    
    .footer_feature_title {
        font-size: 0.9rem;
    }
    
    .footer_feature_desc {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .footer_features_band {
        padding: 20px 0;
    }
    
    .footer_feature_item {
        padding: 10px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .footer_feature_icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .footer_feature_title {
        font-size: 0.85rem;
    }
    
    .footer_feature_desc {
        font-size: 0.7rem;
    }
    
    .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_features_band {
        padding: 16px 0;
    }
    
    .footer_feature_item {
        padding: 8px;
        border-radius: 10px;
    }
    
    .footer_feature_icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .footer_feature_title {
        font-size: 0.8rem;
    }
    
    .footer_feature_desc {
        font-size: 0.65rem;
    }
    
    .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;
    }
}