/* Modern & Accessible Theme for E-Belediye (v10 - Even Bigger Fonts) */
:root {
    /* Main Colors */
    --primary-color: #004d40;
    /* Dark Teal */
    --primary-light: #00796b;
    --secondary-color: #d81b60;
    /* Pinkish Red */
    --background-color: #f4f6f8;
    --surface-color: #ffffff;
    --text-primary: #121212;
    --text-secondary: #424242;
    --border-color: #bdbdbd;

    /* Typography & Spacing */
    --font-stack: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    --font-size-base: 16px;
    --space-md: 16px;
    --space-lg: 24px;
}

body {
    font-family: var(--font-stack);
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: var(--font-size-base);
    transition: font-size 0.3s ease;
}

/* --- Accessibility Skip Link --- */
.skip-link {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--secondary-color);
    color: white;
    padding: 12px 20px;
    z-index: 10001;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0 0 8px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.skip-link:focus {
    transform: translateY(0);
    outline: 3px solid var(--primary-color);
}

/* --- Layout Structure --- */
.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* HEADER (White Area) */
.header {
    background-color: var(--surface-color);
    padding: 10px 0;
    position: relative;
    z-index: 50;
    border-bottom: 0px;
}

/* --- LOGIN AREA (Header Top Right) --- */
.user-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-menu-list>li {
    display: inline-block;
}

.user-menu-list>li>a,
.user-menu-list .btnloginAreaforRight,
.user-menu-list .menuLoginBtn {
    color: var(--primary-color) !important;
    font-weight: 700;
    padding: 8px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid transparent;
    font-size: 1.25rem;
    /* ~20px - Çok daha büyük */
}

.user-menu-list>li>a:hover,
.user-menu-list .btnloginAreaforRight:hover,
.user-menu-list .menuLoginBtn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--secondary-color) !important;
}

.user-menu-list i {
    margin-right: 8px;
    font-size: 1.2em;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .user-menu-list {
        float: none;
        justify-content: center;
        margin-top: 10px;
        flex-wrap: wrap;
    }
}

/* --- MAIN MENU (Yeşil/Mavi Bar) --- */
nav.menuArea.navbar {
    background-color: var(--primary-color) !important;
    border: none !important;
    margin-bottom: 0;
    min-height: 56px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 0;
}

nav.menuArea .container {
    background: transparent !important;
}

nav.menuArea .navbar-nav > li > a,
.navbar-nav > li > a,
.menuArea .container .navbar-nav > li > a {
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 16px 20px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
    background-color: transparent !important;
    font-size: 1.15rem !important;
    letter-spacing: 0.3px !important;
    transition: all 0.25s ease !important;
}

nav.menuArea .navbar-nav > li > a:hover,
nav.menuArea .navbar-nav > li > a:focus,
nav.menuArea .navbar-nav > .open > a,
nav.menuArea .navbar-nav > .active > a,
.menuArea .container .navbar-nav > li > a:hover,
.menuArea .container .navbar-nav > .open > a {
    background-color: rgba(0, 0, 0, 0.18) !important;
    color: #ffffff !important;
}

nav.menuArea .navbar-toggle {
    border-color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
}

nav.menuArea .navbar-toggle .icon-bar {
    background-color: #fff;
}

nav.menuArea .navbar-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

nav.menuArea .navbar-collapse {
    background-color: var(--primary-color) !important;
    border-color: rgba(255, 255, 255, 0.1);
}

nav.menuArea .dropdown-menu {
    background-color: #ffffff !important;
    border: 2px solid var(--primary-color) !important;
    border-top: none !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
    border-radius: 0 0 10px 10px !important;
    padding: 6px 0 !important;
    margin-top: 0 !important;
}

nav.menuArea .dropdown-menu > li > a,
.menuArea .container .navbar-nav > li > .dropdown-menu > li > a {
    color: #222222 !important;
    padding: 10px 22px !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    transition: all 0.2s ease !important;
}

nav.menuArea .dropdown-menu > li > a:hover,
.menuArea .container .navbar-nav > li > .dropdown-menu > li > a:hover {
    background-color: rgba(0, 77, 64, 0.08) !important;
    color: var(--primary-color) !important;
    padding-left: 26px !important;
}

