/* Page breadcrumb */
.page-breadcrumb .breadcrumb {
    --bs-breadcrumb-divider: '>';
}
.page-breadcrumb .breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}
.page-breadcrumb .breadcrumb a:hover { text-decoration: underline; }

/* Page content helpers */
.page-content h2.h5 { color: var(--primary-color); }

/* Share + Font controls */
.share-actions .btn-share,
.share-actions .btn-font {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 8px;
    transition: var(--transition-fast);
}
.share-actions .btn-share:hover,
.share-actions .btn-font:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}
.share-actions .btn-share i,
.share-actions .btn-font i { font-size: 1rem; }

/* Readability width for inner pages */
.page-content .prose {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}
.page-content .prose p,
.page-content .prose li { line-height: 1.7; }

.page-content .content-wide {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1400px) {
    .page-content .prose { max-width: 900px; }
}

/* Fixed navbar boşluğunu dengele */
.inner-page .page-breadcrumb { margin-top: 100px; }
@media (max-width: 991.98px) {
    .inner-page .page-breadcrumb { margin-top: 80px; }
}

/* Breadcrumb Mobile Hide */
@media (max-width: 991.98px) {
    .page-breadcrumb {
        display: none !important;
    }
    
    /* Mobilde breadcrumb gizlendiğinde içeriği yukarı çek */
    .page-content {
        padding-top: 7rem !important;
    }
}
/* Icon-only CTA for events/projects (align with others) */
.events-all-link,
.projects-all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    background: var(--light-gray);
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.events-all-link:hover,
.projects-all-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(3px);
}

.events-all-link i,
.projects-all-link i {
    font-size: 1rem;
}
/* ===================================
   Bodrum Belediyesi - Ana Stil Dosyası
   =================================== */

/* ===================================
   Header Search Styles
   =================================== */

/* Header Search */
.header__search {
    position: relative;
    margin-right: 1rem;
}

.header__search-form {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    padding: 1rem;
    margin-top: 0.5rem;
}

.header__search-form .input-group {
    width: 100%;
}

.header__search-form .form-control {
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
    border: 1px solid var(--light-gray);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.header__search-form .btn {
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.header__search-form .search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-top: none;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    z-index: 9999;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 0.5rem;
}

/* Modal Search Results */
.modal .search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-top: none;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    z-index: 9999;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 0.5rem;
}

.modal .search-result-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--light-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal .search-result-item:last-child {
    border-bottom: none;
}

.modal .search-result-item:hover {
    background: var(--light-gray);
}

.modal .search-result-item.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Modal search input group positioning */
.modal .input-group {
    position: relative;
}

/* Modal search input styles */
.modal .search-form__input {
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background: var(--white);
    color: var(--dark);
    outline: none;
    transition: var(--transition-medium);
}

.modal .search-form__input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.modal .search-form__button {
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
}

.modal .search-form__button:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* CSS Variables - Brand Colors */
:root {
    --primary-color: #0A4D8C;
    --secondary-color: #5DA9DD;
    --accent-color: #77D8C7; /* Seçenek B – pastel deniz köpüğü */
    --accent-shadow-rgb: 119, 216, 199; /* B */
    --white: #ffffff;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --text-color: #333333;
    --border-color: #e9ecef;
    --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 16px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.3s ease-in-out;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

/* ===================================
   Base Styles & Typography
   =================================== */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

/* ===================================
   Header & Navigation
   =================================== */

.header {
    position: relative;
    z-index: 1030;
}

.header__logo {
    max-height: 60px;
    width: auto;
    transition: var(--transition-fast);
}

.header__logo:hover {
    transform: scale(1.05);
}

/* Logo variants */
.header__logo-white {
    display: block;
    max-height: 120px;
    width: auto;
}

.header__logo-blue {
    display: none;
    max-height: 60px;
    width: auto;
}

.navbar {
    background: transparent !important;
    padding: 1rem 0;
    transition: var(--transition-medium);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* İç sayfalarda navbar başlangıçta opak olsun */
.inner-page .navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-medium);
}
.inner-page .navbar .nav-link,
.inner-page .header__weather,
.inner-page .language-btn,
.inner-page .language-divider {
    color: var(--primary-color) !important;
    text-shadow: none;
}

/* Active language button in inner page state (TR on Turkish pages) */
.inner-page .language-btn.active[data-lang="tr"] {
    color: var(--secondary-color) !important;
    background: rgba(93, 169, 221, 0.2) !important;
    font-weight: 600 !important;
    border: 1px solid rgba(93, 169, 221, 0.3) !important;
    border-radius: var(--border-radius) !important;
    text-shadow: none !important;
}
.inner-page .header__logo-white { display: none; }
.inner-page .header__logo-blue { display: block; }
.inner-page .hamburger-line { background: var(--primary-color); }

.navbar.scrolled {
    background: #ffffff !important;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-medium);
    padding: 0.75rem 0;
}

.navbar.scrolled .header__logo-white {
    display: none;
}

.navbar.scrolled .header__logo-blue {
    display: block;
    max-height: 60px;
    width: auto;
}

.navbar.scrolled .nav-link {
    color: var(--primary-color) !important;
    text-shadow: none;
}

/* kaldırıldı: nav alt çizgi */

.navbar.scrolled .header__weather {
    color: var(--primary-color) !important;
}

.navbar.scrolled .language-btn {
    color: var(--primary-color) !important;
    text-shadow: none;
}

.navbar.scrolled .language-btn:hover {
    color: var(--secondary-color) !important;
    background: rgba(93, 169, 221, 0.1);
}

.navbar.scrolled .language-btn.active {
    color: var(--secondary-color) !important;
    background: rgba(93, 169, 221, 0.2);
}

.navbar.scrolled .language-btn:disabled {
    cursor: default !important;
    opacity: 0.7 !important;
    pointer-events: none !important;
}

/* Active language button in sticky state (TR on Turkish pages) */
.navbar.scrolled .language-btn.active[data-lang="tr"] {
    color: var(--secondary-color) !important;
    background: rgba(93, 169, 221, 0.2) !important;
    font-weight: 600 !important;
    border: 1px solid rgba(93, 169, 221, 0.3) !important;
    border-radius: var(--border-radius) !important;
    text-shadow: none !important;
}

.navbar.scrolled .language-btn[href] {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color) !important;
    background: rgba(93, 169, 221, 0.1) !important;
    border: 1px solid rgba(93, 169, 221, 0.3) !important;
    border-radius: var(--border-radius) !important;
    text-shadow: none !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.navbar.scrolled .language-link {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color) !important;
    background: rgba(93, 169, 221, 0.1) !important;
    border: 1px solid rgba(93, 169, 221, 0.3) !important;
    border-radius: var(--border-radius) !important;
    text-shadow: none !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    transition: var(--transition-fast);
}

.navbar.scrolled .language-link:hover {
    text-decoration: none;
    color: var(--secondary-color) !important;
    background: rgba(93, 169, 221, 0.2) !important;
    border: 1px solid rgba(93, 169, 221, 0.5) !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.navbar.scrolled .language-btn[href]:hover {
    text-decoration: none;
    color: var(--secondary-color) !important;
    background: rgba(93, 169, 221, 0.2) !important;
    border: 1px solid rgba(93, 169, 221, 0.5) !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.navbar.scrolled .language-divider {
    color: var(--primary-color) !important;
    text-shadow: none;
}

/* Hamburger Menu Button */
.header__hamburger {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-left: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--white);
    margin: 2px 0;
    transition: var(--transition-fast);
    border-radius: 1px;
}

.header__hamburger:hover .hamburger-line {
    background: var(--secondary-color);
}

.navbar.scrolled .hamburger-line {
    background: var(--primary-color);
}

.navbar.scrolled .header__hamburger:hover .hamburger-line {
    background: var(--secondary-color);
}

/* Sidebar Menu */
.sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-heavy);
    z-index: 1050;
    transition: var(--transition-medium);
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
}

.sidebar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

/* Sidebar Weather - prominent top block */
.sidebar__weather {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
}

.sidebar__weather i {
    font-size: 2rem;
}

.sidebar__weather-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.sidebar__weather-temp {
    font-size: 1.4rem;
    font-weight: 700;
}

.sidebar__weather-meta {
    font-size: 0.9rem;
    opacity: 0.9;
}

.sidebar__header h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
}

.sidebar__close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.sidebar__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sidebar__content {
    padding: 2rem;
}

.sidebar__section {
    margin-bottom: 2rem;
}

.sidebar__section h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.sidebar__section h6 i {
    color: var(--secondary-color);
}

.sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar__list li {
    margin-bottom: 0.5rem;
}

.sidebar__list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.sidebar__list a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
    transform: translateX(5px);
}

.sidebar__list a i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.sidebar__social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Body scroll lock when sidebar is open */
body.sidebar-open {
    overflow: hidden;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 0.65rem 1.2rem !important;
    transition: var(--transition-fast);
    position: relative;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
    background-color: transparent;
}

/* Dropdown positioning */
.navbar-nav .nav-item.dropdown {
    position: static;
}

.navbar-nav .nav-item.dropdown .dropdown-menu {
    position: fixed;
    top: var(--mega-menu-top, 90px);
    left: 10px;
    right: 10px;
    z-index: 9999;
    margin-top: 0;
    width: calc(100vw - 20px);
    display: none;
}

/* Menü gösterilme kuralları */
.navbar-nav .nav-item.dropdown.show .dropdown-menu,
.navbar-nav .nav-item.dropdown .dropdown-menu.show {
    display: block !important;
}

/* Click sistemi için hover gap köprüsü kaldırıldı */

@media (max-width: 991.98px) {
    /* Mobil header arka plan rengi */
    .navbar {
        background: var(--primary-color) !important;
        backdrop-filter: none;
        padding: 0.5rem 0 !important;
    }
    
    /* Mobil header için daha spesifik kurallar */
    .header .navbar {
        background: var(--primary-color) !important;
        background-color: var(--primary-color) !important;
    }
    
    .navbar.navbar-expand-lg {
        background: var(--primary-color) !important;
        background-color: var(--primary-color) !important;
    }
    
    /* Mobil header için en güçlü kurallar */
    .header .navbar.navbar-expand-lg {
        background: #0A4D8C !important;
        background-color: #0A4D8C !important;
    }
    
    .navbar.navbar-expand-lg.fixed-top {
        background: #0A4D8C !important;
        background-color: #0A4D8C !important;
    }
    
    /* Mobil header için en güçlü kural */
    body .header .navbar.navbar-expand-lg.fixed-top {
        background: #0A4D8C !important;
        background-color: #0A4D8C !important;
    }
    
    /* Mobilde beyaz logoyu göster */
    .header__logo-white {
        display: block !important;
        max-height: 60px;
        width: auto;
    }
    
    .header__logo-blue {
        display: none !important;
    }
    
    /* Mobil navbar brand padding */
    .navbar-brand {
        padding: 0.25rem 0 !important;
    }
    
    /* Mobil navbar container padding */
    .navbar .container {
        padding: 0 1rem !important;
    }
    
    /* Mobil hero section yüksekliğini azalt */
    .hero {
        min-height: 35vh !important;
        height: 35vh !important;
    }
    
    .hero__mobile-img {
        height: 100% !important;
        object-fit: cover;
    }
    
    .hero__content {
        padding: 2rem 0 !important;
    }
    
    /* Mobil hero video container */
    .hero__video-container {
        height: 100% !important;
    }
    
    .hero__video {
        height: 100% !important;
        object-fit: cover;
    }
    
    /* Mobil header element renkleri */
    .hamburger-line {
        background: var(--white) !important;
    }
    
    .header__hamburger:hover .hamburger-line {
        background: var(--secondary-color) !important;
    }
    
    /* Hamburger menü icon rengi - mobil için */
    .navbar-toggler {
        border-color: var(--white) !important;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
    
    /* Mobil navbar toggler boyutu */
    .navbar-toggler {
        padding: 0.25rem 0.5rem !important;
        font-size: 1rem !important;
    }
    
    .navbar-nav .nav-link {
        color: var(--white) !important;
    }
    
    .navbar-nav .nav-link:hover {
        color: var(--secondary-color) !important;
    }
    
    /* Mobil menü içindeki yazıların rengi - en güçlü kurallar */
    .navbar-nav .nav-link {
        color: #ffffff !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
        font-weight: 600 !important;
    }
    
    .navbar-nav .nav-link:hover {
        color: #e6f3ff !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }
    
    /* Mobil navbar için en güçlü kural */
    .navbar .navbar-nav .nav-link {
        color: #ffffff !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
    }
    
    .navbar .navbar-nav .nav-link:hover {
        color: #e6f3ff !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
    }
    
    /* En güçlü mobil navbar kuralı */
    body .header .navbar .navbar-nav .nav-link {
        color: #ffffff !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
        font-weight: 600 !important;
    }
    
    body .header .navbar .navbar-nav .nav-link:hover {
        color: #e6f3ff !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }
    
    /* Dropdown menü yazıları */
    .dropdown-menu {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
    }
    
    .dropdown-menu .nav-link {
        color: var(--primary-color) !important;
        text-shadow: none;
    }
    
    .dropdown-menu .nav-link:hover {
        color: var(--secondary-color) !important;
        background: rgba(93, 169, 221, 0.1);
    }
    
    /* Mega menü yazıları */
    .mega-menu {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .mega-menu h6 {
        color: var(--primary-color) !important;
    }
    
    .mega-menu ul li a {
        color: var(--primary-color) !important;
    }
    
    .mega-menu ul li a:hover {
        color: var(--secondary-color) !important;
        background: rgba(93, 169, 221, 0.1);
    }
    
    .navbar-nav .nav-item.dropdown .dropdown-menu {
        top: 80px;
        left: 10px;
        right: 10px;
        width: calc(100vw - 20px);
    }
}



/* Weather Info */
.header__weather {
    color: var(--white);
    font-weight: 500;
    margin-right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.header__weather i {
    font-size: 1.2rem;
}

/* Right Side Elements */
.header__right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Atatürk Görseli (Navbar) */
.header__ataturk {
    display: flex;
    align-items: center;
    margin-left: 10px;
    margin-right: 5px;
}



.header__ataturk img {
    height: 46px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.25));
}

.navbar.scrolled .header__ataturk img {
    filter: none; /* beyaz arka plan üzerinde gölgeyi kaldır */
}

.header__search-btn {
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition-fast);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Ana sayfada sticky olmayan menüde arama ikonunu gizle */
.home-page .navbar:not(.scrolled) .header__search-btn {
    display: none !important;
}

/* Auto Popup Modal Styles */
#autoPopupModal .modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-heavy);
    background: transparent;
}

#autoPopupModal .modal-body {
    padding: 0;
}

/* Popup kapatma butonu */
.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
}

