/* Türk Haber Sitesi - Sade Tasarım CSS */

/* Ana Renkler - Light & Dark Tema */
:root {
    --primary-color: #dc3545;
    --secondary-color: #ffffff;
    --accent-color: #6c757d;
    --light-gray: #f8f9fa;
    --dark-gray: #495057;
    --border-color: #dee2e6;
    --text-color: #212529;
    --text-muted: #6c757d;
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --header-bg: #ffffff;
    --footer-bg: #f8f9fa;
}

/* Simple Dark Mode */
body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
    background-color: #121212;
    color: #ffffff;
}

body.dark-mode .top-bar {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

body.dark-mode .main-header {
    background-color: #1a1a1a;
    border-bottom-color: #404040;
}

body.dark-mode .nav-link {
    color: #ffffff;
}

body.dark-mode .nav-link:hover {
    background-color: #2d2d2d;
    color: #dc3545;
}

body.dark-mode .nav-link.active {
    background-color: #dc3545;
    color: white;
}

body.dark-mode .btn-search-header {
    background-color: #2d2d2d;
    border-color: #404040;
    color: #b0b0b0;
}

body.dark-mode .btn-search-header:hover {
    background-color: #dc3545;
    color: white;
}

body.dark-mode .btn-mobile {
    background-color: #dc3545;
    color: white;
}

body.dark-mode .offcanvas {
    background-color: #1a1a1a;
}

body.dark-mode .mobile-menu-item {
    color: #ffffff;
    border-bottom-color: #404040;
}

body.dark-mode .mobile-menu-item:hover {
    background-color: #2d2d2d;
    color: #dc3545;
}

body.dark-mode .mobile-menu-item.active {
    background-color: #dc3545;
    color: white;
}

body.dark-mode .footer-section {
    background-color: #0d0d0d;
    color: #ffffff;
}

body.dark-mode .footer-bottom {
    background-color: #1a1a1a;
}

body.dark-mode .footer-links a {
    color: #b0b0b0;
}

body.dark-mode .footer-links a:hover {
    color: #dc3545;
}

body.dark-mode .newsletter-input {
    background-color: #2d2d2d;
    border-color: #404040;
    color: #ffffff;
}

body.dark-mode .newsletter-input:focus {
    background-color: #2d2d2d;
    border-color: #dc3545;
    color: #ffffff;
}

body.dark-mode .social-link {
    background-color: #2d2d2d;
    border-color: #404040;
    color: #b0b0b0;
}

body.dark-mode .social-link:hover {
    background-color: #dc3545;
    color: white;
}

body.dark-mode .alert {
    background-color: #2d2d2d;
    border-color: #404040;
    color: #ffffff;
}

body.dark-mode .card {
    background-color: #1e1e1e;
    border-color: #404040;
    color: #ffffff;
}

body.dark-mode .card-header {
    background-color: #2d2d2d;
    border-bottom-color: #404040;
    color: #ffffff;
}

/* Genel Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Theme Toggle Button */
.btn-theme-toggle {
    background-color: var(--light-gray);
    border: 2px solid var(--border-color);
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: none;
    position: relative;
}

.btn-theme-toggle:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.theme-icon-dark,
.theme-icon-light {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Light mode - show moon icon */
.theme-icon-dark {
    opacity: 1;
    transform: rotate(0deg);
}

.theme-icon-light {
    opacity: 0;
    transform: rotate(180deg);
}

/* Dark mode - show sun icon */
body.dark-mode .theme-icon-dark {
    opacity: 0;
    transform: rotate(-180deg);
}

body.dark-mode .theme-icon-light {
    opacity: 1;
    transform: rotate(0deg);
}

body.dark-mode .btn-theme-toggle {
    background-color: #2d2d2d;
    border-color: #404040;
    color: #ffffff;
}

body.dark-mode .btn-theme-toggle:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

/* Top Bar - Yeni Tasarım */
.top-bar {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 3px solid var(--primary-color);
    font-size: 0.875rem;
}

/* Info Widgets Container */
.info-widgets {
    flex-wrap: wrap;
}

/* Şehir Seçici */
.city-selector .btn-city-selector {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
    border-radius: 0;
    font-weight: 500;
}

.city-selector .btn-city-selector:hover {
    background-color: var(--light-gray);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.city-selector .btn-city-selector::after {
    display: none;
}

.city-dropdown {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: none;
    padding: 0.5rem 0;
    min-width: 150px;
}

.city-dropdown .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--text-color);
}

.city-dropdown .dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

/* Hava Durumu Widget */
.weather-widget {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.weather-icon {
    color: #ffa500;
    font-size: 1rem;
}

.weather-temp {
    color: var(--primary-color);
    font-weight: 600;
}

/* Namaz Vakti Widget */
.prayer-widget {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.prayer-icon {
    color: #28a745;
    font-size: 1rem;
}

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

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

.prayer-time {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}



/* Breaking Alert */
.breaking-alert {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.breaking-text {
    font-size: 0.85rem;
}

/* Date Time - Inline */
.date-time-inline {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.current-time {
    font-weight: 600;
    color: var(--text-color);
}

.current-date {
    color: var(--text-muted);
}

.date-separator {
    color: var(--text-muted);
    font-weight: bold;
}

/* Social Quick */
.social-quick {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 0;
    background-color: var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Main Header - Sade */
.main-header {
    background-color: var(--header-bg);
    box-shadow: none;
    border-bottom: 1px solid var(--border-color);
    transition: none;
}

/* Logo Stilleri - Sadece Logo */
.logo-container {
    text-align: left;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-img-small {
    height: 30px;
    width: auto;
    object-fit: contain;
}

/* Mobile Butonlar - Sade */
.btn-mobile {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0;
}

.btn-mobile:hover {
    background-color: #c82333;
    color: white;
}

/* Arama Modal Butonu */
.btn-search-modal {
    background-color: var(--light-gray);
    border: 2px solid var(--border-color);
    color: var(--text-color);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-search-modal:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Search Modal Stilleri */
.modal-header {
    background-color: var(--primary-color);
    color: white;
    border-bottom: none;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: var(--primary-color);
}

.search-input-modal {
    border: 2px solid var(--border-color);
    border-right: none;
    border-radius: 25px 0 0 25px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
}

.search-input-modal:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-search {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
    border-radius: 0 25px 25px 0;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
}

.btn-search:hover {
    background-color: #c82333;
    border-color: #c82333;
    color: white;
}

.search-suggestions {
    margin-top: 1.5rem;
}

.search-tag {
    cursor: pointer;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.search-tag:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color);
}

/* Main Navigation - Sağa Yaslanmış */
.main-nav {
    display: flex;
    justify-content: flex-end;
}

.nav-list-main {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.nav-list-main .nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0;
    font-size: 0.9rem;
    white-space: nowrap;
    border: 1px solid transparent;
}

.nav-list-main .nav-link:hover {
    color: var(--primary-color);
}

.nav-list-main .nav-link.active {
    color: var(--primary-color);
}

/* Dropdown Menü Stilleri */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
}

.dropdown-toggle::after {
    display: none; /* Bootstrap'ın varsayılan ok işaretini gizle */
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown.show .dropdown-toggle i {
    transform: rotate(180deg);
}

.services-dropdown {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
}

.services-dropdown .dropdown-item {
    padding: 0.75rem 1.25rem;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    border: none;
    background: none;
    transition: all 0.2s ease;
}

.services-dropdown .dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.services-dropdown .dropdown-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
}

.services-dropdown .dropdown-divider {
    margin: 0.5rem 0;
    border-color: var(--border-color);
}

/* Search Header Button */
.btn-search-header {
    background-color: var(--light-gray);
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    width: 45px;
    height: 45px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.btn-search-header:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Responsive Navigation */
@media (max-width: 1199.98px) {
    .nav-list-main {
        gap: 0.25rem;
    }
    
    .nav-list-main .nav-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .services-dropdown {
        min-width: 200px;
    }
    
    .services-dropdown .dropdown-item {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 991.98px) {
    .nav-list-main .nav-link {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .services-dropdown {
        min-width: 180px;
    }
    
    .services-dropdown .dropdown-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .mobile-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Breaking News Swiper */
.breaking-news {
    background-color: var(--primary-color);
    font-size: 0.9rem;
}

.breaking-news .container {
    position: relative;
    overflow: visible;
}

.breaking-news .d-flex {
    display: flex !important;
    align-items: center !important;
    gap: 1rem;
}

.breaking-label .badge {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    border-radius: 0;
    display: flex;
    align-items: center;
}

.breaking-label .badge i {
    font-size: 0.7rem;
    animation: flash 2s infinite;
}

@keyframes flash {
    0%, 50% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

/* Breaking Content */
.breaking-content {
    overflow: hidden;
}

/* Breaking News Vanilla JS Slider */
.breaking-slider {
    width: 100%;
    height: 40px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.breaking-slides {
    height: 40px;
    position: relative;
    touch-action: pan-y;
}

.breaking-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.breaking-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.breaking-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
}

/* Hover efekti */
.breaking-slider:hover .breaking-slide.active {
    animation-play-state: paused;
}

/* Loading state */
.breaking-slide.loading {
    opacity: 0.5;
    transform: scale(0.98);
}

/* Smooth fade animation */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

.breaking-slide.slide-in {
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.breaking-slide.slide-out {
    animation: slideOutLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Breaking Item */
.breaking-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-weight: 500;
    padding: 0.25rem 0;
}

.breaking-item i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.breaking-item span {
    color: white;
    font-size: 0.9rem;
}

/* Navigation Buttons */
.breaking-navigation {
    gap: 0.5rem;
    display: flex !important;
    align-items: center;
    flex-shrink: 0;
    z-index: 10;
    min-width: 80px;
    justify-content: center;
}

.btn-breaking-prev,
.btn-breaking-next {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: white !important;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 11;
    min-width: 36px;
    min-height: 36px;
}

.btn-breaking-prev:hover,
.btn-breaking-next:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-breaking-prev:active,
.btn-breaking-next:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-breaking-prev:disabled,
.btn-breaking-next:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed;
    transform: none !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.btn-breaking-prev:focus,
.btn-breaking-next:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    box-shadow: none;
}

.btn-breaking-prev i,
.btn-breaking-next i {
    font-weight: bold;
}

/* Navigation Buttons - Working */
.btn-breaking-prev,
.btn-breaking-next {
    background: rgba(255, 255, 255, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    color: white !important;
    width: 32px;
    height: 32px;
    border-radius: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: none;
    z-index: 10;
    position: relative;
}

.btn-breaking-prev:hover,
.btn-breaking-next:hover {
    background: rgba(255, 255, 255, 0.5) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    color: white !important;
    transform: scale(1.1);
}

.btn-breaking-prev:active,
.btn-breaking-next:active {
    transform: scale(0.95);
}

/* Swiper Pagination (mobil için) */
.breaking-swiper .swiper-pagination {
    position: static;
    margin-top: 0.5rem;
}

.breaking-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 6px;
    height: 6px;
    margin: 0 2px;
}

.breaking-swiper .swiper-pagination-bullet-active {
    background: white;
}

/* Mobile Offcanvas Menu - Sade */
.offcanvas {
    width: 280px !important;
    background-color: white;
}

.offcanvas-header {
    padding: 1.5rem;
}

.offcanvas-title {
    font-weight: 600;
    font-size: 1.25rem;
}


.mobile-menu {
    padding: 1rem 0;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    font-weight: 500;
}

.mobile-menu-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
    text-decoration: none;
}

.mobile-menu-item.active {
    color: var(--primary-color);
}

.mobile-menu-item i {
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.mobile-menu-item span {
    flex: 1;
    font-weight: 500;
}

.mobile-menu-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 1rem 1.5rem;
}

.mobile-social {
    background-color: var(--light-gray);
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.mobile-social h6 {
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.mobile-social a {
    text-decoration: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid var(--border-color);
}

.mobile-social a:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.mobile-social .social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    justify-items: center;
}

/* Mobil Servisler Bölümü */
.mobile-services-section {
    padding: 1rem 1.5rem;
    background-color: var(--light-gray);
    border-bottom: 1px solid var(--border-color);
}

.mobile-services-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.mobile-services-header i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.mobile-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mobile-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s ease;
    text-align: center;
}

.mobile-service-item:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-service-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    transition: color 0.2s ease;
}

.mobile-service-item:hover i {
    color: white;
}

.mobile-service-item span {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
}

/* Butonlar - Sade */
.btn-outline-secondary {
    border-color: var(--border-color);
    color: var(--text-muted);
}

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

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

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

/* Mobil Gizleme Kuralları */
@media (max-width: 767.98px) {
    .breaking-label {
        display: none !important;
    }
    
    .breaking-alert {
        display: none !important;
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    .logo-text {
        font-size: 1.25rem;
    }
    
    .search-input {
        font-size: 0.9rem;
        padding: 0.6rem 0.9rem;
    }
    
    .btn-search {
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .breaking-news {
        font-size: 0.85rem;
    }
    
    .breaking-item span {
        font-size: 0.85rem;
    }
    
    .breaking-item i {
        font-size: 0.7rem;
    }
    
    .breaking-label .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Navigation butonları mobilde küçült */
    .btn-breaking-prev,
    .btn-breaking-next {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .breaking-navigation {
        gap: 0.25rem;
    }
    
    /* Top bar mobil düzeni */
    .top-center {
        display: none;
    }
    
    .top-right {
        flex-direction: column;
        align-items: flex-end;
    }
    
    .date-time-inline {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }
    
    .social-quick {
        gap: 0.25rem;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    /* Widget'ları mobilde düzenle */
    .info-widgets {
        gap: 0.5rem !important;
    }
    
    .city-selector .btn-city-selector {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
    
    .weather-widget,
    .prayer-widget {
        font-size: 0.7rem;
    }
    
    .weather-icon,
    .prayer-icon {
        font-size: 0.9rem;
    }
    
    .prayer-name {
        font-size: 0.6rem;
    }
    
    .prayer-time {
        font-size: 0.7rem;
    }
    
    /* Date-time mobilde gizli */
    .date-time-inline {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    .logo-img {
        height: 30px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .breaking-label .badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .breaking-news {
        font-size: 0.8rem;
    }
    
    .breaking-item span {
        font-size: 0.8rem;
    }
    
    .breaking-item i {
        font-size: 0.65rem;
    }
    
    .breaking-label .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .breaking-label .badge i {
        font-size: 0.6rem;
    }
    
    /* Navigation butonları çok küçük ekranlarda */
    .btn-breaking-prev,
    .btn-breaking-next {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
        border-width: 1px;
    }
    
    .breaking-navigation {
        gap: 0.2rem;
        margin-left: 0.5rem !important;
    }
    
    .mobile-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .mobile-service-item {
        padding: 0.75rem 0.5rem;
    }
    
    .mobile-service-item i {
        font-size: 1.25rem;
    }
    
    .mobile-service-item span {
        font-size: 0.75rem;
    }
    
    /* Çok küçük ekranlar için top-bar düzeni */
    .info-widgets {
        gap: 0.25rem !important;
        flex-wrap: wrap;
    }
    
    .city-selector {
        order: 1;
    }
    
    .weather-widget {
        order: 2;
    }
    
    .prayer-widget {
        order: 3;
    }
    
    .live-indicator {
        order: 4;
    }
    
    .city-selector .btn-city-selector {
        font-size: 0.65rem;
        padding: 0.15rem 0.3rem;
    }
    
    .weather-widget,
    .prayer-widget {
        font-size: 0.65rem;
    }
    
    .weather-icon,
    .prayer-icon {
        font-size: 0.8rem;
    }
    
    .prayer-name {
        font-size: 0.55rem;
    }
    
    .prayer-time {
        font-size: 0.65rem;
    }
    
    /* Date-time çok küçük ekranlarda da gizli */
    .date-time-inline {
        display: none !important;
    }
    
    .top-center {
        display: block !important;
        flex: 1;
        text-align: center;
    }
    
    .breaking-alert {
        padding: 0.25rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .breaking-text {
        font-size: 0.7rem;
    }
    
    .date-time-inline {
        font-size: 0.7rem;
    }
}

/* Footer Styles */
.footer-section {
    background-color: var(--footer-bg);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-main {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    color: var(--text-muted);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: none;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: none;
    box-shadow: none;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.newsletter-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    border-radius: 0;
    padding: 0.75rem 1rem;
}

.newsletter-input:focus {
    background-color: var(--card-bg);
    border-color: var(--primary-color);
    color: var(--text-color);
    box-shadow: none;
}

.btn-newsletter {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    border-radius: 0;
    padding: 0.75rem 1rem;
    transition: none;
}

.btn-newsletter:hover {
    background-color: #c82333;
    border-color: #c82333;
    color: white;
    transform: none;
}

.footer-contact {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 16px;
}

.footer-bottom {
    background-color: var(--light-gray);
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
}

.copyright {
    margin: 0;
}

.copyright p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Haber Listeleme Alanları */
.content-section {
    margin-bottom: 2rem;
}

.section-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

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

.news-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    transition: none;
    box-shadow: none;
}

.news-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--primary-color);
}

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

.news-card:hover .news-image {
    transform: none;
}

.news-content {
    padding: 1.25rem;
}

.news-category {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 0;
    display: inline-block;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-title:hover {
    color: var(--primary-color);
}

.news-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.news-views {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Video Galeri Stilleri */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.video-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    transition: none;
    box-shadow: none;
    position: relative;
}

.video-card:hover {
    transform: none;
    box-shadow: none;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.video-card:hover .video-image {
    transform: none;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(220, 53, 69, 0.9);
    border: none;
    border-radius: 0;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
    cursor: pointer;
}

.video-play-btn:hover {
    background: var(--primary-color);
    transform: translate(-50%, -50%);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 500;
}

.video-content {
    padding: 1rem;
}

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

.video-title:hover {
    color: var(--primary-color);
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Resim Galeri Stilleri */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: none;
    box-shadow: none;
}

.gallery-item:hover {
    transform: none;
    box-shadow: none;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.gallery-item:hover .gallery-image {
    transform: none;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: none;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.gallery-count {
    font-size: 0.75rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Daha Fazla Butonu */
.load-more-btn {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.95rem;
    transition: none;
    display: block;
    margin: 2rem auto;
    min-width: 200px;
}

.load-more-btn:hover {
    transform: none;
    box-shadow: none;
    color: white;
}

/* Dark Mode Uyumluluğu */
[data-theme="dark"] .news-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .news-category {
    background-color: var(--primary-color);
}

[data-theme="dark"] .video-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .gallery-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

[data-theme="dark"] .load-more-btn {
    background: var(--primary-color);
    color: white;
}

[data-theme="dark"] .load-more-btn:hover {
    background: #c82333;
    color: white;
}

/* Dark Mode Pagination Bullets */
[data-theme="dark"] .swiper-pagination-bullets .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

[data-theme="dark"] .hero-slider .swiper-pagination-bullets .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .side-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
}

body.dark-mode .news-meta,
body.dark-mode .video-meta {
    border-top-color: #404040;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .news-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .news-image,
    .video-image {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .news-content,
    .video-content {
        padding: 1rem;
    }
    
    .video-play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Ana Slider Stilleri */
.hero-slider {
    margin-bottom: 2rem;
}

.hero-slider .slider-container {
    max-width: 100%;
    margin: 0 auto;
}

.hero-slider .swiper {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-slider .slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.hero-slider .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.hero-slider .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 30px 30px;
}

.hero-slider .slide-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.hero-slider .slide-excerpt {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-slider .slide-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

/* Custom Pagination - Hem Desktop Hem Mobil */
.hero-slider .custom-pagination {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
}

/* Desktop Stil */
@media (min-width: 768px) {
    .hero-slider .custom-pagination {
        margin-top: 0;
        height: 35px;
        background: #d7d7d7;
        border-bottom: 1px solid #d7d7d7;
        gap: 1px;
        padding: 0;
    }
}

.hero-slider .custom-pagination .pagination-item {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: none;
    text-decoration: none;
    border-radius: 0;
    
    /* Mobil Stil */
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.3);
    color: transparent;
    font-size: 0;
}

/* Desktop Stil */
@media (min-width: 768px) {
    .hero-slider .custom-pagination .pagination-item {
        flex: 1;
        height: 100%;
        width: auto;
        background: #fff;
        color: #333;
        font-size: 16px;
        font-weight: 600;
        margin: 0;
        opacity: 1;
        text-align: center;
    }
}

.hero-slider .custom-pagination .pagination-item:hover {
    background-color: var(--primary-color);
}

.hero-slider .custom-pagination .pagination-item.active {
    background-color: var(--primary-color);
}

/* Desktop Hover ve Active */
@media (min-width: 768px) {
    .hero-slider .custom-pagination .pagination-item:hover {
        color: #fff;
    }
    
    .hero-slider .custom-pagination .pagination-item.active {
        color: #fff;
    }
}

/* Mobile Navigation */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 30px;
    height: 30px;
    border-radius: 0;
    margin-top: -25px;
    z-index: 10;
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 700;
}

.hero-slider .swiper-pagination {
    position: unset !important;
    z-index: 10;
    margin-top: 10px;
}

.hero-slider .swiper-pagination-bullet {
    background: #000 !important;
    opacity: 0.7;
    border-radius: 0;
    width: 12px;
    height: 12px;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    opacity: 1;
}

/* Yan Hero Slider Stilleri */
.side-hero-slider {
    margin-bottom: 2rem;
}

.side-hero-slider .slider-container {
    max-width: 100%;
    margin: 0 auto;
}

.side-hero-slider .swiper {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

/* Mobile Navigation for Side Hero */
.side-hero-slider .swiper-button-next,
.side-hero-slider .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 30px;
    height: 30px;
    border-radius: 0;
    margin-top: -25px;
    z-index: 10;
}

.side-hero-slider .swiper-button-next::after,
.side-hero-slider .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 700;
}

.side-hero-slider .swiper-pagination {
    position: unset !important;
    z-index: 10;
    margin-top: 10px;
}

.side-hero-slider .swiper-pagination-bullet {
    background: #000 !important;
    opacity: 0.7;
    border-radius: 0;
    width: 12px;
    height: 12px;
}

.side-hero-slider .swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    opacity: 1;
}

/* Swiper Pagination - Temiz Çözüm */
.swiper-pagination {
    position: relative !important;
    margin-top: 15px !important;
    text-align: center !important;
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 0 !important;
    margin: 0 5px !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #dc3545 !important;
}

/* Hero Slider Pagination Bullets */
.hero-slider .swiper-pagination-bullets {
    margin-top: 15px;
}

.hero-slider .swiper-pagination-bullets .swiper-pagination-bullet {
    background: rgba(0, 0, 0, 0.4);
}

.hero-slider .swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Side Hero Slider Pagination Bullets */
.side-hero-slider .swiper-pagination-bullets {
    margin-top: 15px;
}

.side-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet {
    background: rgba(0, 0, 0, 0.4);
}

.side-hero-slider .swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.side-hero-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}

.side-hero-slider .slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.side-hero-slider .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.side-hero-slider .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
}

.side-hero-slider .slide-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.side-hero-slider .slide-excerpt {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

.side-hero-slider .slide-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

/* Side Hero Custom Pagination */
.side-hero-pagination {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
}

/* Desktop Stil */
@media (min-width: 768px) {
    .side-hero-pagination {
        margin-top: 0;
        height: 35px;
        background: #d7d7d7;
        border-bottom: 1px solid #d7d7d7;
        gap: 1px;
        padding: 0;
    }
}

.side-hero-pagination .pagination-item {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: none;
    text-decoration: none;
    border-radius: 0;
    
    /* Mobil Stil */
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: transparent;
    font-size: 0;
}

/* Desktop Stil */
@media (min-width: 768px) {
    .side-hero-pagination .pagination-item {
        flex: 1;
        height: 100%;
        width: auto;
        background: #fff;
        color: #333;
        font-size: 14px;
        font-weight: 600;
        margin: 0;
        opacity: 1;
        text-align: center;
    }
}

.side-hero-pagination .pagination-item:hover {
    background-color: var(--primary-color);
}

.side-hero-pagination .pagination-item.active {
    background-color: var(--primary-color);
}

/* Desktop Hover ve Active */
@media (min-width: 768px) {
    .side-hero-pagination .pagination-item:hover {
        color: #fff;
    }
    
    .side-hero-pagination .pagination-item.active {
        color: #fff;
    }
}

/* Yan Slider Stilleri */
.side-slider {
    margin-bottom: 2rem;
}

.side-slider .slider-container {
    max-width: 100%;
    margin: 0 auto;
}

.side-slider .swiper {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.side-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}

.side-slider .slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.side-slider .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.side-slider .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
}

.side-slider .slide-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.side-slider .slide-excerpt {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

.side-slider .slide-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

/* Küçük Haber Slider Stilleri */
.news-slider {
    margin-bottom: 2rem;
}

.news-slider .news-container {
    background-color: white;
    border: 1px solid var(--border-color);
    max-width: 100%;
}

.news-slider .news-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: none;
}

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

.news-slider .news-item:hover {
    background-color: #f8f9fa;
    cursor: pointer;
}

.news-slider .news-content {
    flex: 1;
}

.news-slider .news-category {
    background-color: var(--primary-color);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 0;
    display: inline-block;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.news-slider .news-date {
    font-size: 11px;
    color: #999;
    margin-bottom: 8px;
}

.news-slider .news-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin: 0;
}

.news-slider .news-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 0;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slider .slider-container {
        padding: 0;
    }
    
    .hero-slider .swiper {
        height: 250px;
    }
    
    .hero-slider .slide-content {
        padding: 25px 20px 20px;
    }
    
    .hero-slider .slide-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .hero-slider .slide-excerpt {
        font-size: 14px;
    }
    
    .hero-slider .custom-pagination {
        display: none !important;
    }
    
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        display: flex !important;
    }
    
    .hero-slider .swiper-pagination {
        display: block !important;
        position: static !important;
        margin-top: 15px;
        text-align: center;
    }
    
    .hero-slider .swiper-pagination-bullets {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 10px 0 !important;
    }
    
    .hero-slider .swiper-pagination-bullet {
        display: inline-block !important;
        width: 12px !important;
        height: 12px !important;
        background: rgba(0, 0, 0, 0.4) !important;
        border-radius: 0 !important;
        opacity: 1 !important;
        cursor: pointer !important;
        margin: 0 4px !important;
    }
    
    .hero-slider .swiper-pagination-bullet-active {
        background: var(--primary-color) !important;
    }
    
    /* Side Hero Slider Mobile */
    .side-hero-slider .swiper {
        height: 250px;
    }
    
    .side-hero-slider .slide-content {
        padding: 20px 15px 15px;
    }
    
    .side-hero-slider .slide-title {
        font-size: 16px;
    }
    
    .side-hero-slider .slide-excerpt {
        font-size: 13px;
    }
    
    .side-hero-slider .side-hero-pagination {
        display: none !important;
    }
    
    .side-hero-slider .swiper-button-next,
    .side-hero-slider .swiper-button-prev {
        display: flex !important;
    }
    
    .side-hero-slider .swiper-pagination {
        display: block !important;
        position: static !important;
        margin-top: 15px;
        text-align: center;
    }
    
    .side-hero-slider .swiper-pagination-bullets {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 10px 0 !important;
    }
    
    .side-hero-slider .swiper-pagination-bullet {
        display: inline-block !important;
        width: 12px !important;
        height: 12px !important;
        background: rgba(0, 0, 0, 0.4) !important;
        border-radius: 0 !important;
        opacity: 1 !important;
        cursor: pointer !important;
        margin: 0 4px !important;
    }
    
    .side-hero-slider .swiper-pagination-bullet-active {
        background: var(--primary-color) !important;
    }
    
    .side-slider .swiper {
        height: 200px;
    }
    
    .side-slider .slide-content {
        padding: 20px 15px 15px;
    }
    
    .side-slider .slide-title {
        font-size: 16px;
    }
    
    .side-slider .slide-excerpt {
        font-size: 13px;
    }
}

@media (min-width: 768px) {
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        display: none !important;
    }
    
    .hero-slider .swiper-pagination {
        display: none !important;
    }
    
    .hero-slider .swiper-pagination-bullets {
        display: none !important;
    }
    
    .hero-slider .swiper-pagination-bullet {
        display: none !important;
    }
    
    .side-hero-slider .swiper-button-next,
    .side-hero-slider .swiper-button-prev {
        display: none !important;
    }
    
    .side-hero-slider .swiper-pagination {
        display: none !important;
    }
    
    .side-hero-slider .swiper-pagination-bullets {
        display: none !important;
    }
    
    .side-hero-slider .swiper-pagination-bullet {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-slider .swiper {
        height: 200px;
    }
    
    .hero-slider .slide-content {
        padding: 20px 15px 15px;
    }
    
    .hero-slider .slide-title {
        font-size: 16px;
    }
    
    .hero-slider .slide-excerpt {
        font-size: 13px;
    }
    
    .side-slider .swiper {
        height: 180px;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    .breaking-news,
    .mobile-menu,
    .footer-section {
        display: none !important;
    }
    
    .main-header {
        box-shadow: none !important;
        border-bottom: 2px solid #000;
    }
}