/* --- Content & Cards --- */
.shortContentLayout,
.card,
.content-box {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-light);
}

/* --- ONLINE HİZMETLER SECTION (Revize Edildi - Renkli & Modern) --- */
.textSeperatorArea {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 15px;
    margin: 40px 0 30px 0;
    display: table;
    letter-spacing: 0.5px;
}

.onlineContentArea {
    padding: 10px 0 40px 0;
}

/* KART TASARIMI */
.onlineContentArea .buttonArea {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fcfd 100%);
    border: 1px solid #e0e0e0;
    border-bottom: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 190px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    z-index: 1;
}

/* Hover Durumu */
.onlineContentArea .buttonArea:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 77, 64, 0.2);
    border-color: var(--secondary-color);
    background: #fff;
}

/* İkon Tasarımı */
.onlineContentArea .buttonArea i {
    font-size: 2rem;
    color: #fff;
    background: var(--primary-color);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: inline-block;
    vertical-align: middle;
    border: none;
}

.onlineContentArea .buttonArea:hover i {
    background: var(--secondary-color);
    transform: rotateY(360deg);
}

/* Yazı Tasarımı */
.onlineContentArea .buttonArea span {
    font-size: 1.05rem;
    font-weight: 700;
    color: #455a64;
    line-height: 1.4;
    transition: color 0.3s ease;
    border: none;
    margin: 0;
    padding: 0;
}

.onlineContentArea .buttonArea:hover span {
    color: var(--primary-color);
}

/* Footer & Other */
.footer {
    background-color: #263238;
    color: #eceff1;
    padding: 40px 0;
    border-top: 5px solid var(--secondary-color);
    font-size: 1.25rem;
    /* Footer daha da büyütüldü */
}

.footer a {
    color: #80cbc4;
    font-size: 1.25rem;
}

/* Loading Overlay & Accessibility ... (Same as before) */
#loading,
.bootbox-loading,
.loading-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.96);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#loading::after,
.bootbox-loading::after,
.loading-mask::after {
    content: "";
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

#loading::before {
    content: "İşleminiz Yapılıyor...";
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-primary);
    order: 2;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.modal-content {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 1px solid #eee;
    background: #fafafa;
    border-radius: 8px 8px 0 0;
}

.modal-footer {
    border-top: 1px solid #eee;
    background: #fafafa;
    border-radius: 0 0 8px 8px;
}

/* Accessibility */
.a11y-trigger-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #fff;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.a11y-panel {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 300px;
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 15px;
    z-index: 9998;
    display: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.a11y-panel.active {
    display: block;
}

.a11y-panel-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.a11y-close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.a11y-control-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
}

.a11y-btn {
    padding: 5px 10px;
    cursor: pointer;
    background: #eee;
    border: 1px solid #ddd;
}

.a11y-reset-all {
    width: 100%;
    padding: 8px;
    background: #607d8b;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--secondary-color);
}

input:checked+.slider:before {
    transform: translateX(20px);
}

html.a11y-high-contrast {
    filter: invert(1) hue-rotate(180deg);
}

html.a11y-high-contrast img,
html.a11y-high-contrast video {
    filter: invert(1) hue-rotate(180deg);
}

html.a11y-links-highlight a {
    background-color: #ffff00 !important;
    color: #000 !important;
    text-decoration: underline !important;
    font-weight: bold;
}

html.a11y-readable-font * {
    font-family: Arial, sans-serif !important;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   SLIDER & SAĞ ALAN HİZALAMA (Eşit Boy & Üst Menü Boşluğu)
   ========================================================================== */
.slideArea-main-row {
    display: flex !important;
    align-items: stretch !important;
    margin-top: 24px !important;
    margin-bottom: 25px !important;
}

.slideArea-left-col {
    display: flex !important;
    flex-direction: column !important;
}

.slideArea-right-col {
    display: flex !important;
    flex-direction: column !important;
}

.slider-wrapper-custom {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    background-color: #1a1a1a;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.slider-wrapper-custom #carousel {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 100% !important;
    flex: 1 1 auto !important;
}

.slider-wrapper-custom #carousel .carousel-inner {
    height: 100% !important;
}