.popup-close-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    color: #000;
}

/* Popup animasyonu */
#autoPopupModal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-out;
}

#autoPopupModal.show .modal-dialog {
    transform: scale(1);
}

.header__search-btn:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Language Switcher */
.header__language {
    margin-left: 5px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-btn {
    background: none;
    border: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.language-btn:hover {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
}

.language-btn.active {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Disabled language button */
.language-btn:disabled {
    cursor: default !important;
    opacity: 0.7 !important;
    pointer-events: none !important;
}

/* Active language button (TR on Turkish pages) */
.language-btn.active[data-lang="tr"] {
    color: var(--secondary-color) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    font-weight: 600 !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: var(--border-radius) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* Language button as link */
.language-btn[href] {
    display: inline-block;
    text-decoration: none;
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: var(--border-radius) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Language link (EN button) */
.language-link {
    display: inline-block;
    text-decoration: none;
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: var(--border-radius) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    transition: var(--transition-fast);
}

.language-link:hover {
    text-decoration: none;
    color: var(--secondary-color) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.language-btn[href]:hover {
    text-decoration: none;
    color: var(--secondary-color) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.language-divider {
    color: var(--white);
    font-weight: 300;
    opacity: 0.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Mega Menu Styles */
.mega-menu {
    background: linear-gradient(rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.52)), url('../images/bg_menu.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(15px);
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-heavy);
    padding: 2.5rem 0;
    margin-top: 0;
    width: calc(100vw - 20px);
    left: 10px;
    right: 10px;
    border-top: 3px solid var(--primary-color);
    position: fixed;
    top: 90px;
}

/* Mega menü içindeki tüm elementlerde shadow kaldır */
.mega-menu *,
.mega-menu *::before,
.mega-menu *::after {
    text-shadow: none !important;
}

.mega-menu ul,
.mega-menu li,
.mega-menu a,
.mega-menu h6,
.mega-menu i {
    box-shadow: none !important;
}

.mega-menu-large {
    width: calc(100vw - 20px);
    padding: 3rem 0;
}

/* Ensure mega menu doesn't overflow on small screens */
@media (max-width: 991.98px) {
    .mega-menu,
    .mega-menu-large {
        width: calc(100vw - 20px);
        left: 10px;
        right: 10px;
        padding: 1.5rem 0;
        top: 80px;
    }
}

.mega-menu .container {
    max-width: 1200px;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (max-width: 991.98px) {
    .mega-menu .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

.mega-menu h6 {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: none !important;
    box-shadow: none !important;
}

/* Tesisler iç kolon gridi spacing */
.mega-menu .category-cols ul li {
    margin-bottom: 0.5rem;
}

.mega-menu h6 i {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.mega-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu ul li {
    margin-bottom: 0.75rem;
    text-shadow: none !important;
    box-shadow: none !important;
}

.mega-menu ul li a {
    color: #555555;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    margin: 0 -0.75rem;
    text-shadow: none !important;
    box-shadow: none !important;
}

.mega-menu ul li a:hover {
    color: var(--primary-color);
    background-color: rgba(93, 169, 221, 0.1);
    transform: translateX(5px);
    font-weight: 700;
    text-shadow: none !important;
    box-shadow: none !important;
}

.mega-menu ul li a i {
    font-size: 0.8rem;
    color: var(--secondary-color);
    width: 16px;
    text-align: center;
    transition: var(--transition-fast);
    text-shadow: none !important;
    box-shadow: none !important;
}

.mega-menu ul li a:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Başkan menüsü foto boyutu sınırı */
.baskan-photo-img {
    max-height: 250px;
    width: auto;
}

/* Çok maddeli kategori listeleri için sütunlama */
.mega-menu .category-list.multicol-2 {
    column-count: 2;
    column-gap: 2rem;
}

.mega-menu .category-list.multicol-3 {
    column-count: 3;
    column-gap: 2rem;
}

.mega-menu .category-list li {
    break-inside: avoid;
}

.baskan-name {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto 0.5rem;
    padding: 0;
    border: 0;
    text-transform: none;
    letter-spacing: normal;
}

/* Override generic mega-menu h6 styles for the Başkan name */
.mega-menu h6.baskan-name {
    display: block;
    border-bottom: none;
}

.baskan-intro {
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
    background: rgba(var(--accent-shadow-rgb), 0.05);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.baskan-intro p {
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.baskan-intro p:last-child {
    margin-bottom: 0;
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
    }
    
    .header__logo-white {
        display: none;
    }
    
    .header__logo-blue {
        display: block;
    }
    
    .navbar-nav .nav-link {
        color: var(--primary-color) !important;
        border-bottom: 1px solid var(--border-color);
        padding: 1rem 0 !important;
    }
    
    .mega-menu,
    .mega-menu-large {
        min-width: auto;
        left: 0;
        transform: none;
        margin-top: 0;
        border-radius: 0;
        padding: 1rem 0;
        background: rgba(248, 249, 250, 0.95);
    }
    
    .mega-menu h6 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }
    
    .mega-menu ul li a {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .mega-menu ul li a:hover {
        transform: none;
        background-color: rgba(93, 169, 221, 0.15);
    }
    
    .header__weather,
    .header__right,
    .header__language {
        display: none !important;
    }
    
    /* Hide sidebar on mobile */
    .sidebar {
        width: 100%;
        right: -100%;
    }
    
    /* Hide scroll arrow on mobile */
    .hero__scroll-arrow {
        display: none;
    }
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0; /* Header artık fixed ve şeffaf */
}

/* Mobile Hero - Shorter height */
@media (max-width: 991.98px) {
   
    
    .hero__content {
        padding-bottom: 8vh;
    }
}

/* Mobile Menu Scroll Fix */
@media (max-width: 991.98px) {
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .dropdown-menu {
        border: none;
        box-shadow: none;
        background: transparent;
    }
    
    .mega-menu {
        position: static !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 1rem 0 !important;
    }
    
    /* Mobile Atatürk Image */
    .header__ataturk {
        display: flex !important;
        margin-right: 0.5rem;
    }
    
    .header__ataturk img {
        height: 40px;
        width: auto;
    }
    
    /* Mobile Floating Sidebar */
    .sidebar {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: auto;
        top: auto;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        box-shadow: var(--shadow-heavy);
        z-index: 1050;
        overflow: hidden;
        transition: var(--transition-medium);
        display: block !important;
        cursor: pointer;
        pointer-events: auto;
    }
    



    
    .sidebar.active {
        width: 300px;
        height: 75vh;
        border-radius: var(--border-radius-lg);
        bottom: 10px;
        left: 20px;
        right: auto;
        top: auto;
        background: var(--white);
        color: var(--text-color);
        overflow: hidden;
    }
    
    .sidebar__header {
        padding: 1rem;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .sidebar__header h5 {
        font-size: 1rem;
        color: var(--primary-color);
        margin: 0;
    }
    
    .sidebar__close {
        font-size: 1.2rem;
        padding: 0.25rem;
        color: var(--text-color);
        background: none;
        border: none;
        cursor: pointer;
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 10;
    }
    
    .sidebar__content {
        padding: 0.5rem;
        height: calc(75vh - 120px);
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .sidebar__section {
        margin-bottom: 1rem;
    }
    
    .sidebar__section h6 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
    }
    
    .sidebar__list li {
        margin-bottom: 0.25rem;
    }
    
    .sidebar__list a {
        font-size: 0.85rem;
        padding: 0.5rem;
        color: var(--text-color);
        text-decoration: none;
        display: block;
        border-radius: var(--border-radius-sm);
        transition: var(--transition-fast);
    }
    
    .sidebar__list a:hover {
        background: var(--light-gray);
        color: var(--primary-color);
    }
    
    /* Floating button when sidebar is closed */
    .sidebar:not(.active)::before {
        content: '\F479';
        font-family: 'bootstrap-icons';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--white);
        font-size: 1.5rem;
    }
    
    /* Hide content when sidebar is closed */
    .sidebar:not(.active) .sidebar__header,
    .sidebar:not(.active) .sidebar__content,
    .sidebar:not(.active) .sidebar__weather {
        display: none;
    }
}

.hero__video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero__youtube-video,
.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
}

/* Video overlay for better text readability */
.hero__video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 77, 140, 0.8) 0%,
        rgba(10, 77, 140, 0.6) 20%,
        rgba(10, 77, 140, 0.4) 40%,
        rgba(10, 77, 140, 0.2) 60%,
        rgba(10, 77, 140, 0.1) 80%,
        rgba(10, 77, 140, 0.05) 100%
    );
    z-index: 2;
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.hero__mobile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 90%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 15vh;
}

.hero__text {
    color: var(--white);
    text-align: center;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Scroll Down Arrow */
.hero__scroll-arrow {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-medium);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-arrow:hover {
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.scroll-arrow::before {
    content: '';
    width: 2px;
    height: 30px;
    background: var(--white);
    margin-bottom: 8px;
    border-radius: 1px;
    animation: scrollLine 2s infinite;
}

.scroll-arrow::after {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: scrollArrow 2s infinite;
}

/* Arrow animations */
@keyframes scrollLine {
    0%, 100% {
        height: 30px;
        opacity: 1;
    }
    50% {
        height: 40px;
        opacity: 0.7;
    }
}

@keyframes scrollArrow {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
        opacity: 1;
    }
    50% {
        transform: rotate(45deg) translateY(5px);
        opacity: 0.7;
    }
}

/* Hero Search Form */
.hero__search {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.hero-search-form {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Search Results Autocomplete */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-top: none;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--light-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--light-gray);
}

.search-result-item.active {
    background: var(--primary-color);
    color: var(--white);
}

.hero-search-form__input {
    border: none;
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    box-shadow: var(--shadow-heavy);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition-medium);
}

.hero-search-form .input-group {
    justify-content: center;
    width: 100%;
}

.hero-search-form__input:focus {
    box-shadow: var(--shadow-heavy);
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 1);
    outline: none;
}

.hero-search-form__input::placeholder {
    color: var(--dark-gray);
    opacity: 0.7;
}

.hero-search-form__button {
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
    padding: 1rem 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    transition: var(--transition-medium);
    font-size: 1.1rem;
}

.hero-search-form__button:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.hero-search-form__button:focus {
    box-shadow: var(--shadow-heavy);
    outline: none;
}

/* ===================================
   Quick Access Section
   =================================== */

.quick-access {
    background-color: #f8f9fa;
}

.quick-access__item {
    display: block;
    text-align: center;
    padding: 1.75rem 1rem;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    text-decoration: none;
    color: var(--text-color);
    height: 100%;
}

.quick-access__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    color: var(--text-color);
    text-decoration: none;
}

.quick-access__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
}

.quick-access__item:hover .quick-access__icon {
    transform: scale(1.1);
}

.quick-access__icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.quick-access__icon .custom-icon {
    width: 35px;
    height: 35px;
}

.quick-access__title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.quick-access__description {
    font-size: 0.85rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.2;
}

/* Responsive adjustments for quick access */
@media (max-width: 1199.98px) {
    .quick-access__title {
        font-size: 0.85rem;
    }
    
    .quick-access__description {
        font-size: 0.75rem;
    }
    
    .quick-access__icon {
        width: 60px;
        height: 60px;
    }
    
    .quick-access__icon i {
        font-size: 1.6rem;
    }
    
    .quick-access__icon .custom-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 767.98px) {
    .quick-access__item {
        padding: 1.5rem 0.5rem;
    }
    
    .quick-access__title {
        font-size: 0.8rem;
    }
    
    .quick-access__description {
        font-size: 0.7rem;
    }
    
    .quick-access__icon {
        width: 55px;
        height: 55px;
        margin-bottom: 0.5rem;
    }
    
    .quick-access__icon i {
        font-size: 1.4rem;
    }
    
    .quick-access__icon .custom-icon {
        width: 28px;
        height: 28px;
    }
}

/* ===================================
   Slider & Announcements Section
   =================================== */

.slider-announcements-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.slider-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem;
}



.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-medium);
    pointer-events: auto;
}

.slider-btn:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.slider-btn i {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Slider Track */
.main-slider {
    position: relative;
    overflow: hidden;
    height: 400px;
    width: 100%;
}

/* Announcements Container */
.announcements-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.announcements-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.announcements-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.announcements-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.announcements-title i {
    font-size: 1.5rem;
    color: var(--white);
}

.announcements-all-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0; /* icon-only görünüm */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.announcements-all-link:hover {
    color: var(--white);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(3px);
}

.announcements-all-link i {
    font-size: 1rem;
    transition: var(--transition-fast);
}

.announcements-all-link:hover i {
    transform: translateX(2px);
}

.announcements-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
}

.announcement-item {
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition-fast);
}

.announcement-item:last-child {
    border-bottom: none;
}

.announcement-item:hover {
    background: var(--light-gray);
}

.announcement-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition-fast);
}

.announcement-link:hover {
    color: var(--text-color);
    text-decoration: none;
}

.announcement-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1rem;
    transition: var(--transition-fast);
}

.announcement-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.announcement-item:hover .announcement-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.announcement-content {
    flex: 1;
    min-width: 0;
}

.announcement-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
    color: var(--primary-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.announcement-date {
    font-size: 0.8rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    width: 100%;
}

.slider-item {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
}

.slider-link {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.slider-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    filter: brightness(0.95);
}

.slider-link:hover .slider-image img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(var(--accent-shadow-rgb), 0.35);
}

.dot:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991.98px) {
    .announcements-slider,
    .news-slider {
        height: 350px;
    }
    
    .slider-btn {
        width: 38px;
        height: 38px;
    }
    
    .slider-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn i {
        font-size: 1rem;
    }
    
    .announcements-slider,
    .news-slider {
        height: 300px;
    }
    
    .main-slider {
        height: 240px;
    }
    
    .slider-image img {
        object-fit: contain;
        object-position: center;
    }
    
    .slider-controls {
        padding: 0 0.5rem;
    }
    
    .slider-dots {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 575.98px) {
    .main-slider {
        height: 200px;
    }
    
    .slider-container {
        padding: 0.5rem;
    }
    
    .slider-btn {
        width: 32px;
        height: 32px;
    }
    
    .slider-btn i {
        font-size: 0.9rem;
    }
    
    .news-slide-image {
        height: 220px;
    }
    
    .news-slider {
        min-height: 350px;
    }
    
    .news-slide-title {
        font-size: 0.85rem;
    }
    
    .news-slider-btn {
        width: 28px;
        height: 28px;
    }
    
    .news-slider-btn i {
        font-size: 0.8rem;
    }
}

/* ===================================
   News Slider Section
   =================================== */

.news-tenders-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

/* Tenders Container */
.tenders-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.tenders-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.tenders-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.tenders-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.tenders-title i {
    font-size: 1.5rem;
    color: var(--white);
}

.tenders-all-link {
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.tenders-all-link:hover {
    color: var(--white);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(3px);
}

.tenders-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
}

.tender-item {
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition-fast);
}