.slider-wrapper-custom #carousel .carousel-inner .item {
    height: 100% !important;
}

.slider-wrapper-custom #carousel .carousel-inner .item a {
    height: 100% !important;
    display: block !important;
}

.slider-wrapper-custom #carousel .carousel-inner img {
    width: 100% !important;
    height: 100% !important;
    min-height: 430px !important;
    max-height: 480px !important;
    object-fit: cover !important;
    border-radius: 14px !important;
}

/* Carousel Caption ayarı - butonlarla çakışmaması için yukarı alındı */
.slider-wrapper-custom .carousel-caption {
    bottom: 120px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

/* Cam Efektli (Glassmorphism) Yatay Kaydırmalı Buton Paneli */
.slider-overlay-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    padding: 16px 14px 14px 14px;
    background: linear-gradient(0deg, rgba(0, 35, 30, 0.95) 0%, rgba(0, 77, 64, 0.85) 55%, rgba(0, 77, 64, 0) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Butonları saran kaydırılabilir alan */
.slider-buttons-scroll-wrapper {
    flex: 1 1 auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 6px 4px;
}

.slider-buttons-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

/* Buton İzi (Track) - Asla Alta Atmaz, Tek Satırda Dizer */
.slider-buttons-track {
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: max-content;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Sağ & Sol Kaydırma Ok Butonları */
.slider-btn-scroll-arrow {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.12) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2;
    outline: none !important;
    padding: 0;
}

.slider-btn-scroll-arrow:hover {
    background: #ffffff;
    color: var(--primary-color);
    transform: scale(1.12);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    border-color: #ffffff;
}

/* Buton Kartı Tasarımı - Sabit Genişlik & Tek Satır */
.slider-quick-btn {
    flex: 0 0 135px !important;
    width: 135px !important;
    min-width: 135px !important;
    max-width: 135px !important;
    flex-shrink: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.12) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    padding: 10px 10px;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), inset 0 1px 1px rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
    white-space: normal;
}

/* Buton Hover Efekti */
.slider-quick-btn:hover {
    background: #ffffff !important;
    color: var(--primary-color) !important;
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 255, 255, 0.4);
    border-color: #ffffff;
}

/* İkon Alanı - Daha Büyük & Canlı */
.slider-quick-btn .quick-btn-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.18) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.5);
    transition: all 0.35s ease;
}

.slider-quick-btn .quick-btn-icon i {
    font-size: 22px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
    transition: all 0.35s ease;
}

.slider-quick-btn:hover .quick-btn-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff4081 100%);
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(216, 27, 96, 0.45);
    transform: rotate(360deg);
}

.slider-quick-btn:hover .quick-btn-icon i {
    color: #ffffff;
    text-shadow: none;
}

/* Başlık Yazısı - Net & 2 Satır Hizalı */
.slider-quick-btn .quick-btn-title {
    font-size: 0.95rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.25;
    color: #ffffff;
    letter-spacing: 0.2px;
    transition: color 0.2s ease;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.5em;
}

.slider-quick-btn:hover .quick-btn-title {
    color: var(--primary-color) !important;
    text-shadow: none;
}

/* Ok Kontrolleri Hizalama (Slider Ana Okları) */
.slider-wrapper-custom .carousel-control {
    z-index: 16;
    width: 8%;
    height: 50%;
    top: 10%;
    opacity: 0.7;
}

.slider-wrapper-custom .carousel-control:hover {
    opacity: 1;
}

/* Mobil & Tablet Uyumluluk */
@media (max-width: 991px) {
    .slider-overlay-buttons {
        position: relative;
        background: var(--primary-color);
        padding: 12px 10px;
        border-radius: 0 0 14px 14px;
    }
    .slider-wrapper-custom .carousel-caption {
        bottom: 20px;
    }
}