.tender-item:last-child {
    border-bottom: none;
}

.tender-item:hover {
    background: var(--light-gray);
}

.tender-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition-fast);
}

.tender-link:hover {
    text-decoration: none;
    color: var(--text-color);
}

.tender-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.tender-item:hover .tender-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.tender-content {
    flex: 1;
    min-width: 0;
}

.tender-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tender-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.news-slider-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.news-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.news-slider-title-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.news-slider-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.news-slider-title i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.news-slider-all-link {
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    transition: var(--transition-fast);
    border: 1px solid var(--primary-color);
}

.news-slider-all-link:hover {
    color: var(--white);
    text-decoration: none;
    background: var(--primary-color);
    transform: translateX(5px);
}

.news-slider-all-link i {
    font-size: 1rem;
    transition: var(--transition-fast);
}

.news-slider-all-link:hover i {
    transform: translateX(3px);
}

    .news-slider-controls {
        display: flex;
        gap: 0.5rem;
        position: static;
        z-index: 10;
        margin-left: auto;
    }

.news-slider-btn {
    background: var(--light-gray);
    border: none;
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.news-slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.news-slider-btn i {
    font-size: 1.2rem;
    font-weight: bold;
}

.news-slider {
    position: relative;
    overflow: hidden;
    height: 400px;
    width: 100%;
}

.news-slider-track {
    display: flex;
    transition: transform 0.4s ease-out;
    height: 100%;
    /* width JavaScript tarafından ayarlanacak */
    width: auto !important;
}

.news-slide {
    min-width: 50%;
    flex: 0 0 50%;
    padding: 0.5rem;
}

.news-slide-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 0.75rem;
}

.news-slide-image {
    position: relative;
    height: 280px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.news-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-slide:hover .news-slide-image img {
    transform: scale(1.05);
}

.news-slide-text {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.news-slide-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-slide-date {
    color: var(--text-muted);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.news-slide-date i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.news-slide-link {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-medium);
}

.news-slide-link:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1);
}

.news-slide-link i {
    font-size: 1rem;
}

.news-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
}

.news-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.news-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(var(--accent-shadow-rgb), 0.35);
}

.news-dot:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991.98px) {
    .news-slide-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .news-slide-image {
        flex: 0 0 auto;
        height: 250px;
        width: 100%;
    }
    
    .news-slider {
        height: auto;
        min-height: 500px;
    }
    
    .news-slide-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .news-slider-header {
        padding: 1.5rem 1.5rem 1rem;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .news-slider-title-wrapper {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        width: 100%;
    }
    
    .news-slider-title {
        font-size: 1.3rem;
    }
    
    .news-slider-all-link {
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 10;
    }
    
    .news-slide {
        min-width: 100%;
        flex: 0 0 100%;
        padding: 0.5rem;
    }
    
    .news-slide-image {
        height: 260px;
    }
    
    .news-slide-title {
        font-size: 0.9rem;
    }
    
    .news-slide-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .news-slider {
        min-height: 400px;
    }
    
    .news-slider-btn {
        width: 32px;
        height: 32px;
    }
    
    .news-slider-btn i {
        font-size: 0.9rem;
    }
}

/* ===================================
   News Section
   =================================== */

.news-section {
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.news-slider {
    position: relative;
    overflow: hidden;
}

.news-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    height: 100%;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.news-item__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-item__content {
    padding: 1.5rem;
}

.news-item__category {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.news-item__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.news-item__excerpt {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.news-item__date {
    font-size: 0.8rem;
    color: var(--dark-gray);
    opacity: 0.7;
}

/* ===================================
   Events Section
   =================================== */

.no-events-message {
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.no-events-message i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.no-events-message h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.no-events-message p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
}

.events-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.events-section .section-header {
    margin-bottom: 3rem;
}

.events-section .section-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.events-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.events-section .section-title i {
    margin-right: 1rem;
    color: var(--secondary-color);
}

/* Events Slider */
.events-slider-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.events-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.events-slider-title-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.events-slider-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.events-slider-title i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.events-slider-all-link {
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    transition: var(--transition-fast);
    border: 1px solid var(--primary-color);
}

.events-slider-all-link:hover {
    color: var(--white);
    text-decoration: none;
    background: var(--primary-color);
    transform: translateX(5px);
}

.events-slider-all-link i {
    font-size: 1rem;
    transition: var(--transition-fast);
}

.events-slider-all-link:hover i {
    transform: translateX(3px);
}

.events-slider-controls {
    display: flex;
    gap: 0.5rem;
    position: static;
    z-index: 10;
    margin-left: auto;
}

.events-slider-btn {
    background: var(--light-gray);
    border: none;
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.events-slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.events-slider-btn i {
    font-size: 1.2rem;
    font-weight: bold;
}

.events-slider {
    position: relative;
    overflow: hidden;
    height: 480px;
    width: 100%;
}

.events-slider-track {
    display: flex;
    transition: transform 0.4s ease-out;
    height: 100%;
    width: auto !important;
}

.event-slide {
    min-width: 50%;
    flex: 0 0 50%;
    padding: 0.5rem;
}

.event-slide-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 0.75rem;
}

.event-slide-image {
    position: relative;
    height: 280px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.event-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-slide:hover .event-slide-image img {
    transform: scale(1.05);
}

.event-slide-text {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.event-slide-category {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

.event-slide-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-slide-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.event-slide-location,
.event-slide-time {
    color: var(--text-muted);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.event-slide-location i,
.event-slide-time i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.event-slide-link {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-medium);
}

.event-slide-link:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1);
}

.event-slide-link i {
    font-size: 1rem;
}

.event-slide-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-slide-month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
}

.event-slide-day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
}

/* Responsive */
@media (max-width: 991.98px) {
    .event-slide-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .event-slide-image {
        flex: 0 0 auto;
        height: 250px;
        width: 100%;
    }
    
    .events-slider {
        height: auto;
        min-height: 500px;
    }
    
    .event-slide-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .events-slider-header {
        padding: 1.5rem 1.5rem 1rem;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .events-slider-title-wrapper {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        width: 100%;
    }
    
    .events-slider-title {
        font-size: 1.3rem;
    }
    
    .events-slider-all-link {
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 10;
    }
    
    .event-slide {
        min-width: 100%;
        flex: 0 0 100%;
        padding: 0.5rem;
    }
    
    .event-slide-image {
        height: 260px;
    }
    
    .event-slide-title {
        font-size: 0.9rem;
    }
    
    .events-slider {
        min-height: 400px;
    }
    
    .events-slider-btn {
        width: 32px !important;
        height: 32px !important;
    }
    
    .events-slider-btn i {
        font-size: 0.9rem;
    }
}

.event-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-fast);
    position: relative;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.event-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-fast);
}

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-card-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.event-card-month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-card-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-card-content {
    padding: 1.5rem;
}

.event-card-category {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.event-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.event-card-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.event-card-location,
.event-card-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray);
}

.event-card-location i,
.event-card-time i {
    color: var(--primary-color);
    font-size: 1rem;
}

.event-card-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition-fast);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.event-card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition-fast);
    z-index: -1;
}

.event-card-button:hover {
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-small);
}

.event-card-button:hover::before {
    left: 0;
}

.event-card-button i {
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.event-card-button:hover i {
    transform: translateX(2px);
}

/* Events Slider Controls */
.events-slider-controls {
    display: flex;
    gap: 0.5rem;
    position: static;
    z-index: 10;
    margin-left: auto;
}

.events-slider-btn {
    background: var(--light-gray);
    border: none;
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.events-slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.events-slider-btn i {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Events Slider Dots */
.events-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.events-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.events-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border: 2px solid var(--accent-color);
    box-shadow: 0 2px 6px rgba(var(--accent-shadow-rgb), 0.35);
}

/* Responsive */
@media (max-width: 991.98px) {
    .events-section .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .events-section .section-title {
        text-align: center;
        font-size: 2rem;
    }
    
    .events-section .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .events-slider-container {
        padding: 0 0.5rem;
    }
    
    .event-card {
        min-width: 300px;
        flex: 0 0 300px;
    }
    
    .event-card-content {
        padding: 1rem;
    }
    
    .event-card-title {
        font-size: 1.2rem;
    }
}

.event-location {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.event-time {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-time i {
    font-size: 0.9rem;
}

.event-slide-image {
    position: relative;
    overflow: hidden;
}

.event-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



/* Slider Dots */
.events-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
}

.events-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.events-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(var(--accent-shadow-rgb), 0.35);
}

.events-dot:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991.98px) {
    .events-slider {
        height: 350px;
    }
    
    .event-slide-content {
        flex-direction: column;
    }
    
    .event-slide-text {
        flex: 0 0 40%;
        padding: 1.5rem;
    }
    
    .event-slide-image {
        flex: 0 0 60%;
    }
    
    .event-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .events-slider {
        height: 300px;
    }
    
    .event-slide-text {
        flex: 0 0 50%;
        padding: 1rem;
    }
    
    .event-slide-image {
        flex: 0 0 50%;
    }
    
    .event-title {
        font-size: 1.1rem;
    }
    
    .event-date-badge {
        top: 1rem;
        left: 1rem;
        padding: 0.5rem;
        min-width: 60px;
    }
    
    .event-day {
        font-size: 1.2rem;
    }
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: linear-gradient(rgba(10, 77, 140, 0.7), rgba(10, 77, 140, 0.7)), url('../../assets/images/bg-footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 4rem 0 0;
    position: relative;
}

.footer__title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list li {
    margin-bottom: 0.5rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer__link:hover {
    color: var(--white);
    text-decoration: none;
}

.footer__contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.footer__contact i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.footer__newsletter .form-control {
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    padding: 0.75rem 1rem;
}

.footer__newsletter .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.footer__newsletter .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition-fast);
}

.footer__social-link:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.footer__social-link i {
    font-size: 1.2rem;
}

.footer__bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
    color: var(--white);
    font-weight: 500;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
}

/* Footer Hours */
.footer__hours p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer__hours strong {
    color: var(--white);
    font-weight: 600;
}

/* Footer Apps */
.footer-apps {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

.app-btn i {
    font-size: 1.2rem;
}

/* Footer Social Links - Updated */
.footer__social {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: var(--white);
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social-link:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--secondary-color);
}

.footer__social-link i {
    font-size: 1.1rem;
}

/* ===================================
   Projects Section
   =================================== */

.projects-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

@media (max-width: 991.98px) {
    .projects-section {
        display: none;
    }
}

.projects-section .section-header {
    margin-bottom: 3rem;
}

.projects-section .section-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.projects-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Projects Tabs */
.projects-tabs {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    background: var(--white);
    padding: 0.375rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-small);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.project-tab {
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.project-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: left 0.3s ease;
    z-index: -1;
}

.project-tab:hover::before,
.project-tab.active::before {
    left: 0;
}

.project-tab:hover,
.project-tab.active {
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-small);
}

.projects-content {
    margin-bottom: 2rem;
}

.project-tab-content {
    display: none;
}

.project-tab-content.active {
    display: block;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.no-projects-message {
    padding: 3rem 1rem;
    text-align: center;
    color: var(--text-muted);
}

.no-projects-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-projects-message h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.no-projects-message p {
    font-size: 0.9rem;
    margin: 0;
}

/* Projects Slider */
.projects-slider-container {
    position: relative;
    margin-top: 2rem;
}

.projects-slider {
    overflow: hidden;
    position: relative;
}

.projects-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.project-card {
    min-width: 300px;
    flex: 0 0 300px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-fast);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.project-category-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.375rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-small);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fast);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Projects Slider Controls */
.projects-slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.projects-slider-btn {
    background: var(--light-gray);
    border: none;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-medium);
}

.projects-slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.projects-slider-btn i {
    font-size: 1.4rem;
    font-weight: bold;
}

.projects-all-btn {
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition-fast);
    font-size: 1rem;
}

.projects-all-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

/* ===================================
   Footer Responsive
   =================================== */

@media (max-width: 991.98px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-logo-img {
        max-width: 150px;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__title {
        text-align: center;
        margin-top: 2rem;
    }
    
    .footer__contact,
    .footer__hours {
        text-align: center;
    }
    
    /* Projects Section Mobile */
    .projects-section .section-title,
    .events-section .section-title {
        font-size: 2rem;
    }
    
    .projects-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .project-tab {
        width: 100%;
        max-width: 250px;
    }
    
    .project-card {
        min-width: 280px;
        flex: 0 0 280px;
    }
    
    .projects-slider-controls {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .projects-all-btn {
        order: -1;
    }
}

/* ===================================
   Responsive Design
   =================================== */

/* Mobile First - Base styles are mobile */

/* Tablet (768px and up) */
@media (min-width: 992px) {
    .hero__title {
        font-size: 4.5rem;
    }
    
    .hero__search {
        max-width: 600px;
    }
    
    .hero-search-form__input {
        padding: 1.25rem 1.75rem;
        font-size: 1.2rem;
    }
    
    .hero-search-form__button {
        padding: 1.25rem 1.75rem;
        font-size: 1.2rem;
    }
    
    .quick-access__item {
        padding: 2.5rem 1.5rem;
    }
    
    .quick-access__icon {
        width: 90px;
        height: 90px;
    }
    
    .quick-access__icon i {
        font-size: 2.2rem;
    }
}

/* Desktop (992px and up) */
@media (min-width: 992px) {
    .hero__title {
        font-size: 5rem;
    }
    
    .hero__search {
        max-width: 700px;
    }
    
    .hero-search-form__input {
        padding: 1.5rem 2rem;
        font-size: 1.3rem;
    }
    
    .hero-search-form__button {
        padding: 1.5rem 2rem;
        font-size: 1.3rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0 0.25rem;
    }
    
    .mega-menu {
        min-width: 800px;
    }
}

/* Desktop sıkışık genişlikler için (lg - xl): menü sığdırma iyileştirmeleri */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* Atatürk görseli her zaman görünsün */
    .header__ataturk { display: flex !important; }
    .header__ataturk img { height: 40px; }
    .header__logo-white { max-height: 100px; }
    .header__logo-blue { max-height: 52px; }
    .navbar .container { padding-left: 0.5rem; padding-right: 0.5rem; }
    .navbar-nav .nav-link {
        padding: 0.35rem 0.45rem !important;
        font-size: 0.76rem;
        letter-spacing: 0.1px;
        margin: 0 0.05rem;
    }
    .header__right { gap: 0.75rem; }
    .header__language { margin-left: 0.5rem; }
    .header__search-btn { font-size: 1rem; display: none; }
    .header__hamburger { width: 32px; height: 32px; }
    .hamburger-line { width: 16px; }
    .language-divider { display: none; }
    /* Her iki dil düğmesi de görünsün, daha kompakt */
    .language-switcher { gap: 0.25rem; }
    .language-switcher .language-btn { font-size: 0.75rem; padding: 0.25rem 0.45rem; }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .header__ataturk { display: flex !important; }
    .header__ataturk img { height: 44px; }
    .header__logo-white { max-height: 110px; }
    .header__logo-blue { max-height: 56px; }
    .navbar .container { padding-left: 0.75rem; padding-right: 0.75rem; }
    .navbar-nav .nav-link { padding: 0.45rem 0.7rem !important; font-size: 0.8rem; margin: 0 0.08rem; }
    .header__right { gap: 0.8rem; }
    .header__search-btn { display: none; }
    .language-divider { display: none; }
    .language-switcher { gap: 0.3rem; }
    .language-switcher .language-btn { font-size: 0.78rem; padding: 0.3rem 0.5rem; }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .hero__title {
        font-size: 3.5rem;
    }
    
    .container {
        max-width: 1140px;
    }
}

/* Extra Large Desktop (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    .navbar .navbar-collapse { flex: 1 1 auto; }
    .header__right { flex-shrink: 0; gap: 0.9rem; }
    .header__ataturk img { height: 48px; }
    .header__logo-white { max-height: 112px; }
    .header__logo-blue { max-height: 58px; }
    .navbar-nav .nav-link { padding: 0.45rem 0.75rem !important; font-size: 0.82rem; margin: 0 0.08rem; }
    .language-divider { display: none; }
    .language-switcher { gap: 0.35rem; }
    .language-switcher .language-btn { font-size: 0.8rem; padding: 0.35rem 0.55rem; }
}

/* ===================================
   Utility Classes
   =================================== */

.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-light { background-color: var(--light-gray) !important; }

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===================================
   Accessibility Improvements
   =================================== */

/* Focus styles for better accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(10, 77, 140, 0.25);
}

/* Skip to content link for screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000080;
        --secondary-color: #0066cc;
        --text-color: #000000;
    }
}

/* Tema seçenekleri: A (sunset) ve B (seafoam) */
/* Varsayılan B. A'ya geçmek için body veya html üzerine .theme-a ekleyin */
.theme-a {
    --accent-color: #F6B47B;
    --accent-shadow-rgb: 246, 180, 123;
}

.theme-b {
    --accent-color: #77D8C7;
    --accent-shadow-rgb: 119, 216, 199;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* (removed) Scroll reveal animations */

/* ===================================
   Content Tools - Font & Share Controls
   =================================== */

/* Share Buttons */
.btn-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-share::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.2);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.btn-share:hover::before {
    opacity: 1;
}

.btn-share.facebook { 
    background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
    box-shadow: 0 2px 8px rgba(24, 119, 242, 0.3);
}
.btn-share.twitter { 
    background: linear-gradient(135deg, #1da1f2 0%, #1a91da 100%);
    box-shadow: 0 2px 8px rgba(29, 161, 242, 0.3);
}
.btn-share.telegram { 
    background: linear-gradient(135deg, #0088cc 0%, #0077b3 100%);
    box-shadow: 0 2px 8px rgba(0, 136, 204, 0.3);
}
.btn-share.whatsapp { 
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-share:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: white;
}

/* Font Control Buttons */
.btn-font {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    color: #6c757d;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-font:hover {
    border-color: #0d6efd;
    color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(13, 110, 253, 0.2);
}

.btn-font:active {
    transform: translateY(0);
}

.btn-font:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #dee2e6;
    color: #adb5bd;
}

.btn-font:disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: #dee2e6;
    color: #adb5bd;
}

/* ===================================
   Animasyonlu Sayfa Başlığı Stilleri
   =================================== */

.page-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.content-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.container-item {
    transition: all 0.3s ease;
}

.container-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.share-actions {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.map-section {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-top: 2rem;
}

/* ===================================
   Tesis Sayfası Özel Stilleri
   =================================== */

.facility-info {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.facility-info h5 {
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item h6 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.info-item p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.map-container {
    margin-top: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.content-text {
    line-height: 1.8;
    color: #495057;
    font-size: 1rem;
}

.content-text p {
    margin-bottom: 1rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

/* ===================================
   Barınak Sayfası Özel Stilleri
   =================================== */

.animal-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem 0 0 0.375rem;
}

.animal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-content {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.animal-card:hover .image-overlay {
    opacity: 1;
}

.animal-card:hover .animal-image {
    transform: scale(1.05);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details strong {
    font-size: 0.875rem;
    color: #6c757d;
}

.contact-details a,
.contact-details span {
    color: #495057;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .animal-image-container {
        border-radius: 0.375rem 0.375rem 0 0;
    }
    
    .contact-item {
        margin-bottom: 1rem;
    }
}

/* ===================================
   Basılı Kaynaklar Sayfası Özel Stilleri
   =================================== */

.resource-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem 0.375rem 0 0;
    height: 280px;
}

.resource-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-content {
    text-align: center;
}

.resource-card:hover .image-overlay {
    opacity: 1;
}

.resource-card:hover .resource-image {
    transform: scale(1.05);
}

.card-title {
    min-height: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .resource-image-container {
        height: 200px;
    }
}

/* ===================================
   Başkan Yardımcıları Sayfası Özel Stilleri
   =================================== */

.assistant-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem 0.375rem 0 0;
    height: 250px;
}

.assistant-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.assistant-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 4rem;
}

.assistant-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-content {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.assistant-card:hover .image-overlay {
    opacity: 1;
}

.assistant-card:hover .assistant-image {
    transform: scale(1.05);
}

.card-title a {
    color: #0d6efd;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #0a58ca;
}

@media (max-width: 991.98px) {
    .assistant-image-container {
        height: 300px;
    }
}

/* ===================================
   Başkan Yardımcısı Detay Sayfası Özel Stilleri
   =================================== */

.assistant-profile-section .assistant-image-container {
    width: 200px;
    height: 250px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.assistant-profile-section .assistant-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.assistant-profile-section .assistant-image-container:hover .assistant-image {
    transform: scale(1.05);
}

.resume-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.resume-content p {
    margin-bottom: 1.5rem;
}

.other-assistants-section .list-group-item {
    border: none;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem;
}

.other-assistants-section .list-group-item:last-child {
    border-bottom: none;
}

.other-assistants-section .list-group-item.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.other-assistants-section .list-group-item:hover {
    background-color: #f8f9fa;
}

@media (max-width: 991.98px) {
    .assistant-profile-section .assistant-image-container {
        width: 150px;
        height: 180px;
    }
    
    .resume-content {
        font-size: 1rem;
    }
}

/* ===================================
   Belediye Encümeni Sayfası Özel Stilleri
   =================================== */

.member-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem 0.375rem 0 0;
    height: 300px;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.council-member-card:hover .member-image {
    transform: scale(1.05);
}

.council-member-card .card-title {
    min-height: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.council-member-card .card-text {
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Başkan Kartı Özel Stilleri */
.president-card {
    border: 2px solid #0d6efd !important;
    box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.15) !important;
}

.president-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

@media (max-width: 991.98px) {
    .member-image-container {
        height: 250px;
    }
}

/* ===================================
   Belediye Meclisi Sayfası Özel Stilleri
   =================================== */

.belediye-meclisi .member-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem 0.375rem 0 0;
    height: 250px;
}

.belediye-meclisi .member-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.belediye-meclisi .council-member-card:hover .member-image {
    transform: scale(1.05);
}

.belediye-meclisi .card-title {
    min-height: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.belediye-meclisi .card-text {
    min-height: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.member-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #f8f9fa;
    color: #6c757d;
}

.member-placeholder i {
    font-size: 4rem;
}

@media (max-width: 991.98px) {
    .belediye-meclisi .member-image-container {
        height: 200px;
    }
    
    .member-placeholder i {
        font-size: 3rem;
    }
}

/* ===================================
   Bilgi Formları Sayfası Özel Stilleri
   =================================== */

.forms-section .table th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
}

.forms-section .table td {
    vertical-align: middle;
}

.forms-section .badge {
    font-size: 0.8rem;
}

.forms-section .btn-sm {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
}

.forms-section .dataTables_wrapper .dataTables_length,
.forms-section .dataTables_wrapper .dataTables_filter {
    margin-bottom: 1rem;
}

.forms-section .dataTables_wrapper .dataTables_info {
    padding-top: 1rem;
}

.forms-section .dataTables_wrapper .dataTables_paginate {
    padding-top: 1rem;
}

@media (max-width: 991.98px) {
    .forms-section .table-responsive {
        font-size: 0.9rem;
    }
    
    .forms-section .btn-sm {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
}

/* ===================================
   Bodrum Kent Konseyi Sayfası Özel Stilleri
   =================================== */

.council-members-section .member-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem 0.375rem 0 0;
    height: 300px;
}

.council-members-section .member-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.council-members-section .council-member-card:hover .member-image {
    transform: scale(1.05);
}

.council-members-section .card-title {
    min-height: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.council-members-section .card-text {
    min-height: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Başkan Kartı Özel Stilleri */
.council-members-section .president-card {
    border: 2px solid #0d6efd !important;
    box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.15) !important;
}

.council-members-section .president-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.council-members-section .member-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #f8f9fa;
    color: #6c757d;
}

.council-members-section .member-placeholder i {
    font-size: 4rem;
}

@media (max-width: 991.98px) {
    .council-members-section .member-image-container {
        height: 250px;
    }
    
    .council-members-section .member-placeholder i {
        font-size: 3rem;
    }
}

/* ===================================
   Denetim Raporları Sayfası Özel Stilleri
   =================================== */

.reports-section .table th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
}

.reports-section .table td {
    vertical-align: middle;
}

.reports-section .badge {
    font-size: 0.8rem;
}

.reports-section .btn-sm {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
}

.reports-section .dataTables_wrapper .dataTables_length,
.reports-section .dataTables_wrapper .dataTables_filter {
    margin-bottom: 1rem;
}

.reports-section .dataTables_wrapper .dataTables_info {
    padding-top: 1rem;
}

.reports-section .dataTables_wrapper .dataTables_paginate {
    padding-top: 1rem;
}

@media (max-width: 991.98px) {
    .reports-section .table-responsive {
        font-size: 0.9rem;
    }
    
    .reports-section .btn-sm {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
}

/* ===================================
   Duyurular Sayfası Özel Stilleri
   =================================== */

.announcements-section .table th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
}

.announcements-section .table td {
    vertical-align: middle;
}

.announcements-section .badge {
    font-size: 0.8rem;
}

.announcements-section .announcement-row {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.announcements-section .announcement-row:hover {
    background-color: #f8f9fa !important;
}

.announcements-section .dataTables_wrapper .dataTables_length,
.announcements-section .dataTables_wrapper .dataTables_filter {
    margin-bottom: 1rem;
}

.announcements-section .dataTables_wrapper .dataTables_info {
    padding-top: 1rem;
}

.announcements-section .dataTables_wrapper .dataTables_paginate {
    padding-top: 1rem;
}

@media (max-width: 991.98px) {
    .announcements-section .table-responsive {
        font-size: 0.9rem;
    }
    
    .announcements-section .bi-arrow-right {
        display: none;
    }
}

/* ===================================
   Duyuru Detay Sayfası Özel Stilleri
   =================================== */

.announcement-content .main-image-section img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.announcement-content .content-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.announcement-content .content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 0.375rem;
    margin: 1rem 0;
}

.announcement-content .justified-gallery {
    margin: 0 -5px;
}

.announcement-content .justified-gallery a {
    display: block;
    margin: 5px;
    border-radius: 0.375rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.announcement-content .justified-gallery a:hover {
    transform: scale(1.05);
}

.announcement-content .justified-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   Eski Başkanlar Sayfası Özel Stilleri
   =================================== */

.former-mayors-section .mayor-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem 0.375rem 0 0;
    height: 250px;
}

.former-mayors-section .mayor-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.former-mayors-section .former-mayor-card:hover .mayor-image {
    transform: scale(1.05);
}

.former-mayors-section .card-title {
    min-height: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.former-mayors-section .card-text {
    min-height: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.former-mayors-section .mayor-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #f8f9fa;
    color: #6c757d;
}

.former-mayors-section .mayor-placeholder i {
    font-size: 4rem;
}

@media (max-width: 991.98px) {
    .former-mayors-section .mayor-image-container {
        height: 200px;
    }
    
    .former-mayors-section .mayor-placeholder i {
        font-size: 3rem;
    }
}

/* ===================================
   Eski Bodrum Fotoğrafları Sayfası Özel Stilleri
   =================================== */

.gallery-section .justified-gallery {
    margin: 0 -5px;
}

.gallery-section .justified-gallery a {
    display: block;
    margin: 5px;
    border-radius: 0.375rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-section .justified-gallery a:hover {
    transform: scale(1.05);
}

.gallery-section .justified-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-section .gallery-header {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1rem;
}

@media (max-width: 991.98px) {
    .gallery-section .justified-gallery {
        margin: 0 -2px;
    }
    
    .gallery-section .justified-gallery a {
        margin: 2px;
    }
}

/* ===================================
   Etkinlik Takvimi Sayfası Özel Stilleri
   =================================== */

.events-section .event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events-section .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.events-section .event-image-container {
    position: relative;
    overflow: hidden;
}

.events-section .event-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.events-section .event-card:hover .event-image {
    transform: scale(1.05);
}

.events-section .event-date-badge {
    z-index: 2;
}

.events-section .event-category-badge {
    z-index: 2;
}

.filter-section .form-control:focus,
.filter-section .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

@media (max-width: 991.98px) {
    .events-section .event-image {
        height: 180px;
    }
}

/* Logo için özel stiller */
.events-section .event-image[src*="logo"] {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(30%);
}

/* ===================================
   Etkinlik Detay Sayfası Özel Stilleri
   =================================== */

.event-details-section .event-main-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.event-details-section .detail-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-details-section .detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.event-details-section .justified-gallery {
    margin: 0 -5px;
}

.event-details-section .justified-gallery a {
    display: block;
    margin: 5px;
    border-radius: 0.375rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.event-details-section .justified-gallery a:hover {
    transform: scale(1.05);
}

.event-details-section .justified-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

.event-details-section .map-container {
    border-radius: 0.375rem;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .event-details-section .event-main-image img {
        max-height: 300px;
    }
    
    .event-details-section .justified-gallery {
        margin: 0 -2px;
    }
    
    .event-details-section .justified-gallery a {
        margin: 2px;
    }
}

/* ===================================
   Faaliyet Raporları Sayfası Özel Stilleri
   =================================== */

.reports-section .table th {
    border-top: none;
    font-weight: 600;
}

.reports-section .table td {
    vertical-align: middle;
}

.reports-section .table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

.reports-section .btn-outline-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.reports-section .badge {
    font-size: 0.875rem;
}

.reports-section .table-responsive {
    border-radius: 0.375rem;
}

.reports-section .dataTables_wrapper .dataTables_length,
.reports-section .dataTables_wrapper .dataTables_filter {
    margin-bottom: 1rem;
}

.reports-section .dataTables_wrapper .dataTables_info,
.reports-section .dataTables_wrapper .dataTables_paginate {
    margin-top: 1rem;
}

.reports-section .dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 0.375rem;
    margin: 0 2px;
}

.reports-section .dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #0d6efd;
    border-color: #0d6efd;
    color: white !important;
}

.reports-section .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #0b5ed7;
    border-color: #0b5ed7;
    color: white !important;
}

@media (max-width: 991.98px) {
    .reports-section .table-responsive {
        font-size: 0.875rem;
    }
    
    .reports-section .badge {
        font-size: 0.75rem;
    }
    
    .reports-section .btn-sm {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}

/* ===================================
   Haber Arşivi Sayfası Özel Stilleri
   =================================== */

.news-archive-section .news-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-archive-section .news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.news-archive-section .news-title a:hover {
    color: #0d6efd !important;
}

.news-archive-section .btn-outline-primary:hover {
    transform: translateY(-1px);
}

.news-archive-section .pagination .page-link {
    border-radius: 0.375rem;
    margin: 0 2px;
}

.news-archive-section .pagination .page-link:hover {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

.news-archive-section .search-section .form-control:focus,
.news-archive-section .search-section .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

@media (max-width: 991.98px) {
    .news-archive-section .news-item .row {
        flex-direction: column;
    }
    
    .news-archive-section .news-item .col-md-4 {
        text-align: left !important;
        margin-top: 1rem;
    }
    
    .news-archive-section .pagination {
        flex-wrap: wrap;
    }
}

/* ===================================
   Haber Arşiv Detay Sayfası Özel Stilleri
   =================================== */

.news-details-section .news-text {
    line-height: 1.8;
    font-size: 1.1rem;
    width: 100%;
    max-width: none;
}

.news-details-section .card {
    width: 100%;
    max-width: none;
}

.news-details-section .card-body {
    width: 100%;
    max-width: none;
}

.news-details-section .news-text img {
    max-width: 100%;
    height: auto;
    border-radius: 0.375rem;
    margin: 1rem 0;
}

.news-details-section .news-main-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.news-details-section .justified-gallery {
    margin: 0 -5px;
}

.news-details-section .justified-gallery a {
    display: block;
    margin: 5px;
    border-radius: 0.375rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-details-section .justified-gallery a:hover {
    transform: scale(1.05);
}

.news-details-section .justified-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991.98px) {
    .news-details-section .news-text {
        font-size: 1rem;
    }
    
    .news-details-section .news-main-image img {
        max-height: 300px;
    }
    
    .news-details-section .justified-gallery {
        margin: 0 -2px;
    }
    
    .news-details-section .justified-gallery a {
        margin: 2px;
    }
}

/* ===================================
   Haberler Sayfası Özel Stilleri
   =================================== */

.news-section .news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-section .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.news-section .news-card {
    overflow: hidden !important;
    border-radius: 12px !important;
    display: flex !important;
    flex-direction: column !important;
}

.news-section .news-image-container {
    position: relative;
    overflow: hidden;
    width: 100% !important;
    height: 250px !important;
    flex-shrink: 0 !important;
}

/* En güçlü fotoğraf stili */
.news-section .news-image-container img,
.news-section .news-image-container .news-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 0 !important;
}

/* Card body düzeni */
.news-section .news-card .card-body {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 1.5rem !important;
}

.news-section .news-image,
.news-section .card-img-top.news-image {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-section .news-card:hover .news-image {
    transform: scale(1.05);
}

/* Haber kartları için özel stil */
.news-section .card.news-card .card-img-top.news-image,
.news-section .news-card .card-img-top.news-image,
body .news-section .card-img-top.news-image,
.news-section img.news-image {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    display: block !important;
    max-width: none !important;
    flex-shrink: 0 !important;
    min-height: 250px !important;
    border-radius: 0 !important;
}

.news-section .news-date-badge {
    z-index: 2;
}

.news-section .news-title a:hover {
    color: #0d6efd !important;
}

.news-section .btn-outline-primary:hover {
    transform: translateY(-1px);
}

.news-section .pagination .page-link {
    border-radius: 0.375rem;
    margin: 0 2px;
}

.news-section .pagination .page-link:hover {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

.news-section .search-section .form-control:focus,
.news-section .search-section .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

@media (max-width: 991.98px) {
    .news-section .news-image {
        height: 180px;
    }
    
    .news-section .archive-link-section .row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .news-section .archive-link-section .col-md-2,
    .news-section .archive-link-section .col-md-8 {
        width: 100%;
    }
}

/* ===================================
   Halikarnas Bülten Sayfası Özel Stilleri
   =================================== */

.bulletin-section .table th {
    background-color: var(--bs-primary);
    color: white;
    border: none;
    font-weight: 600;
}

.bulletin-section .table td {
    vertical-align: middle;
    border-color: #e9ecef;
}

.bulletin-section .table tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
    transition: background-color 0.3s ease;
}

.bulletin-section .contact-item {
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.bulletin-section .contact-item:hover {
    background-color: rgba(13, 110, 253, 0.05);
    transform: translateY(-2px);
}

/* Bülten Mobil Kartlar */
.bulletin-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.bulletin-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.bulletin-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.bulletin-card .card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.bulletin-card .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bulletin-card .meta-label {
    font-weight: 600;
    color: #666;
    min-width: 50px;
    font-size: 0.9rem;
}

.bulletin-card .year-badge {
    background: #17a2b8;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.bulletin-card .card-actions {
    margin-top: auto;
}

/* Sosyal Destek Kartları */
.support-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--bs-primary);
}

.support-card.selected {
    border-color: var(--bs-primary);
    background-color: rgba(13, 110, 253, 0.05);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.2);
}

.support-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.support-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.support-card .info-link {
    color: var(--bs-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.support-card .info-link:hover {
    color: var(--bs-primary);
    text-decoration: underline;
}

/* Mobil için destek kartları */
@media (max-width: 991.98px) {
    .support-card {
        height: 250px;
        padding: 1.5rem 1rem;
    }
    
    .support-card img {
        width: 60px;
        height: 60px;
        margin-bottom: 0.75rem;
    }
    
    .support-card h5 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .support-card .info-link {
        font-size: 0.8rem;
    }
}

/* Vefat Tablo Satırları */
.table tbody tr:nth-child(odd) {
    background-color: #f8f9fa;
}

.table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.table tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05) !important;
    transition: background-color 0.3s ease;
}

/* Vefat Mobil Kartlar */
.death-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.death-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.death-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.death-card .card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.death-card .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.death-card .meta-label {
    font-weight: 600;
    color: #666;
    min-width: 80px;
    font-size: 0.9rem;
}

.death-card .date-badge {
    background: #6c757d;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.death-card .card-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.death-card .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.death-card .detail-item:last-child {
    border-bottom: none;
}

.death-card .detail-label {
    font-weight: 600;
    color: #666;
    min-width: 100px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.death-card .detail-value {
    color: #333;
    font-size: 0.9rem;
    flex: 1;
}

/* Tesis Sağ Kolon Bilgileri */
.facility-info .info-item {
    margin-bottom: 1.5rem;
}

.facility-info .info-header {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.facility-info .info-content {
    color: #666;
    line-height: 1.5;
    display: block;
    margin-bottom: 0;
}

.facility-info .info-content iframe {
    max-width: 100%;
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px;
}

/* Muhtarlık Tablo Satırları */
.table tbody tr:nth-child(odd) {
    background-color: #f8f9fa;
}

.table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.table tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05) !important;
    transition: background-color 0.3s ease;
}

/* Bilgi Formları Mobil Kartlar */
.form-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.form-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.form-card .card-body {
    padding: 1.5rem;
}

.form-card .form-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
}

.form-card .form-department {
    margin-bottom: 1rem;
}

.form-card .form-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Önemli Numaralar Mobil Kartlar */
.phone-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.phone-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.phone-card .card-body {
    padding: 1.5rem;
}

.phone-card .service-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
}

.phone-card .phone-info {
    margin-top: 0.5rem;
}

.phone-card .phone-link {
    color: var(--bs-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.phone-card .phone-link:hover {
    background: rgba(13, 110, 253, 0.2);
    color: var(--bs-primary);
    text-decoration: none;
    transform: scale(1.02);
}

/* Page.php Tam Genişlik İçerik */
.page-content .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}

.page-content .content-card {
    max-width: none;
    width: 100%;
}

.page-content .page-text-content {
    width: 100%;
    max-width: none;
}

.page-content .prose {
    width: 100%;
    max-width: none;
}

/* Mobil için page.php içerik */
@media (max-width: 991.98px) {
    .page-content .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.bulletin-section .contact-item i {
    font-size: 2rem;
}

.bulletin-section .bulletin-icon {
    animation: float 3s ease-in-out infinite;
}

.bulletin-section .info-section .card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bulletin-section .btn-outline-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.2);
}

@media (max-width: 991.98px) {
    .bulletin-section .contact-item {
        margin-bottom: 1rem;
    }
    
    .bulletin-section .table {
        font-size: 0.9rem;
    }
    
    .bulletin-section .btn-sm {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
}

/* ===================================
   Halk Plajları Sayfası Özel Stilleri
   =================================== */

.beaches-section .beach-card {
    transition: all 0.3s ease;
    border-radius: 0.75rem;
}

.beaches-section .beach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.beaches-section .facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.beaches-section .facility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.beaches-section .facility-item.active {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--bs-primary);
}

.beaches-section .facility-item.inactive {
    opacity: 0.3;
    color: #6c757d;
}

.beaches-section .facility-item img {
    width: 30px;
    height: 30px;
    margin-bottom: 0.25rem;
}

.beaches-section .facility-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

.beaches-section .beach-icon {
    animation: float 3s ease-in-out infinite;
}

.beaches-section .info-section .card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.beaches-section .map-container {
    border-radius: 0.5rem;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .beaches-section .facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 0.5rem;
    }
    
    .beaches-section .facility-item {
        padding: 0.25rem;
    }
    
    .beaches-section .facility-item img {
        width: 25px;
        height: 25px;
    }
    
    .beaches-section .facility-item span {
        font-size: 0.7rem;
    }
}

/* ===================================
   İcraatlar Sayfası Özel Stilleri
   =================================== */

.projects-section .project-card {
    transition: all 0.3s ease;
    border-radius: 0.75rem;
    overflow: hidden;
}

.projects-section .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.projects-section .project-image {
    position: relative;
    overflow: hidden;
}

.projects-section .project-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.projects-section .project-card:hover .project-image img {
    transform: scale(1.05);
}

.projects-section .project-status {
    position: absolute;
    top: 10px;
    right: 10px;
}

.projects-section .project-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.projects-section .card-title a {
    color: var(--bs-primary);
    transition: color 0.3s ease;
}

.projects-section .card-title a:hover {
    color: var(--bs-primary-dark);
}

.projects-section .accordion-button:not(.collapsed) {
    background-color: var(--bs-primary);
    color: white;
}

.projects-section .list-group-item.active {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.projects-section .btn-check:checked + .btn-outline-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
}

@media (max-width: 991.98px) {
    .projects-section .project-image img {
        height: 150px;
    }
    
    .projects-section .filter-section .row {
        flex-direction: column;
    }
    
    .projects-section .filter-section .col-lg-4 {
        margin-bottom: 1rem;
    }
}

/* ===================================
   İcraat Detay Sayfası Özel Stilleri
   =================================== */

.project-details-section .project-text {
    line-height: 1.8;
    font-size: 1.1rem;
}

.project-details-section .project-text img {
    max-width: 100%;
    height: auto;
    border-radius: 0.375rem;
    margin: 1rem 0;
}

.project-details-section .project-main-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.project-details-section .justified-gallery {
    margin: 0 -5px;
}

.project-details-section .justified-gallery a {
    display: block;
    margin: 5px;
    border-radius: 0.375rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-details-section .justified-gallery a:hover {
    transform: scale(1.05);
}

.project-details-section .justified-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

.project-details-section .project-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (max-width: 991.98px) {
    .project-details-section .project-text {
        font-size: 1rem;
    }
    
    .project-details-section .project-main-image img {
        max-height: 300px;
    }
    
    .project-details-section .justified-gallery {
        margin: 0 -2px;
    }
    
    .project-details-section .justified-gallery a {
        margin: 2px;
    }
    
    .project-details-section .project-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===================================
   İhaleler Sayfası Özel Stilleri
   =================================== */

.tenders-section .table th {
    background-color: var(--bs-primary);
    color: white;
    border: none;
    font-weight: 600;
}

.tenders-section .table td {
    vertical-align: middle;
    border-color: #e9ecef;
}

.tenders-section .table tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
    transition: background-color 0.3s ease;
}

.tenders-section .tender-title h6 {
    color: var(--bs-primary);
    transition: color 0.3s ease;
}

.tenders-section .table tbody tr:hover .tender-title h6 {
    color: var(--bs-primary-dark);
}

.tenders-section .status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.tenders-section .status-icon.text-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.tenders-section .status-icon.text-warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.tenders-section .status-icon.text-success {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.tenders-section .status-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 991.98px) {
    .tenders-section .table {
        font-size: 0.9rem;
    }
    
    .tenders-section .tender-title h6 {
        font-size: 0.9rem;
    }
}

/* ===================================
   İhale Detay Sayfası Özel Stilleri
   =================================== */

.tender-details-section .tender-detail-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.tender-details-section .tender-info-row {
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
}

.tender-details-section .tender-info-row:last-child {
    border-bottom: none;
}

.tender-details-section .tender-label {
    font-weight: 600;
    color: #495057;
    min-width: 200px;
}

.tender-details-section .tender-value {
    color: #212529;
}

.tender-details-section .tender-section-title {
    color: #0d6efd;
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.tender-details-section .pdf-download-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.tender-details-section .pdf-download-btn:hover {
    background: #c82333;
    color: white;
    transform: translateY(-2px);
}

.tender-details-section .result-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

/* ===================================
   Sosyal Destek Talep Formu Özel Stilleri
   =================================== */

.support-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.support-card.selected {
    border-color: #0d6efd;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.support-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.support-card h5 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.support-card .info-link {
    color: #0d6efd;
    text-decoration: none;
    font-size: 0.9rem;
}

.support-card .info-link:hover {
    text-decoration: underline;
}

.form-section {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.alert {
    border-radius: 10px;
    border: none;
}

.success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #28a745;
}

.error-message {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left: 4px solid #dc3545;
}

.warning-message {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 4px solid #ffc107;
}

.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px 15px 0 0;
}

.checkbox-group {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.checkbox-group .form-check {
    margin-bottom: 0.5rem;
}

.checkbox-group .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* ===================================
   İletişim Müdürlükler Sayfası Özel Stilleri
   =================================== */

.departments-section .department-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
    text-decoration: none;
    color: inherit;
    display: block;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.departments-section .department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #0d6efd;
    color: inherit;
    text-decoration: none;
}

.departments-section .department-card h5 {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
}

.departments-section .department-icon {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 1rem;
    text-align: center;
}

.departments-section .modal-content {
    border-radius: 15px;
    border: none;
}

.departments-section .modal-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px 15px 0 0;
}

.departments-section .contact-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.departments-section .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.departments-section .contact-item:hover {
    background: rgba(13, 110, 253, 0.05);
}

.departments-section .contact-item i {
    font-size: 1.5rem;
    color: #0d6efd;
    margin-right: 1rem;
    min-width: 30px;
}

.departments-section .contact-item .contact-text {
    flex: 1;
}

.departments-section .contact-item .contact-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
}