@media (max-width: 767px) {
    .slider-quick-btn {
        flex: 0 0 115px !important;
        width: 115px !important;
        min-width: 115px !important;
        max-width: 115px !important;
        padding: 8px;
    }
    .slider-quick-btn .quick-btn-icon {
        width: 38px;
        height: 38px;
    }
    .slider-quick-btn .quick-btn-icon i {
        font-size: 18px;
    }
    .slider-quick-btn .quick-btn-title {
        font-size: 0.82rem;
    }
}

/* ==========================================================================
   MODERN & ESTETİK FOOTER (Kusursuz Hizalama & Site.css Reset)
   ========================================================================== */
.footer {
    background: linear-gradient(180deg, #00362c 0%, #001a15 100%) !important;
    border-top: 4px solid var(--secondary-color) !important;
    padding: 25px 0 0 0 !important;
    color: #ffffff !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    clear: both !important;
    overflow: visible !important;
    z-index: 10 !important;
}

.footer .container {
    background-color: transparent !important;
    border: none !important;
    height: auto !important;
    max-width: 1250px !important;
    padding: 0 15px !important;
}

.footer-top-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    padding-bottom: 25px !important;
    margin: 0 !important;
    width: 100% !important;
}

/* 1. Sol Kolon: Logo */
.footer-logo-col {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
}

#EBelediyeLogo, .logoBottom {
    display: block !important;
    height: 36px !important;
    width: 130px !important;
    background: url("../../../images/ThemeImages/eBelediyeLogoKucuk.png") no-repeat left center !important;
    background-size: contain !important;
    filter: brightness(0) invert(1) !important;
    opacity: 0.95 !important;
    margin: 0 !important;
}

/* 2. Orta Kolon: Alt Menü Linkleri */
.footer-links-col {
    flex: 1 1 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 20px !important;
}

.footerMenuArea {
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    width: auto !important;
}

.footerMenuArea ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.footerMenuArea ul li {
    float: none !important;
    border: none !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-block !important;
}

.footerMenuArea ul li a {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
}

.footerMenuArea ul li a:hover {
    color: var(--primary-color) !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3) !important;
    text-shadow: none !important;
}

/* 3. Sağ Kolon: Sosyal Medya İkonları */
.footer-social-col {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
}

.sosyalAglar {
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    text-align: right !important;
    float: none !important;
}

.sosyalAglar-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
}

.sosyalAglar a.social-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    line-height: 44px !important;
    border-radius: 50% !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
}

.sosyalAglar a.social-btn i {
    font-size: 19px !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.sosyalAglar a.social-btn:hover {
    transform: translateY(-5px) scale(1.12) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45) !important;
    border-color: #ffffff !important;
}

.sosyalAglar a.social-facebook:hover {
    background: #1877f2 !important;
}

.sosyalAglar a.social-twitter:hover {
    background: #000000 !important;
}

.sosyalAglar a.social-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
}

.sosyalAglar a.social-youtube:hover {
    background: #ff0000 !important;
}

.sosyalAglar a.social-linkedin:hover {
    background: #0a66c2 !important;
}

.sosyalAglar a.social-whatsapp:hover {
    background: #25d366 !important;
}

/* 4. Alt Bilgi: Copyright */
.footer-bottom-row {
    width: 100% !important;
}

#copyright, .copyright {
    position: static !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    line-height: normal !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 14px 15px !important;
    margin: 0 -15px !important;
    font-size: 13.5px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-align: center !important;
    letter-spacing: 0.3px !important;
}

.copyright-content {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

.copyright-divider {
    color: rgba(255, 255, 255, 0.35) !important;
}

.copyright a {
    color: #80cbc4 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.copyright a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

/* Mobil Responsive */
@media (max-width: 991px) {
    .footer-top-row {
        flex-direction: column !important;
        gap: 20px !important;
        text-align: center !important;
    }
    .footer-links-col {
        padding: 0 !important;
    }
    .sosyalAglar {
        text-align: center !important;
    }
    .sosyalAglar-wrapper {
        justify-content: center !important;
    }
    .copyright-content {
        flex-direction: column !important;
        gap: 6px !important;
    }
    .copyright-divider {
        display: none !important;
    }
}