.departments-section .contact-item .contact-value {
    color: #212529;
    margin-top: 0.25rem;
}

.departments-section .department-description {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid #0d6efd;
}

.departments-section .services-list {
    list-style: none;
    padding: 0;
}

.departments-section .services-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
}

.departments-section .services-list li:last-child {
    border-bottom: none;
}

.departments-section .services-list li i {
    color: #0d6efd;
    margin-right: 0.5rem;
}

/* İletişim Sayfası Özel Stilleri */
.contact-info-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #0d6efd;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-item:hover {
    background: rgba(13, 110, 253, 0.05);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #0d6efd;
    margin-right: 1rem;
    min-width: 30px;
    text-align: center;
}

.contact-item .contact-text {
    flex: 1;
}

.contact-item .contact-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-item .contact-value {
    color: #212529;
    font-size: 1.1rem;
}

.contact-item .contact-value a {
    color: #0d6efd;
    text-decoration: none;
}

.contact-item .contact-value a:hover {
    text-decoration: underline;
}

.working-hours {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: #495057;
    min-width: 120px;
}

.hours-time {
    color: #212529;
    font-weight: 500;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.map-container iframe {
    border: none;
    width: 100%;
    height: 450px;
}

/* Kadın ve Aile Hizmetleri Sayfası Özel Stilleri */
.video-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.video-container iframe {
    width: 100%;
    height: 468px;
    border: none;
}

.gallery-container {
    margin-top: 2rem;
}

.gallery-container img {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

.sidebar-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.sidebar-card h5 {
    color: #0d6efd;
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list a {
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem;
    border-radius: 5px;
}

.sidebar-list a:hover {
    background: rgba(13, 110, 253, 0.05);
    color: #0d6efd;
    transform: translateX(5px);
}

.sidebar-list a.active {
    background: #0d6efd;
    color: white;
}

.form-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

/* Kadın ve Aile Hizmetleri Etkinlik Sayfası Özel Stilleri */
.event-image {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

/* Kadın ve Aile Hizmetleri Etkinlikler Sayfası Özel Stilleri */
.event-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #0d6efd;
}

.event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.event-content {
    padding: 1.5rem;
}

.event-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.event-meta-item {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.event-meta-item i {
    margin-right: 0.5rem;
    color: #0d6efd;
}

.event-title {
    color: #212529;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.event-title:hover {
    color: #0d6efd;
}

.pagination-custom .page-link {
    border-radius: 8px;
    margin: 0 0.25rem;
    border: 1px solid #dee2e6;
    color: #0d6efd;
}

.pagination-custom .page-link:hover {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

.pagination-custom .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Kadın ve Aile Hizmetleri Projeler Sayfası Özel Stilleri */
.project-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #0d6efd;
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.project-content {
    padding: 1.5rem;
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.project-meta-item {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.project-meta-item i {
    margin-right: 0.5rem;
    color: #0d6efd;
}

.project-title {
    color: #212529;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.project-title:hover {
    color: #0d6efd;
}

/* Kadın ve Aile Hizmetleri Proje Detay Sayfası Özel Stilleri */
.media-container {
    margin-bottom: 2rem;
}

.main-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 110, 253, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    content: '\F4F4';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 2rem;
    z-index: 2;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.content-text {
    line-height: 1.8;
    color: #495057;
}

.content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1rem 0;
}

/* Kapalı Yollar Sayfası Özel Stilleri */
.map-container {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.map-container:hover img {
    transform: scale(1.02);
}

.table-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.table-custom {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-custom thead th {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
}

.table-custom tbody tr {
    transition: all 0.3s ease;
}

.table-custom tbody tr:hover {
    background: rgba(13, 110, 253, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.table-custom tbody td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.status-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.status-active {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.status-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #212529;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    margin-bottom: 1rem;
}

.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.5rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin: 0 0.1rem;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #0d6efd;
    color: white !important;
    border-color: #0d6efd;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #0d6efd;
    color: white !important;
    border-color: #0d6efd;
}

/* Kardeş Şehirler Sayfası Özel Stilleri */

/* Kardeş Şehir Detay Sayfası Özel Stilleri */
.logo-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.city-logo {
    max-width: 300px;
    max-height: 250px;
    object-fit: contain;
    border-radius: 10px;
    background: white;
    padding: 1.5rem;
}

.map-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 110, 253, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    content: '\F4F4';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 2rem;
    z-index: 2;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.content-text {
    line-height: 1.8;
    color: #495057;
    font-size: 1.1rem;
}

.content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1rem 0;
}
.city-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    height: 100%;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-color: #0d6efd;
}

.city-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 15px 15px 0 0;
    transition: all 0.3s ease;
    background: #f8f9fa;
    padding: 1rem;
}

.city-card:hover .city-image {
    transform: scale(1.05);
}

.city-content {
    padding: 1.5rem;
    text-align: center;
}

.city-title {
    color: #212529;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-size: 1.1rem;
}

.city-title:hover {
    color: #0d6efd;
}

.city-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 110, 253, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px 15px 0 0;
    pointer-events: none;
}

.city-card:hover .city-overlay {
    opacity: 1;
}

.city-overlay-text {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.image-container {
    position: relative;
    overflow: hidden;
}

/* Komisyonlar Sayfası Özel Stilleri */
.commission-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.commission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.commission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-color: #0d6efd;
}

.commission-card:hover::before {
    transform: scaleX(1);
}

.commission-card h5 {
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    flex: 1;
    display: flex;
    align-items: center;
}

.commission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.commission-card:hover .commission-icon {
    transform: scale(1.1) rotate(5deg);
}

.commission-info {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.commission-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.commission-link:hover {
    color: #0b5ed7;
    transform: translateX(5px);
}

.commission-link i {
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.commission-link:hover i {
    transform: translateX(3px);
}

.modal-custom .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-custom .modal-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

.modal-custom .modal-header .btn-close {
    filter: invert(1);
}

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

/* Komisyon Raporları Sayfası Özel Stilleri */
.filter-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.filter-section .form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.filter-section .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.filter-section .btn {
    border-radius: 10px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-section .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.table-custom {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.table-custom thead th {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
}

.table-custom tbody tr {
    transition: all 0.3s ease;
}

.table-custom tbody tr:hover {
    background: rgba(13, 110, 253, 0.05);
    transform: scale(1.01);
}

.table-custom tbody td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.table-custom tbody tr:last-child td {
    border-bottom: none;
}

.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin: 0.5rem 0.5rem 0.5rem 0;
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.2);
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
}

.pdf-link:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.pdf-link i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.pdf-link:hover i {
    transform: scale(1.1);
}

.date-badge {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.commission-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-block;
}

.dataTables_wrapper .dataTables_length select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.25rem 0.5rem;
}

.dataTables_wrapper .dataTables_filter input {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.5rem;
    margin-left: 0.5rem;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    outline: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin: 0 0.1rem;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #0d6efd;
    color: white !important;
    border-color: #0d6efd;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #0d6efd;
    color: white !important;
    border-color: #0d6efd;
}

.dataTables_wrapper .dataTables_info {
    color: #6c757d;
    font-weight: 500;
}

/* DataTables mobil düzenleme */
@media (max-width: 991.98px) {
    .dataTables_wrapper {
        padding: 0 2rem;
        margin: 0 -2rem;
        overflow-x: hidden;
        width: calc(100% + 4rem);
    }
    
    .dataTables_wrapper .row {
        margin: 0;
        width: 100%;
    }
    
    .dataTables_wrapper .col-sm-12,
    .dataTables_wrapper .col-md-6 {
        padding: 0.5rem;
        width: 100%;
    }
    
    .dataTables_wrapper .dataTables_paginate {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .dataTables_wrapper .dataTables_paginate::-webkit-scrollbar {
        display: none;
    }
}

/* Komisyon Raporları Mobil Düzenleme */
@media (max-width: 991.98px) {
    .table-custom {
        display: none;
    }
    
    .mobile-commission-cards {
        display: block;
    }
    
    .commission-card {
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius-lg);
        padding: 1rem;
        margin-bottom: 1rem;
        box-shadow: var(--shadow-light);
        height: 150px;
    }
    
    .commission-card {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        min-height: auto;
    }
    
    .commission-card .card-title {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--primary-color);
        margin: 0;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal;
        text-overflow: unset;
        overflow: visible;
        margin-bottom: 0.5rem;
        height: 150px;
    }
    
    .commission-card .card-meta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .commission-card .card-meta .meta-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.75rem;
        line-height: 1.4;
        padding: 0.25rem 0;
    }
    
    .commission-card .card-meta .meta-label {
        font-weight: 600;
        color: var(--text-muted);
        min-width: 60px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    
    .commission-card .pdf-link {
        background: var(--primary-color);
        color: var(--white);
        padding: 0.5rem 1rem;
        border-radius: var(--border-radius);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        font-weight: 500;
        font-size: 0.8rem;
        transition: var(--transition-fast);
        align-self: flex-start;
        margin-top: 0.5rem;
    }
    
    .commission-card .pdf-link:hover {
        background: var(--secondary-color);
        color: var(--white);
        transform: translateY(-2px);
    }
    
    .commission-card .date-badge,
    .commission-card .commission-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: 1.2;
        flex: 1;
        min-width: 0;
    }
    
    /* İhale Kartları Mobil Düzenleme */
    .table-responsive table {
        display: none;
    }
    .mobile-tender-cards {
        display: block;
    }
    
    /* Meclis Kararları Mobil Düzenleme */
    .mobile-decision-cards {
        display: block;
    }
    
    /* Tarifeler Mobil Düzenleme */
    .mobile-tariff-cards {
        display: block;
    }
    
    /* Mali Tablolar Mobil Düzenleme */
    .mobile-financial-cards {
        display: block;
    }
    
    /* Faaliyet Raporları Mobil Düzenleme */
    .mobile-report-cards {
        display: block;
    }
    
    /* Denetim Raporları Mobil Düzenleme */
    .mobile-audit-cards {
        display: block;
    }
    
    /* Duyurular Mobil Düzenleme */
    .mobile-announcement-cards {
        display: block;
    }
    
    /* DataTable Responsive Mobil Düzenleme */
    .dtr-details {
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius-lg);
        padding: 1.5rem;
        margin: 0.5rem 0;
        box-shadow: var(--shadow-light);
        cursor: pointer;
        transition: var(--transition-fast);
    }
    
    .dtr-details:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }
    
    .dtr-details table {
        width: 100%;
        margin: 0;
    }
    
    .dtr-details td {
        padding: 0.5rem;
        border: none;
        vertical-align: top;
    }
    
    .dtr-details td:first-child {
        font-weight: 600;
        color: var(--text-muted);
        width: 30%;
    }
    
    .dtr-details td:last-child {
        color: var(--primary-color);
        font-weight: 500;
    }
    
    /* Mobilde tablo satırlarını kart gibi göster */
    .dataTables_wrapper .dataTable tbody tr {
        cursor: pointer;
        transition: var(--transition-fast);
    }
    
    .dataTables_wrapper .dataTable tbody tr:hover {
        background: rgba(13, 110, 253, 0.05);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .tender-card {
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius-lg);
        padding: 2.5rem;
        margin-bottom: 1rem;
        box-shadow: var(--shadow-light);
        cursor: pointer;
        transition: var(--transition-fast);
    }
    
    .tender-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }
    
    .tender-card .card-title {
        font-size: 1.1rem !important;
        font-weight: 600;
        color: var(--primary-color);
        margin: 0;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal !important;
        text-overflow: unset !important;
        overflow: visible !important;
        margin-bottom: 0.5rem;
        height: auto;
        min-width: 0;
        flex: 1;
        height: 150px;
    }
    
    .tender-card .card-meta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .tender-card .card-meta .meta-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        font-size: 0.7rem;
        line-height: 1.3;
        padding: 0.15rem 0;
    }
    
    .tender-card .card-meta .meta-label {
        font-weight: 600;
        color: var(--text-muted);
        min-width: 60px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    
    .tender-card .date-badge,
    .tender-card .tender-number-badge,
    .tender-card .status-badge,
    .tender-card .result-badge {
        font-size: 1rem !important;
        padding: 0.38rem 0.15rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: 1.1;
        flex: 1;
        min-width: 0;
    }
    
    .tender-card .result-badge {
        background: rgba(13, 110, 253, 0.1);
        color: #0d6efd;
        text-align: center;
    }
    
    /* Bootstrap badge override */
    .tender-card .badge,
    .tender-card .badge.bg-success,
    .mobile-tender-cards .badge,
    .mobile-tender-cards .badge.bg-success {
        font-size: 0.6rem !important;
        padding: 0.1rem 0.2rem !important;
        line-height: 1.1 !important;
        font-weight: 500 !important;
        --bs-badge-padding-x: 0.2rem !important;
        --bs-badge-padding-y: 0.1rem !important;
        --bs-badge-font-size: 0.6rem !important;
    }
    
    /* Özel ihale sonuç badge'i */
    .tender-result-badge {
        background: #198754 !important;
        color: white !important;
        font-size: 0.5rem !important;
        padding: 0.05rem 0.15rem !important;
        border-radius: 0.25rem !important;
        font-weight: 500 !important;
        line-height: 1 !important;
        display: inline-block !important;
        text-align: center !important;
        min-width: auto !important;
        max-width: 60px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    /* Meclis Kararları Mobil Kartları */
    .mobile-decision-cards {
        display: block;
    }
    
    .decision-card {
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius-lg);
        padding: 2.5rem;
        margin-bottom: 1rem;
        box-shadow: var(--shadow-light);
        cursor: pointer;
        transition: var(--transition-fast);
    }
    
    .decision-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }
    
    .decision-card .card-title {
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-color);
        margin: 0;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal !important;
        text-overflow: unset !important;
        overflow: visible !important;
        margin-bottom: 0.5rem;
        height: auto;
        min-width: 0;
        flex: 1;
        height: 150px;
    }
    
    .decision-card .card-meta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .decision-card .card-meta .meta-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        font-size: 0.7rem;
        line-height: 1.3;
        padding: 0.15rem 0;
    }
    
    .decision-card .card-meta .meta-label {
        font-weight: 600;
        color: var(--text-muted);
        min-width: 60px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    
    .decision-card .date-badge,
    .decision-card .decision-number-badge {
        font-size: 1rem !important;
        padding: 0.08rem 0.15rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: 1.1;
        flex: 1;
        min-width: 0;
        text-align: center;
    }
    
    .decision-card .card-actions {
        display: flex;
        justify-content: flex-end;
        margin-top: 0.5rem;
    }
    
    .decision-card .view-link {
        background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
        color: white;
        padding: 0.35rem 0.75rem;
        border-radius: var(--border-radius);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        font-weight: 500;
        font-size: 0.7rem !important;
        transition: var(--transition-fast);
        border: 1px solid #dc3545;
        box-shadow: 0 3px 10px rgba(220, 53, 69, 0.2);
    }
    
    .decision-card .view-link:hover {
        background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    /* Tarifeler Mobil Kartları */
    .tariff-card {
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius-lg);
        padding: 2.5rem;
        margin-bottom: 1rem;
        box-shadow: var(--shadow-light);
        transition: var(--transition-fast);
    }
    
    .tariff-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }
    
    .tariff-card .card-title {
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-color);
        margin: 0;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal !important;
        text-overflow: unset !important;
        overflow: visible !important;
        margin-bottom: 0.5rem;
        height: auto;
        min-width: 0;
        flex: 1;
    }
    
    .tariff-card .card-actions {
        display: flex;
        justify-content: flex-end;
        margin-top: 0.5rem;
    }
    
    .tariff-card .pdf-link {
        background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
        color: white;
        padding: 0.35rem 0.75rem;
        border-radius: var(--border-radius);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        font-weight: 500;
        font-size: 0.7rem !important;
        transition: var(--transition-fast);
        border: 1px solid #dc3545;
        box-shadow: 0 3px 10px rgba(220, 53, 69, 0.2);
    }
    
    .tariff-card .pdf-link:hover {
        background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    /* Mali Tablolar Mobil Kartları */
    .financial-card {
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius-lg);
        padding: 2.5rem;
        margin-bottom: 1rem;
        box-shadow: var(--shadow-light);
        transition: var(--transition-fast);
    }
    
    .financial-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }
    
    .financial-card .card-title {
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-color);
        margin: 0;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal !important;
        text-overflow: unset !important;
        overflow: visible !important;
        margin-bottom: 0.5rem;
        height: auto;
        min-width: 0;
        flex: 1;
    }
    
    .financial-card .card-meta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .financial-card .card-meta .meta-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        font-size: 0.7rem;
        line-height: 1.3;
        padding: 0.15rem 0;
    }
    
    .financial-card .card-meta .meta-label {
        font-weight: 600;
        color: var(--text-muted);
        min-width: 60px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    
    .financial-card .year-badge {
        font-size: 1rem !important;
        padding: 0.08rem 0.15rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: 1.1;
        flex: 1;
        min-width: 0;
        text-align: left;
    }
    
    .financial-card .card-actions {
        display: flex;
        justify-content: flex-end;
        margin-top: 0.5rem;
    }
    
    .financial-card .pdf-link {
        background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
        color: white;
        padding: 0.35rem 0.75rem;
        border-radius: var(--border-radius);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        font-weight: 500;
        font-size: 0.7rem !important;
        transition: var(--transition-fast);
        border: 1px solid #dc3545;
        box-shadow: 0 3px 10px rgba(220, 53, 69, 0.2);
    }
    
    .financial-card .pdf-link:hover {
        background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    /* Faaliyet Raporları Mobil Kartları */
    .report-card {
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius-lg);
        padding: 2.5rem;
        margin-bottom: 1rem;
        box-shadow: var(--shadow-light);
        transition: var(--transition-fast);
    }
    
    .report-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }
    
    .report-card .card-title {
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-color);
        margin: 0;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal !important;
        text-overflow: unset !important;
        overflow: visible !important;
        margin-bottom: 0.5rem;
        height: auto;
        min-width: 0;
        flex: 1;
    }
    
    .report-card .card-meta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .report-card .card-meta .meta-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        font-size: 0.7rem;
        line-height: 1.3;
        padding: 0.15rem 0;
    }
    
    .report-card .card-meta .meta-label {
        font-weight: 600;
        color: var(--text-muted);
        min-width: 60px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    
    .report-card .date-badge,
    .report-card .unit-badge {
        font-size: 1rem !important;
        padding: 0.08rem 0.15rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: 1.1;
        flex: 1;
        min-width: 0;
        text-align: center;
        background: rgba(13, 110, 253, 0.1);
        color: #0d6efd;
        border-radius: 0.25rem;
    }
    
    .report-card .card-actions {
        display: flex;
        justify-content: flex-end;
        margin-top: 0.5rem;
    }
    
    .report-card .pdf-link {
        background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
        color: white;
        padding: 0.35rem 0.75rem;
        border-radius: var(--border-radius);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        font-weight: 500;
        font-size: 0.7rem !important;
        transition: var(--transition-fast);
        border: 1px solid #dc3545;
        box-shadow: 0 3px 10px rgba(220, 53, 69, 0.2);
    }
    
    .report-card .pdf-link:hover {
        background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    /* Denetim Raporları Mobil Kartları */
    .audit-card {
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius-lg);
        padding: 2.5rem;
        margin-bottom: 1rem;
        box-shadow: var(--shadow-light);
        transition: var(--transition-fast);
    }
    
    .audit-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }
    
    .audit-card .card-title {
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-color);
        margin: 0;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal !important;
        text-overflow: unset !important;
        overflow: visible !important;
        margin-bottom: 0.5rem;
        height: auto;
        min-width: 0;
        flex: 1;
    }
    
    .audit-card .card-meta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .audit-card .card-meta .meta-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        font-size: 0.7rem;
        line-height: 1.3;
        padding: 0.15rem 0;
    }
    
    .audit-card .card-meta .meta-label {
        font-weight: 600;
        color: var(--text-muted);
        min-width: 60px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    
    .audit-card .date-badge {
        font-size: 1rem !important;
        padding: 0.08rem 0.15rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: 1.1;
        flex: 1;
        min-width: 0;
        text-align: center;
        background: rgba(13, 110, 253, 0.1);
        color: #0d6efd;
        border-radius: 0.25rem;
    }
    
    .audit-card .card-actions {
        display: flex;
        justify-content: flex-end;
        margin-top: 0.5rem;
    }
    
    .audit-card .pdf-link {
        background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
        color: white;
        padding: 0.35rem 0.75rem;
        border-radius: var(--border-radius);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        font-weight: 500;
        font-size: 0.7rem !important;
        transition: var(--transition-fast);
        border: 1px solid #dc3545;
        box-shadow: 0 3px 10px rgba(220, 53, 69, 0.2);
    }
    
    .audit-card .pdf-link:hover {
        background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    /* Duyurular Mobil Kartları */
    .announcement-card {
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius-lg);
        padding: 2.5rem;
        margin-bottom: 1rem;
        box-shadow: var(--shadow-light);
        transition: var(--transition-fast);
        cursor: pointer;
    }
    
    .announcement-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }
    
    .announcement-card .card-title {
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-color);
        margin: 0;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        white-space: normal !important;
        text-overflow: unset !important;
        overflow: visible !important;
        margin-bottom: 0.5rem;
        height: auto;
        min-width: 0;
        flex: 1;
    }
    
    .announcement-card .card-meta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .announcement-card .card-meta .meta-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        font-size: 0.7rem;
        line-height: 1.3;
        padding: 0.15rem 0;
    }
    
    .announcement-card .card-meta .meta-label {
        font-weight: 600;
        color: var(--text-muted);
        min-width: 60px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    
    .announcement-card .date-badge {
        font-size: 1rem !important;
        padding: 0.08rem 0.15rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: 1.1;
        flex: 1;
        min-width: 0;
        text-align: center;
        background: rgba(13, 110, 253, 0.1);
        color: #0d6efd;
        border-radius: 0.25rem;
    }
    
    .announcement-card .card-actions {
        display: flex;
        justify-content: flex-end;
        margin-top: 0.5rem;
    }
    
    .announcement-card .view-link {
        background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
        color: white;
        padding: 0.35rem 0.75rem;
        border-radius: var(--border-radius);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        font-weight: 500;
        font-size: 0.7rem !important;
        transition: var(--transition-fast);
        border: 1px solid #dc3545;
        box-shadow: 0 3px 10px rgba(220, 53, 69, 0.2);
    }
    
    .announcement-card .view-link:hover {
        background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    /* Detayları Gör butonu için güçlü override */
    body .mobile-tender-cards .tender-card .view-link,
    body .table-responsive .mobile-tender-cards .tender-card .view-link {
        font-size: 0.7rem !important;
        font-weight: 500 !important;
    }
    
    .tender-card .status-badge.text-danger {
        background: rgba(220, 53, 69, 0.1);
        color: #dc3545;
    }
    
    .tender-card .status-badge.text-warning {
        background: rgba(255, 193, 7, 0.1);
        color: #ffc107;
    }
    
    .tender-card .status-badge.text-success {
        background: rgba(25, 135, 84, 0.1);
        color: #198754;
    }
    
    .tender-card .card-actions {
        display: flex;
        justify-content: flex-end;
        margin-top: 0.5rem;
    }
    
    .tender-card .view-link,
    .mobile-tender-cards .tender-card .view-link,
    .table-responsive .mobile-tender-cards .tender-card .view-link {
        background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
        color: white;
        padding: 0.35rem 0.75rem;
        border-radius: var(--border-radius);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        font-weight: 500;
        font-size: 0.7rem !important;
        transition: var(--transition-fast);
        border: 1px solid #dc3545;
        box-shadow: 0 3px 10px rgba(220, 53, 69, 0.2);
    }
    
    .tender-card .view-link:hover,
    .mobile-tender-cards .tender-card .view-link:hover,
    .table-responsive .mobile-tender-cards .tender-card .view-link:hover {
        background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    /* Mobilde tablo hücrelerinde kesme olmasın */
    .table-custom td {
        white-space: normal !important;
        text-overflow: unset !important;
        overflow: visible !important;
    }
    
    /* Pagination mobil düzenleme */
    .dataTables_wrapper .dataTables_paginate {
        padding: 1rem 2rem;
        margin: 1rem -2rem;
        overflow-x: auto;
        white-space: nowrap;
        text-align: center;
        width: calc(100% + 4rem);
        position: relative;
        left: -2rem;
    }
    
    .dataTables_wrapper .dataTables_paginate .paginate_button {
        margin: 0 0.5rem;
        padding: 0.5rem 0.75rem;
        display: inline-block;
        min-width: 45px;
        text-align: center;
        white-space: nowrap;
    }
    
    .dataTables_wrapper .dataTables_info {
        padding: 0.5rem 0;
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter {
        padding: 0.5rem 0;
        margin: 0.5rem 0;
    }
    
    /* Pagination container overflow düzeltmesi */
    .dataTables_wrapper .dataTables_paginate .paginate_button.current {
        background: var(--primary-color);
        color: var(--white) !important;
        border-color: var(--primary-color);
    }
}

@media (min-width: 992px) {
    .mobile-commission-cards {
        display: none;
    }
    
    .table-responsive table {
        display: table;
    }
    .table-responsive table {
        display: table;
    }
    .mobile-tender-cards {
        display: none;
    }
    .mobile-decision-cards {
        display: none;
    }
    .mobile-tariff-cards {
        display: none;
    }
    .mobile-financial-cards {
        display: none;
    }
    .mobile-report-cards {
        display: none;
    }
    .mobile-audit-cards {
        display: none;
    }
    .mobile-announcement-cards {
        display: none;
    }
}

/* Leleg Uygarlığı Sayfası Özel Stilleri */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 110, 253, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    content: '\F4F4';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 2rem;
    z-index: 2;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Meclis Kararları Sayfası Özel Stilleri */
.decision-number {
    font-weight: 600;
    color: #0d6efd;
    text-align: center;
}

.decision-date {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.decision-summary {
    color: #495057;
    line-height: 1.5;
}

/* Meclis Kararı Detay Sayfası Özel Stilleri */
.info-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #0d6efd;
}

.info-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-value {
    color: #212529;
    font-size: 1rem;
    line-height: 1.6;
}

.decision-content {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.decision-content h4 {
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Meclis Yayın Sayfası Özel Stilleri */
.video-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(220, 53, 69, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-card:hover .play-button {
    background: rgba(220, 53, 69, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-date {
    color: #0d6efd;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-title {
    color: #212529;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.video-title:hover {
    color: #0d6efd;
}

.no-videos {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.no-videos i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Müdürlükler Sayfası Özel Stilleri */
.department-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #0d6efd;
}

.department-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.department-card:hover .department-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.department-icon img {
    width: 40px;
    height: auto;
    filter: brightness(0) invert(1);
}

.department-name {
    color: #212529;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.department-card:hover .department-name {
    color: #0d6efd;
}

.no-departments {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.no-departments i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Muhtarlıklar Sayfası Özel Stilleri */
.neighborhood-name {
    font-weight: 600;
    color: #0d6efd;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mayor-name {
    color: #495057;
    font-weight: 600;
    line-height: 1.4;
}

.contact-info {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-info a {
    color: #0d6efd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

.mayor-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e9ecef;
    transition: all 0.3s ease;
}

.table-custom tbody tr:hover .mayor-photo {
    border-color: #0d6efd;
    transform: scale(1.1);
}

/* DataTables Custom Styling */
.dataTables_wrapper .dataTables_length select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.5rem;
}

.dataTables_wrapper .dataTables_filter input {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.dataTables_wrapper .dataTables_info {
    color: #6c757d;
    font-weight: 500;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    margin: 0 2px;
    padding: 0.5rem 1rem;
    color: #495057 !important;
    background: white;
    transition: all 0.3s ease;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #0d6efd;
    color: white !important;
    border-color: #0d6efd;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #0d6efd;
    color: white !important;
    border-color: #0d6efd;
}

/* Nöbetçi Eczaneler Sayfası Özel Stilleri */
.pharmacy-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pharmacy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #0d6efd;
}

.pharmacy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pharmacy-card:hover .pharmacy-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.pharmacy-icon i {
    color: white;
    font-size: 1.5rem;
}

.pharmacy-info {
    flex: 1;
}

.pharmacy-name {
    color: #212529;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.pharmacy-location {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.date-info {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.source-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 2rem;
    border-left: 4px solid #0d6efd;
    font-size: 0.9rem;
    color: #6c757d;
}

.source-info a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.source-info a:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

.no-pharmacies {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.no-pharmacies i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Önemli Numaralar Sayfası Özel Stilleri */
.service-name {
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-number {
    color: #0d6efd;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-number a {
    color: #0d6efd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-number a:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

/* Pazar Yerleri Sayfası Özel Stilleri */
.day-section {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #28a745;
}

.day-title {
    color: #28a745;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.market-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.market-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.market-item:last-child {
    margin-bottom: 0;
}

.market-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.market-item:hover .market-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.market-icon i {
    color: white;
    font-size: 1.2rem;
}

.market-info {
    flex: 1;
}

.market-name {
    color: #212529;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.market-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.map-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.map-title {
    color: #0d6efd;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-iframe {
    width: 100%;
    height: 480px;
    border: none;
    border-radius: 10px;
}

/* Sertifikalar Sayfası Özel Stilleri */
.certificate-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.certificate-images {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.certificate-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.certificate-image:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.certificate-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.certificate-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 110, 253, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 10px;
    z-index: 1;
}

.certificate-image:hover::before {
    opacity: 1;
}

.certificate-image::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.certificate-image:hover::after {
    opacity: 1;
}

.certificate-title {
    color: #212529;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #0d6efd;
}

@media (max-width: 991.98px) {
    .certificate-images {
        flex-direction: column;
    }
    
    .certificate-image img {
        height: 150px;
    }
}

/* Stratejik Yönetim Planları Sayfası Özel Stilleri */
.plan-title {
    color: #212529;
    font-weight: 600;
    line-height: 1.4;
}

.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pdf-link:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* Tanıtım Broşür Sayfası Özel Stilleri */
.brochure-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.brochure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.brochure-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.brochure-image img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.brochure-card:hover .brochure-image img {
    transform: scale(1.05);
}

.brochure-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 110, 253, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brochure-card:hover .brochure-overlay {
    opacity: 1;
}

.download-icon {
    background: rgba(13, 110, 253, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.brochure-card:hover .download-icon {
    transform: scale(1.1);
}

.brochure-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brochure-title {
    color: #212529;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Tanıtım Video Sayfası Özel Stilleri */
.video-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(220, 53, 69, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-card:hover .play-button {
    background: rgba(220, 53, 69, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-title {
    color: #212529;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0;
    text-align: center;
    transition: all 0.3s ease;
}

.video-title:hover {
    color: #0d6efd;
}

/* Tarifeler Sayfası Özel Stilleri */
.table-custom {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table-custom thead th {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
}

.table-custom tbody tr {
    transition: all 0.3s ease;
}

.table-custom tbody tr:hover {
    background: rgba(13, 110, 253, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.table-custom tbody td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.tariff-name {
    color: #212529;
    font-weight: 600;
    line-height: 1.4;
}

/* DataTables Custom Styling */
.dataTables_wrapper .dataTables_length select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.5rem;
}

.dataTables_wrapper .dataTables_filter input {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.dataTables_wrapper .dataTables_info {
    color: #6c757d;
    font-weight: 500;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    margin: 0 2px;
    padding: 0.5rem 1rem;
    color: #495057 !important;
    background: white;
    transition: all 0.3s ease;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #0d6efd;
    color: white !important;
    border-color: #0d6efd;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #0d6efd;
    color: white !important;
    border-color: #0d6efd;
}

/* Tiyatro Sayfası Özel Stilleri */
.video-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.video-container iframe {
    width: 100%;
    height: 468px;
    border: none;
}

.content-text {
    line-height: 1.8;
    color: #495057;
    font-size: 1rem;
}

.content-text p {
    margin-bottom: 1rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Tiyatro Bülten Sayfası Özel Stilleri */
.form-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-section h5 {
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.btn-submit {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    color: white;
}

.btn-submit:disabled {
    background: #6c757d;
    transform: none;
    box-shadow: none;
}

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

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-label {
    color: #495057;
    font-size: 0.95rem;
}

.form-check-label a {
    color: #0d6efd;
    text-decoration: underline;
}

.form-check-label a:hover {
    color: #0b5ed7;
}

.recaptcha-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

/* Tiyatro Haber Sayfası Özel Stilleri */
.news-date {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    color: #6c757d;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.news-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

/* Tiyatro Haberler Sayfası Özel Stilleri */
.news-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.news-image {
    width: 100% !important;
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    width: 100%;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-title {
    color: #212529;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.news-title:hover {
    color: #0d6efd;
}

.news-excerpt {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more-btn {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    color: white;
    text-decoration: none;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination .page-link {
    color: #0d6efd;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    margin: 0 0.25rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

.pagination .page-item.active .page-link {
    background: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

@media (max-width: 991.98px) {
    .news-card {
        flex-direction: column;
    }
    
    .news-image {
        width: 100%;
        height: 200px;
    }
    
    .news-content {
        width: 100%;
    }
}

/* Tiyatro Oyun Sayfası Özel Stilleri */
.play-poster {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.play-info {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-label {
    font-weight: 600;
    color: #495057;
    min-width: 120px;
    margin-right: 1rem;
}

.info-value {
    color: #6c757d;
    flex: 1;
}

.ticket-btn {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ticket-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3);
    color: white;
    text-decoration: none;
}

/* Tiyatro Oyunlar Sayfası Özel Stilleri */
.play-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.play-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.play-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.play-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.play-card:hover .play-image img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.play-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay-icon {
    color: white;
    font-size: 3rem;
    background: rgba(220, 53, 69, 0.9);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-card:hover .play-overlay-icon {
    background: rgba(220, 53, 69, 1);
    transform: scale(1.1);
}

.play-content {
    padding: 1.5rem;
}

.play-title {
    color: #212529;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.play-title:hover {
    color: #0d6efd;
}

/* Tiyatro Program Sayfası Özel Stilleri */
.calendar-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.calendar-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.calendar-btn {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calendar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    color: white;
    text-decoration: none;
}

.calendar-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.calendar-month {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.calendar-month-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 1.5rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.calendar-header {
    background: #0d6efd;
    color: white;
    padding: 1rem 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.calendar-day {
    background: #fff;
    padding: 0.5rem;
    min-height: 100px;
    border: 1px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
}

.calendar-day:hover {
    background: #f8f9fa;
    transform: scale(1.02);
}

.calendar-day.other-month {
    background: #f8f9fa;
    color: #6c757d;
}

.calendar-day.today {
    background: rgba(13, 110, 253, 0.1);
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.2);
}

.calendar-day.has-event {
    background: rgba(25, 135, 84, 0.05);
    border-color: #198754;
}

.day-number {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #495057;
}

.calendar-day.today .day-number {
    color: #0d6efd;
    font-weight: 700;
}

.event-item {
    background: #198754;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.7rem;
    margin-bottom: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.event-item:hover {
    background: #146c43;
    transform: scale(1.05);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.event-title {
    font-weight: 600;
    margin-bottom: 0.1rem;
    font-size: 0.7rem;
}

.event-details {
    font-size: 0.6rem;
    opacity: 0.9;
}

.event-time {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 0.1rem;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.no-events {
    color: #6c757d;
    font-size: 0.7rem;
    text-align: center;
    padding: 0.5rem;
    font-style: italic;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 991.98px) {
    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        font-size: 0.8rem;
    }
    
    .calendar-day {
        padding: 0.3rem;
        min-height: 80px;
    }
    
    .calendar-header {
        padding: 0.5rem 0.2rem;
        font-size: 0.8rem;
    }
    
    .day-number {
        font-size: 0.8rem;
    }
    
    .event-item {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
    
    .event-title {
        font-size: 0.6rem;
    }
    
    .event-details {
        font-size: 0.5rem;
    }
}

/* Uluslararası Birlikler Sayfası Özel Stilleri */
.alliance-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.alliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.alliance-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.alliance-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.alliance-card:hover .alliance-image img {
    transform: scale(1.05);
}

.alliance-content {
    padding: 1.5rem;
}

.alliance-title {
    color: #212529;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.alliance-title:hover {
    color: #0d6efd;
}

.alliance-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 991.98px) {
    .alliance-image img {
        height: 200px;
    }
    
    .alliance-title {
        font-size: 1rem;
    }
    
    .alliance-description {
        font-size: 0.8rem;
    }
}

/* ===================================
   Vefat Sayfası Özel Stilleri
   =================================== */
.table-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    overflow-x: auto;
}

.table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table thead th {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
}

.table tbody td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.table tbody tr:hover {
    background: rgba(13, 110, 253, 0.05);
}

.info-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.25rem;
}

.info-value {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.info-value:last-child {
    margin-bottom: 0;
}

.date-badge {
    background: #198754;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    min-width: 120px;
}

.dataTables_wrapper {
    margin-top: 1rem;
}

.dataTables_length select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.375rem 0.75rem;
}

.dataTables_filter input {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.375rem 0.75rem;
}

.dataTables_info {
    color: #6c757d;
    font-size: 0.9rem;
}

.dataTables_paginate .paginate_button {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.375rem 0.75rem;
    margin: 0 0.125rem;
    color: #0d6efd;
    text-decoration: none;
}

.dataTables_paginate .paginate_button.current {
    background: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

.dataTables_paginate .paginate_button:hover {
    background: #e9ecef;
    color: #0d6efd;
}

@media (max-width: 991.98px) {
    .table-container {
        padding: 1rem;
    }
    
    .table thead th,
    .table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .date-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        min-width: 100px;
    }
}

/* Yeni Doğan Sayfası Özel Stilleri */
.form-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h5 {
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-control {
    border-radius: 10px;
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-control:disabled {
    background-color: #f8f9fa;
    opacity: 0.8;
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.btn-submit {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 0.75rem 2rem !important;
    color: white !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
}

.btn-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3) !important;
    color: white !important;
    text-decoration: none !important;
}

.btn-check {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 0.75rem 1.5rem !important;
    color: white !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
    cursor: pointer !important;
    min-height: 48px !important;
}

.btn-check:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3) !important;
    color: white !important;
    text-decoration: none !important;
}

.btn-check:focus {
    outline: none !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25) !important;
}

.info-box {
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.info-box h6 {
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-box p {
    color: #495057;
    margin-bottom: 0.5rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.alert-custom {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    border-left: 4px solid #198754;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.radio-group {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
}

.form-check-label {
    font-weight: 500;
    color: #495057;
}

.date-selects {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.date-selects select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.5rem;
    min-width: 80px;
}

.kvkk-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.kvkk-info a {
    color: #0d6efd;
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .date-selects {
        flex-direction: column;
        gap: 1rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .btn-submit,
    .btn-check {
        width: 100% !important;
        justify-content: center !important;
        margin-top: 1rem !important;
    }
    
    .col-md-2.d-flex {
        margin-top: 1rem;
    }
}

/* Yönetmelikler Sayfası Özel Stilleri */
.regulation-name {
    font-weight: 500;
    color: #495057;
}

@media (max-width: 991.98px) {
    .content-card {
        padding: 1.5rem;
    }
    
    .table thead th,
    .table tbody td {
        padding: 0.75rem 0.5rem;
    }
}

/* Zabıta Duyurular Sayfası Özel Stilleri */
.announcement-date {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.9rem;
}

.announcement-title {
    font-weight: 500;
    color: #495057;
}

@media (max-width: 991.98px) {
    .content-card {
        padding: 1.5rem;
    }
    
    .table thead th,
    .table tbody td {
        padding: 0.75rem 0.5rem;
    }
}

/* Tiyatro Kadro Sayfası Özel Stilleri */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.staff-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.staff-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.staff-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.staff-card:hover .staff-photo {
    transform: scale(1.05);
}

.staff-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.staff-card:hover .staff-overlay {
    opacity: 1;
}

.staff-content {
    padding: 1.5rem;
    text-align: center;
}

.staff-name {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.staff-role {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.staff-modal-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f8f9fa;
}

.staff-modal-info {
    text-align: center;
}

@media (max-width: 991.98px) {
    .staff-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .staff-image {
        height: 200px;
    }
    
    .staff-content {
        padding: 1rem;
    }
    
    .staff-name {
        font-size: 1rem;
    }
}
