/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Custom Properties for Mobile */
:root {
    --vh: 1vh;
}

/* Touch Device Optimizations */
.touch-device * {
    -webkit-tap-highlight-color: transparent;
}

.touch-active {
    opacity: 0.7;
    transform: scale(0.98);
    transition: all 0.1s ease;
}

body {
    font-family: 'Poppins', 'Roboto', 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-size: 0.9rem; /* %10 küçültme */
    position: relative;
}

.container {
    max-width: 1080px; /* %10 küçültme */
    margin: 0 auto;
    padding: 0 18px; /* %10 küçültme */
    margin-top: 10px; /* Minimal header (50px) + Ana header (~87px) için boşluk */
}

.container.no-margin-top {
    margin-top: 0;
}

/* Header ve Navigasyon */
.header {
    position: relative;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* En Üst Header - Minimal ve Modern */
.header-minimal {
    background: #f5f5f5; /* Açık gri zemin */
    border-bottom: 1px solid #e0e0e0;
    height: 50px; /* %50 genişletildi (33px -> 50px) */
    z-index: 1003;
    position: relative;
}

.minimal-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 18px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.minimal-left {
    flex: 1;
}

.minimal-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem; /* 2 punto büyültüldü (0.7rem -> 0.9rem) */
    color: #666;
    font-weight: 400;
}

.minimal-phone,
.minimal-email {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.minimal-phone:hover,
.minimal-email:hover {
    color: #6b7280;
}

.minimal-phone i,
.minimal-email i {
    font-size: 0.8rem;
    color: #6b7280;
}

.minimal-separator {
    color: #ddd;
    font-weight: 300;
}

.minimal-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.minimal-language {
    display: flex;
    gap: 0.3rem;
}

.minimal-lang-selector {
    position: relative;
}

.minimal-lang-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.9rem; /* 2 punto büyültüldü (0.7rem -> 0.9rem) */
    color: #666;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.minimal-lang-btn:hover {
    background: #f8f8f8;
    color: #6b7280;
}

.minimal-lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #f5f5f5;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    min-width: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1004;
    display: flex;
    flex-direction: column;
}

.minimal-lang-selector:hover .minimal-lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.minimal-lang-option {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.75rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.minimal-lang-option:last-child {
    border-bottom: none;
}

.minimal-lang-option:hover,
.minimal-lang-option.active {
    background: #e8e8e8;
    color: #333;
}

.minimal-flag {
    font-size: 0.8rem;
}

.minimal-social {
    display: flex;
    gap: 0.5rem;
}

.minimal-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #666;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 0.9rem; /* 2 punto büyültüldü (0.7rem -> 0.9rem) */
}

/* Facebook */
.minimal-social-link:has(.fa-facebook-f) {
    color: #1877f2;
}

.minimal-social-link:has(.fa-facebook-f):hover {
    background: #1877f2;
    color: white;
    transform: translateY(-1px);
}

/* Twitter */
.minimal-social-link:has(.fa-twitter) {
    color: #1da1f2;
}

.minimal-social-link:has(.fa-twitter):hover {
    background: #1da1f2;
    color: white;
    transform: translateY(-1px);
}

/* Instagram */
.minimal-social-link:has(.fa-instagram) {
    color: #e1306c;
}

.minimal-social-link:has(.fa-instagram):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    transform: translateY(-1px);
}

/* YouTube */
.minimal-social-link:has(.fa-youtube) {
    color: #ff0000;
}

.minimal-social-link:has(.fa-youtube):hover {
    background: #ff0000;
    color: white;
    transform: translateY(-1px);
}

/* Üst Header - İletişim ve Dil */
.header-top {
    background: #f5f5f5;
    box-shadow: none;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1001;
    margin-bottom: 1px; /* Menü alanı ile arasında 1px boşluk */
    height: 40px; /* Zemin yüksekliği - px cinsinden ayarlayın */
    display: flex;
    align-items: center;
}

.navbar-top {
    padding: 0; /* Padding kaldırıldı, height ile kontrol ediliyor */
}

/* Üst Header İletişim Bilgileri */
.contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: 18px; /* Logo ile aynı hizada başlar (nav-container padding) */
    flex: 0 0 auto; /* Sabit boyut, genişlemez */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666;
    font-size: 0.75rem; /* 2 punto küçültme */
}

/* E-posta Alanı - Telefon gibi normal görünüm */
.contact-item:last-child {
    background: none;
    padding: 0;
    border-radius: 0;
    border: none;
}

.contact-item i {
    color: #8b5cf6;
    font-size: 0.65rem; /* 2 punto küçültme */
}

/* Dil Seçici */
.language-selector {
    position: relative;
    margin-right: 1rem;
}

.language-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666;
    font-size: 0.75rem; /* 2 punto küçültme */
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #f5f5f5; /* Açık gri zemin */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    min-width: 60px; /* Daha küçük boyut */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
}

.language-selector:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.3rem; /* Daha küçük gap */
    padding: 0.5rem 0.75rem; /* Daha küçük padding */
    color: #666;
    text-decoration: none;
    font-size: 0.75rem; /* Site Dili ile aynı font boyutu */
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
}

.language-option:last-child {
    border-bottom: none;
}

.flag-icon {
    font-size: 1rem;
    margin-right: 0.25rem;
    display: inline-block;
    width: 16px;
    text-align: center;
}

.language-option:hover,
.language-option.active {
    background: #e8e8e8; /* Açık gri hover */
    color: #333;
}

.language-option:hover .flag-icon,
.language-option.active .flag-icon {
    filter: none; /* Bayrak ikonları normal renkte kalır */
}

/* Üst Header Sosyal Medya */
.header-top .social-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.header-top .social-icon {
    width: 20px; /* 2 punto küçültme */
    height: 20px; /* 2 punto küçültme */
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.65rem; /* 2 punto küçültme */
}

.header-top .social-icon:hover {
    transform: translateY(-2px);
}

.header-top .social-icon.facebook:hover {
    background: #1877f2;
    color: white;
}

.header-top .social-icon.twitter:hover {
    background: #1da1f2;
    color: white;
}

.header-top .social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.header-top .social-icon.youtube:hover {
    background: #ff0000;
    color: white;
}

/* Ana Header */
.header-second {
    margin-top: 1px; /* Minimal header ile arasında 1px boşluk */
    z-index: 999;
}



.navbar {
    padding: 2.025rem 0; /* %10 küçültme */
}

.nav-container {
    max-width: 1080px; /* %10 küçültme */
    margin: 0 auto;
    padding: 0 18px; /* %10 küçültme */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Üst header'ın tam yüksekliğini kullan */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto; /* Sağ tarafa iter */
    margin-right: 18px; /* En sağda, nav-container padding ile aynı */
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo {
    height: 45px; /* %10 küçültme */
    width: auto;
    max-width: 180px; /* %10 küçültme */
    object-fit: contain;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem; /* Ana menü fontunu alt menü boyutuna getirdik */
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6c757d;
}

.nav-link i {
    font-size: 0.8rem;
    margin-left: 5px;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.8rem; /* Alt menü fontunu bir punto küçülttük */
    transition: background-color 0.3s ease;
}

.dropdown-link:hover {
    background-color: #f8f9fa;
    color: #6c757d;
}

/* Mobil Menü Toggle */
/* Arama Alanı */
.nav-search {
    margin-left: 0.5rem;
}

.search-form {
    position: relative;
}

.search-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    color: #666;
    font-size: 0.9rem;
    z-index: 2;
}

.search-input {
    padding: 10px 12px 10px 35px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    width: 180px;
    transition: border-color 0.3s ease;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.search-input:focus {
    outline: none;
    border-color: #666;
    box-shadow: 0 0 0 2px rgba(102, 102, 102, 0.2);
}

.search-input::placeholder {
    color: #999;
    font-size: 0.85rem;
}

.nav-toggle {
    display: none; /* Masaüstünde gizli */
    flex-direction: column;
    cursor: pointer;
    z-index: 1002; /* Menünün üstünde kalması için */
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease; /* Yumuşak animasyon */
}

/* Modern Hero Slider */
.modern-hero-slider {
    min-height: 75vh; /* 100vh'den %25 küçültüldü */
    min-height: calc(var(--vh, 1vh) * 75); /* Mobil cihazlarda viewport height düzeltmesi */
    position: relative;
    overflow: hidden;
    margin-top: 1px; /* Header ile arasında 1px boşluk */
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 75vh; /* Tam yükseklik */
    height: calc(var(--vh, 1vh) * 75); /* Mobil cihazlarda viewport height düzeltmesi */
}

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

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Slider Fotoğraf Boyut Düzeltmesi */
.slide-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Responsive slider img düzeltmesi */
@media (max-width: 768px) {
    .slide-overlay img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 480px) {
    .slide-overlay img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}


/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 4;
    pointer-events: none;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255,255,255,0.7);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #8b5cf6;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

.btn-outline {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

.btn-outline:hover {
    background: #8b5cf6;
    color: white;
}

/* Cihaz Mockup'ları */
.hero-devices {
    position: relative;
    height: 400px;
}

.device {
    position: absolute;
    background: #333;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.device-desktop {
    width: 300px;
    height: 200px;
    top: 50px;
    right: 50px;
    border-radius: 10px;
}

.device-tablet {
    width: 150px;
    height: 200px;
    top: 100px;
    right: 200px;
    border-radius: 20px;
}

.device-mobile {
    width: 80px;
    height: 150px;
    top: 200px;
    right: 100px;
    border-radius: 15px;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.screen-content {
    text-align: center;
    color: #333;
}

.screen-content h3,
.screen-content h4,
.screen-content h5 {
    margin-bottom: 10px;
    color: #8b5cf6;
}

/* Ticker Alanı */
.ticker-section {
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    padding: 0.5rem 0;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: auto;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.ticker-news-item {
    flex: 1;
    max-width: 60%;
    justify-content: center;
}

.ticker-icon {
    color: #ef4444;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.ticker-text {
    flex: 1;
    min-width: 0;
}

.ticker-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
    margin-bottom: 0;
    display: inline;
    margin-right: 0.5rem;
}

.ticker-news,
.ticker-announcements {
    position: relative;
    height: 1.1rem;
    overflow: hidden;
    display: inline;
    margin-left: 0.5rem;
}

.ticker-news-item .ticker-news {
    height: 1.3rem;
    display: inline;
}

.ticker-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 0.9rem;
    color: #6b7280;
    opacity: 0;
    transform: translateY(100%);
    transition: all 1s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50%;
    display: inline;
}

.ticker-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.ticker-slide.prev {
    opacity: 0;
    transform: translateY(-100%);
}

.ticker-date {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.ticker-weather {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.ticker-date-weather {
    flex: 0 0 auto;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}

.ticker-date-section {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.ticker-weather-icon {
    color: #f59e0b;
    font-size: 1.8rem;
    flex-shrink: 0;
}

/* Responsive Ticker */
@media (max-width: 768px) {
    .ticker-content {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .ticker-item {
        width: 100%;
        justify-content: center;
    }
    
    .ticker-news,
    .ticker-announcements {
        text-align: center;
    }
}

/* Haberler ve Duyurular Bölümü */
.news-announcements {
    padding: 10px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #f0f0f0;
}

.news-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start; /* Butonları aynı hizada tutar */
    position: relative;
}

.news-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: #e5e7eb;
    z-index: 1;
}

.news-section,
.announcements-section {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    height: 100%; /* Tam yükseklik */
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.section-title-small {
    font-size: 1.8rem; /* 3 punto büyültüldü (1.6rem -> 1.8rem) */
    font-weight: 300; /* İnce font */
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.025em;
}

.view-all-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.view-all-link:hover {
    color: #8b5cf6;
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.05);
    transform: translateY(-1px);
}

/* Haberler */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Boşluk küçültüldü */
}

.news-item {
    display: flex;
    gap: 1rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border-left: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 1rem; /* Boşluk küçültüldü */
}

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

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

.news-item:hover .news-content h4 a {
    color: #8b5cf6;
}

.news-image {
    position: relative;
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
}

.news-image img {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
    object-fit: cover;
    object-position: center;
    display: block;
    border: none;
    outline: none;
}

.news-date-overlay {
    display: none; /* Tarih overlay kaldırıldı */
}

.date-text {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.news-content {
    flex: 1;
    padding-top: 0; /* Padding kaldırıldı, margin ile kontrol */
    position: relative;
}

.news-date {
    display: block; /* Block element */
    margin-bottom: 0.15rem; /* Tarih ile başlık arası minimal boşluk */
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

.news-content h4 {
    margin: 0 0 0.5rem 0; /* Başlık ile içerik arası (tarih zaten margin-bottom veriyor) */
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.news-content h4 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content h4 a:hover {
    color: #ef4444;
}

.news-content p {
    margin: 0 0 0.25rem 0; /* İçerik ile devamını oku arası */
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

.read-more {
    position: absolute;
    bottom: -8px; /* 8px daha aşağıda (3px daha uzak) */
    right: 0; /* Sağ alt köşe */
}

.read-more-text {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.read-more-text:hover {
    color: #374151;
}

.view-all-container {
    margin-top: auto; /* Butonları en alta iter */
    text-align: right;
    padding-top: 1.5rem;
}

.view-all-container .view-all-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #fca5a5 0%, #f87171 100%); /* Pastel kırmızı gradient */
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(248, 113, 113, 0.2);
}

.view-all-container .view-all-link:hover {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(248, 113, 113, 0.3);
}

/* Duyurular */
.announcements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Haberler ile aynı boşluk */
}

.announcement-item {
    display: flex;
    gap: 1rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border-left: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 1rem; /* Haberler ile aynı boşluk */
}

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

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

.announcement-item:hover .announcement-content h4 a {
    color: #8b5cf6;
}

.announcement-content {
    flex: 1;
    padding-top: 0; /* Padding kaldırıldı, margin ile kontrol */
    position: relative;
}

.announcement-content h4 {
    margin: 0 0 0.5rem 0; /* Başlık ile içerik arası */
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.announcement-content h4 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.announcement-content h4 a:hover {
    color: #f59e0b;
}

.announcement-content p {
    margin: 0 0 0.25rem 0; /* İçerik ile devamını oku arası */
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

.announcement-date {
    display: block; /* Block element */
    margin-bottom: 0.15rem; /* Tarih ile başlık arası minimal boşluk */
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

.announcements-link {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important; /* Turuncu gradient */
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2) !important;
}

.announcements-link:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3) !important;
}

/* Duyuru İkonları - Yanıp Sönen Animasyon */
.announcement-icon-blink {
    margin-right: 0.5rem;
    color: #ef4444;
    animation: blink 2s infinite;
    font-size: 0.9rem;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
        transform: scale(1);
    }
    25%, 75% {
        opacity: 0.3;
        transform: scale(0.9);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .news-announcements {
        padding: 60px 0;
    }
    
    .news-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .news-item,
    .announcement-item {
        gap: 1rem;
    }
    
    .news-date,
    .announcement-icon {
        min-width: 50px;
        height: 50px;
    }
    
    .news-date .day {
        font-size: 1.2rem;
    }
    
    .news-content h4,
    .announcement-content h4 {
        font-size: 1rem;
    }
}

/* Hayat Ağacı Dergisi Bölümü */
.magazine-covers {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.magazine-header {
    text-align: left;
    margin-bottom: 2.5rem;
    position: relative;
}

.magazine-header .section-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: #1f2937;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    text-transform: none;
}

.magazine-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    border-radius: 1px;
}

.magazine-header::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 60px;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.magazine-header .section-description {
    font-size: 0.9rem;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.magazine-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.magazine-item:hover {
    transform: translateY(-5px);
}

.magazine-cover {
    position: relative;
    width: 250px;
    height: 350px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.magazine-cover:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

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

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

.magazine-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 1.5rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.magazine-item:hover .magazine-overlay {
    opacity: 1;
}

.magazine-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.magazine-number {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.magazine-date {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.magazine-item h4 {
    font-size: 0.9rem;
    font-weight: 400;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.magazine-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .magazine-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .magazine-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .magazine-cover {
        width: 180px;
        height: 250px;
    }
}

/* Özellikler Bölümü */
.features {
    padding: 72px 0; /* %10 küçültme */
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); /* %10 küçültme */
    gap: 2.7rem; /* %10 küçültme */
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.feature-item strong {
    color: #8b5cf6;
}

/* Showcase Bölümü */
.showcase {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.25rem; /* %10 küçültme */
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.9rem; /* %10 küçültme */
    color: #333;
    text-transform: none;
    letter-spacing: 0.9px; /* %10 küçültme */
}

.section-description {
    text-align: left;
    font-size: 0.99rem; /* %10 küçültme */
    color: #666;
    margin-bottom: 2.7rem; /* %10 küçültme */
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.section-description strong {
    color: #8b5cf6;
}

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

.showcase-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
}

.showcase-image {
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.placeholder-image.large {
    width: 200px;
    height: 200px;
    font-size: 4rem;
}

.showcase-item h4 {
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.showcase-item p {
    padding: 0 1rem 1rem;
    color: #666;
}

.showcase-button {
    text-align: center;
}

/* Hakkımızda Bölümü */
.about-section-new {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.about-section-new .container {
    position: relative;
}

.about-section-new .section-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: #1f2937;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    text-align: left;
    text-transform: none;
}

.about-section-new .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    border-radius: 1px;
}

.about-section-new .container::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 60px;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.about-content-full {
    display: block;
    margin-top: 2.5rem;
    position: relative;
}

.about-text-full {
    flex: 1;
}

.about-text-full p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.about-logo {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
    margin-top: 0;
    opacity: 1;
}

.about-logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
    align-items: start;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.about-image {
    position: sticky;
    top: 2rem;
    text-align: center;
}

.about-photo {
    width: 100%;
    max-width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 0.5rem;
}

.about-photo:hover {
    transform: scale(1.02);
}

.about-photo-info {
    text-align: center;
}

.about-photo-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.15rem;
}

.about-photo-info .position {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.05rem;
    font-weight: 300;
}

.about-photo-info .title {
    font-size: 0.75rem;
    color: #8b5cf6;
    margin-bottom: 0;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content-full {
        display: block;
    }
    
    .about-logo {
        position: static;
        text-align: center;
        margin-top: 20px;
    }
    
    .about-logo-img {
        height: 50px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        position: static;
    }
}

/* Core Features */
.core-features {
    padding: 80px 0;
    background: #fff;
}

.core-features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.core-features-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.core-features-text strong {
    color: #8b5cf6;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.features-list i {
    color: #8b5cf6;
    font-size: 1.2rem;
}

/* About Services */
.about-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.services-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.service-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.service-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Mobile Ready */
.mobile-ready {
    padding: 80px 0;
    background: #fff;
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.device-mockup {
    position: relative;
    height: 400px;
}

.device-mobile-large {
    width: 200px;
    height: 350px;
    background: #333;
    border-radius: 25px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.mobile-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.mobile-text strong {
    color: #8b5cf6;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: white;
}

.testimonials .container {
    position: relative;
}

.testimonials .section-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: #1f2937;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    text-align: left;
    text-transform: none;
}

.testimonials .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    border-radius: 1px;
}


.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.testimonial-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.2rem;
    text-align: center;
}

.testimonial-item {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: scale(1.02);
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.testimonial-avatar {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
}

.testimonial-photo {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
    border: none;
    transition: all 0.3s ease;
}

.testimonial-photo:hover {
    transform: scale(1.05);
}

/* İkon renkleri - pastel tonlar */
.testimonial-item:nth-child(1) .testimonial-avatar i {
    color: #fbbf24; /* Pastel sarı - Burs */
}

.testimonial-item:nth-child(2) .testimonial-avatar i {
    color: #34d399; /* Pastel yeşil - Kültür */
}

.testimonial-item:nth-child(3) .testimonial-avatar i {
    color: #60a5fa; /* Pastel mavi - Projeler */
}

.testimonial-item:nth-child(4) .testimonial-avatar i {
    color: #f472b6; /* Pastel pembe - Hizmet */
}

.testimonial-item:nth-child(5) .testimonial-avatar i {
    color: #a78bfa; /* Pastel mor - Yayınlar */
}

.testimonial-item:nth-child(6) .testimonial-avatar i {
    color: #fb7185; /* Pastel kırmızı - Şubeler */
}

.testimonial-text {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.4;
    text-align: center;
}

.testimonial-author strong {
    color: #333;
    font-weight: 600;
}

.testimonial-author span {
    color: #8b5cf6;
    font-size: 0.9rem;
}

/* Help Section */
.help-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.help-section .section-title {
    color: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
}

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

.help-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.help-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.help-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: none;
}

.help-item p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.help-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.help-link:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.2);
}

/* Referanslarımız Bölümü */
.references-section {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.references-header {
    text-align: center;
    margin-bottom: 3rem;
}

.references-header .section-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: #1f2937;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    text-transform: none;
}

.references-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    border-radius: 2px;
}

.references-slider {
    overflow: hidden;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.references-track {
    display: flex;
    gap: 3rem;
    align-items: center;
    width: max-content;
    transition: transform 0.5s ease;
}

.reference-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 120px;
    position: relative;
    transition: all 0.3s ease;
}

.reference-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80px;
    background: #d1d5db;
}

.reference-item:hover {
    transform: translateY(-5px);
}

.reference-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.reference-item:hover .reference-logo {
    transform: scale(1.05);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Referanslar Navigasyon */
.references-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.references-nav {
    background: #f8f9fa;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    outline: none;
}

.references-nav:hover {
    background: #6b7280;
    border-color: #6b7280;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.references-nav:active {
    transform: scale(0.95);
}

.references-nav i {
    color: #6b7280;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.references-nav:hover i {
    color: white;
}

.references-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.references-nav:disabled:hover {
    background: #f8f9fa;
    border-color: #d1d5db;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.references-nav:disabled i {
    color: #9ca3af;
}


/* Responsive Referanslar */
@media (max-width: 768px) {
    .references-section {
        padding: 40px 0;
    }
    
    .references-header {
        margin-bottom: 2rem;
    }
    
    .references-header .section-title {
        font-size: 1.5rem;
    }
    
    .reference-item {
        width: 150px;
        height: 90px;
    }
    
    .reference-item:not(:last-child)::after {
        height: 60px;
        right: -1rem;
    }
    
    .references-navigation {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .references-nav {
        width: 35px;
        height: 35px;
    }
    
    .references-nav i {
        font-size: 0.9rem;
    }
    
    .references-track {
        gap: 2rem;
    }
}

/* Hakkımızda Hero Bölümü */
.about-hero-section {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    align-items: center;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.about-hero-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: #e5e7eb;
}

.about-hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 30px 0;
        min-height: 100px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
}

/* Misyon ve Vizyon Bölümü */
.mission-vision-section {
    padding: 80px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #f0f0f0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-vision-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mission-card-compact,
.vision-card-compact {
    background: white;
    padding: 1.8rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 4px solid #6b7280;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-card-compact:hover,
.vision-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    position: relative;
}

.mission-card h3::after,
.vision-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-radius: 1px;
}

.mission-card p,
.vision-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
    text-align: justify;
}

.mission-card-compact h3,
.vision-card-compact h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    position: relative;
}

.mission-card-compact h3::after,
.vision-card-compact h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #6b7280;
    border-radius: 1px;
}

.mission-card-compact p,
.vision-card-compact p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
    text-align: justify;
}

/* Responsive Misyon Vizyon */
@media (max-width: 768px) {
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .mission-vision-grid,
    .mission-vision-grid-compact {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem 1.5rem;
    }
    
    .mission-card-compact,
    .vision-card-compact {
        padding: 1.5rem 1rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .mission-card p,
    .vision-card p {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .mission-card-compact h3,
    .vision-card-compact h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .mission-card-compact p,
    .vision-card-compact p {
        font-size: 0.85rem;
        text-align: left;
    }
}

/* Hizmetler Bölümü */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(107, 114, 128, 0.3);
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.service-text {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Responsive Hizmetler */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-text {
        font-size: 0.9rem;
    }
}

/* Vakıf Yönetimi - Başkan Bölümü */
.management-president {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.president-item {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: none;
}

.president-item::before {
    display: none;
}

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

.president-avatar {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.president-photo {
    width: 250px;
    height: 250px;
    border-radius: 8px;
    object-fit: cover;
    border: none;
    transition: all 0.3s ease;
}

.president-photo:hover {
    transform: scale(1.05);
}

.president-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-align: center;
}

.president-text {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.4;
    text-align: center;
}

/* Vakıf Yönetimi - Diğer Üyeler */
.management-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.management-item {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
}

.management-avatar {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.management-photo {
    width: 180px;
    height: 180px;
    border-radius: 8px;
    object-fit: cover;
    border: none;
    transition: all 0.3s ease;
}

.management-photo:hover {
    transform: scale(1.05);
}

.management-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.2rem;
    text-align: center;
}

.management-text {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.4;
    text-align: center;
}

/* Responsive Vakıf Yönetimi */
@media (max-width: 768px) {
    .management-president {
        margin-bottom: 2rem;
    }
    
    .president-item {
        padding: 0;
        max-width: none;
    }
    
    .president-photo {
        width: 200px;
        height: 200px;
    }
    
    .president-title {
        font-size: 1.2rem;
    }
    
    .president-text {
        font-size: 0.9rem;
    }
    
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .management-photo {
        width: 150px;
        height: 150px;
    }
    
    .management-title {
        font-size: 0.85rem;
    }
    
    .management-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .management-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Personel Bölümü */
.personnel-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.personnel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.personnel-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.personnel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
}

.personnel-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.personnel-avatar {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.personnel-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e5e7eb;
    transition: all 0.3s ease;
}

.personnel-photo:hover {
    border-color: #6b7280;
    transform: scale(1.05);
}

.personnel-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-align: center;
}

.personnel-position {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.3rem;
    text-align: center;
    font-weight: 500;
}

.personnel-department {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 0;
    text-align: center;
    font-style: italic;
}

/* Responsive Personel */
@media (max-width: 768px) {
    .personnel-section {
        padding: 60px 0;
    }
    
    .personnel-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .personnel-item {
        padding: 1.5rem;
    }
    
    .personnel-photo {
        width: 100px;
        height: 100px;
    }
    
    .personnel-name {
        font-size: 1rem;
    }
    
    .personnel-position {
        font-size: 0.85rem;
    }
    
    .personnel-department {
        font-size: 0.75rem;
    }
}

/* Scroll to Top Butonu */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #374151;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
    transform: translateY(0);
}

/* Responsive Scroll Button */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Yeni Footer Tasarımı */
.new-footer {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: #e5e7eb;
    padding: 3rem 0 1.5rem;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-logo {
    margin-bottom: 0;
    margin-top: 0;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    color: #f3f4f6;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 1.2rem;
    text-transform: none;
    letter-spacing: 0.3px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #e5e7eb);
    border-radius: 1px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.footer-text {
    margin-top: 0.5rem;
}

.footer-text p {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.2rem 0;
    position: relative;
}

.footer-link:hover {
    color: #d1d5db;
    transform: translateX(5px);
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #8b5cf6;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 10px;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.contact-item i {
    color: #9ca3af;
    width: 16px;
    font-size: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 10px;
    transition: opacity 0.3s ease;
}

.social-btn:hover::before {
    opacity: 0;
}


.social-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #e1306c, #c13584);
    color: white;
}

.social-btn.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.social-btn i {
    font-size: 0.9rem;
    z-index: 1;
    position: relative;
}

.social-icon:hover {
    transform: translateY(-2px);
}


.social-icon.twitter:hover {
    background: #1da1f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.youtube:hover {
    background: #ff0000;
}

.footer-copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright p {
    color: #6b7280;
    font-size: 0.85rem;
    margin: 0;
    font-weight: 400;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modern-footer {
        padding: 1rem 0 0.7rem;
    }
}

.footer-logo {
    margin-bottom: 1rem;
}

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

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.footer-column p {
    margin-bottom: 1rem;
    color: #9ca3af;
    opacity: 1;
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: #9ca3af;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 1;
    color: #d1d5db;
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.news-date {
    font-size: 0.8rem;
    color: #6b7280;
    opacity: 1;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: #2563eb;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.categories {
    list-style: none;
}

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

.categories a {
    color: #9ca3af;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.categories a:hover {
    opacity: 1;
    color: #d1d5db;
}

.phone {
    font-size: 1.2rem;
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.hours p {
    margin-bottom: 0.5rem;
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright p {
    color: #6b7280;
    opacity: 1;
    margin: 0;
}


/* ========================================
   KAPSAMLI MOBİL UYUMLULUK GÜNCELLEMELERİ
   ======================================== */

/* Mobil Cihazlar için Genel Optimizasyonlar */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .minimal-container {
        padding: 0 20px;
    }
    
    /* Üst Header'ı Tablet ve Mobilde Gizle */
    .header-minimal {
        display: none;
    }
}

/* Tablet ve Küçük Ekranlar (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .news-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .magazine-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobil Cihazlar - Dikey Ekran (768px ve altı) */
@media (max-width: 768px) and (orientation: portrait) {
    /* Genel Container Ayarları */
    .container {
        padding: 0 15px;
        margin-top: 5px;
    }
    
    .container.no-margin-top {
        margin-top: 0;
    }
    
    /* En Üst Header'ı Mobilde Gizle */
    .header-minimal {
        display: none;
    }
    
    .minimal-container {
        padding: 0 15px;
        flex-direction: column;
        gap: 0.5rem;
        height: auto;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    
    .minimal-left {
        order: 2;
        width: 100%;
        justify-content: center;
    }
    
    .minimal-right {
        order: 1;
        width: 100%;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .minimal-contact {
        font-size: 0.8rem;
        gap: 0.3rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .minimal-phone,
    .minimal-email {
        font-size: 0.8rem;
    }
    
    .minimal-separator {
        display: none;
    }
    
    .minimal-social {
        gap: 0.8rem;
    }
    
    .minimal-social-link {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    /* Ana Header Mobil */
    .header-second {
        margin-top: 0;
    }
    
    .navbar {
        padding: 1.5rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
        flex-wrap: wrap;
        gap: 1rem;
        position: relative; /* Menü için relative parent */
    }
    
    .nav-logo {
        order: 1;
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .nav-right {
        order: 3;
        width: 100%;
        margin: 0;
        justify-content: space-between;
        margin-top: 0; /* Menü header'a yapışık */
        position: relative; /* Menü için relative parent */
    }
    
    .nav-toggle {
        order: 2;
        display: flex; /* Mobilde görünür */
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        padding: 12px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        z-index: 10001; /* Menü açıkken de üstte kalması için */
    }
    
    .logo {
        height: 35px;
        max-width: 140px;
    }
    
    /* Mobil Dropdown Menü - Tam Ekran Değil */
    .nav-menu {
        position: absolute !important;
        top: 100% !important; /* Header'ın altında */
        left: 0 !important;
        width: 100% !important;
        max-height: 0 !important; /* Başlangıçta gizli */
        background: #ffffff !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        align-items: stretch !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 9999 !important;
        overflow: hidden !important;
        transition: max-height 0.4s ease, box-shadow 0.3s ease !important;
        box-shadow: none !important;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        max-height: 80vh !important; /* Açıldığında görünür, 80% ekran */
        overflow-y: auto !important;
        overflow-x: hidden !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    }
    
    /* Menü Kapatma Butonu - Kaldırıldı (Tam ekran değil) */
    
    .nav-item {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        display: block !important; /* Block display */
        box-sizing: border-box !important; /* Padding dahil genişlik */
        border-bottom: 1px solid #e9ecef;
        list-style: none !important;
    }
    
    .nav-item:first-child {
        border-top: 1px solid #e9ecef;
    }
    
    /* Akordion Menü Linkleri - HER MENÜ AYNI HİZADA */
    .nav-link {
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        padding: 20px 24px !important;
        display: flex !important; /* Flex'i zorla */
        align-items: center !important;
        justify-content: flex-start !important; /* Sola hizala */
        margin: 0 !important;
        width: 100% !important; /* Tam genişlik */
        box-sizing: border-box !important; /* Padding dahil */
        color: #333333 !important;
        text-align: left !important;
        text-decoration: none !important; /* Alt çizgi yok */
        transition: all 0.3s ease !important;
        background: #ffffff !important;
        position: relative !important;
        min-height: 60px !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #005baa;
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .nav-link:active {
        background: #f8f9fa;
    }
    
    .nav-link.active {
        background: #f8f9fa;
        color: #005baa;
    }
    
    .nav-link.active::before {
        transform: scaleY(1);
    }
    
    .nav-link i.fas.fa-chevron-down {
        margin-left: auto;
        font-size: 0.85rem;
        color: #999;
        transition: transform 0.3s ease;
    }
    
    .nav-item.dropdown.active .nav-link i.fas.fa-chevron-down {
        transform: rotate(180deg);
        color: #005baa;
    }
    
    /* Akordion Dropdown Menü */
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: #f8f9fa !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important; /* Liste işaretleri yok */
        width: 100% !important; /* Tam genişlik */
        box-sizing: border-box !important; /* Padding dahil */
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s ease !important;
        border: none !important;
        border-radius: 0 !important;
    }
    
    /* Mobilde hover davranışını iptal et, sadece tıklama ile açılsın */
    .dropdown:hover .dropdown-menu {
        max-height: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Dropdown açıldığında alt menüleri göster */
    .nav-item.dropdown.active > .dropdown-menu {
        max-height: 2000px !important; /* Daha fazla yükseklik */
        overflow-y: auto !important;
    }
    
    .dropdown-link {
        padding: 16px 24px 16px 40px !important;
        font-size: 1rem !important;
        color: #666 !important;
        display: block !important; /* Block'u zorla */
        width: 100% !important; /* Tam genişlik */
        box-sizing: border-box !important; /* Padding dahil */
        text-align: left !important;
        text-decoration: none !important; /* Alt çizgi yok */
        transition: all 0.2s ease !important;
        border-bottom: 1px solid #e0e0e0;
        min-height: 50px !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        margin: 0 !important;
        background: transparent !important;
    }
    
    .dropdown-link:last-child {
        border-bottom: none;
    }
    
    .dropdown-link:active,
    .dropdown-link:hover {
        background: #e9ecef !important;
        color: #005baa !important;
    }
    
    /* Mobil Arama Sistemi */
    .nav-search {
        position: relative;
        margin-left: 0;
        order: 2;
    }
    
    .search-input {
        display: none; /* Mobilde input gizle */
    }
    
    .search-icon {
        display: block;
        width: 40px;
        height: 40px;
        background: #1f2937;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .search-icon:hover {
        background: #374151;
        transform: scale(1.1);
        border-color: #6b7280;
    }
    
    .search-icon i {
        color: #ffffff;
        font-size: 1.2rem;
    }
    
    /* Tam Ekran Arama Overlay */
    .search-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
        z-index: 10000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 2rem;
        box-sizing: border-box;
    }
    
    .search-overlay.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .search-overlay-content {
        width: 100%;
        max-width: 500px;
        text-align: center;
    }
    
    .search-overlay h2 {
        color: #ffffff;
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .search-overlay-input {
        width: 100%;
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        backdrop-filter: blur(10px);
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }
    
    .search-overlay-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .search-overlay-input:focus {
        outline: none;
        border-color: #3b82f6;
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
    
    .search-overlay-btn {
        background: #3b82f6;
        color: #ffffff;
        border: none;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        max-width: 200px;
    }
    
    .search-overlay-btn:hover {
        background: #2563eb;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    }
    
    /* Arama Kapatma Butonu */
    .search-overlay::before {
        content: '✕';
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 2rem;
        color: #ffffff;
        cursor: pointer;
        z-index: 10001;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .search-overlay::before:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }
    
    /* Menü Kapatma Butonu */
    .nav-menu::before {
        content: '✕';
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 2rem;
        color: #ffffff;
        cursor: pointer;
        z-index: 10000;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .nav-menu::before:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    /* Hamburger Menü Animasyonu */
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Slider Mobil */
    .modern-hero-slider {
        min-height: 60vh;
        min-height: calc(var(--vh, 1vh) * 60);
        margin-top: 0;
    }
    
    .slider-wrapper {
        height: 60vh;
        height: calc(var(--vh, 1vh) * 60);
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-indicators {
        bottom: 1rem;
        gap: 0.8rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }

    /* Ticker Mobil */
    .ticker-section {
        padding: 0.8rem 0;
    }
    
    .ticker-content {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 15px;
    }
    
    .ticker-item {
        width: 100%;
        justify-content: center;
    }
    
    .ticker-news-item {
        max-width: 100%;
    }
    
    .ticker-news,
    .ticker-announcements {
        text-align: center;
    }
    
    .ticker-slide {
        max-width: 100%;
        font-size: 0.8rem;
    }
    
    .ticker-date-weather {
        justify-content: center;
    }
    
    .ticker-date-section {
        text-align: center;
    }
    
    .ticker-date,
    .ticker-weather {
        font-size: 0.8rem;
    }

    /* Haberler ve Duyurular Mobil */
    .news-announcements {
        padding: 40px 0;
    }
    
    .news-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news-container::before {
        display: none;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title-small {
        font-size: 1.5rem;
    }
    
    .news-item,
    .announcement-item {
        gap: 0.8rem;
        padding-bottom: 1rem;
    }
    
    .news-image {
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
        max-width: 70px;
        max-height: 70px;
    }
    
    .news-image img {
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
        max-width: 70px;
        max-height: 70px;
    }
    
    .news-content h4,
    .announcement-content h4 {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .news-content p,
    .announcement-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .news-date,
    .announcement-date {
        font-size: 0.7rem;
        bottom: -6px;
    }
    
    .read-more-text {
        font-size: 0.75rem;
    }
    
    .view-all-container {
        text-align: center;
        padding-top: 1rem;
    }
    
    .view-all-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Dergi Bölümü Mobil */
    .magazine-covers {
        padding: 40px 0;
    }
    
    .magazine-header {
        margin-bottom: 2rem;
    }
    
    .magazine-header .section-title {
        font-size: 1.5rem;
    }
    
    .magazine-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .magazine-cover {
        width: 150px;
        height: 200px;
        margin: 0 auto 1rem;
    }
    
    .magazine-item h4 {
        font-size: 0.8rem;
    }
    
    .magazine-item p {
        font-size: 1rem;
    }

    /* Vakıf Hizmetleri Mobil */
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonials .section-title {
        font-size: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .testimonial-avatar {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .testimonial-title {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .testimonial-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    /* Hakkımızda Mobil */
    .about-section-new {
        padding: 40px 0;
    }
    
    .about-section-new .section-title {
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: left;
    }
    
    .about-image {
        position: static;
        text-align: center;
    }
    
    .about-photo {
        width: 100%;
        max-width: 250px;
        height: 300px;
    }
    
    .about-photo-info h4 {
        font-size: 0.9rem;
    }
    
    .about-photo-info .position {
        font-size: 0.75rem;
    }
    
    .about-photo-info .title {
        font-size: 0.7rem;
    }

    /* Yardım Bölümü Mobil */
    .help-section {
        padding: 40px 0;
    }
    
    .help-section .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .help-item {
        padding: 1.5rem;
    }
    
    .help-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .help-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .help-item p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .help-link {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    /* Referanslar Mobil */
    .references-section {
        padding: 40px 0;
    }
    
    .references-header {
        margin-bottom: 2rem;
    }
    
    .references-header .section-title {
        font-size: 1.5rem;
    }
    
    .reference-item {
        width: 120px;
        height: 80px;
    }
    
    .reference-item:not(:last-child)::after {
        height: 50px;
        right: -1rem;
    }
    
    .references-navigation {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .references-nav {
        width: 35px;
        height: 35px;
    }
    
    .references-nav i {
        font-size: 0.9rem;
    }
    
    .references-track {
        gap: 1.5rem;
    }

    /* Footer Mobil */
    .new-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo-section {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo-img {
        height: 50px;
        max-width: 120px;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .footer-text p {
        font-size: 0.8rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-item i {
        font-size: 0.7rem;
        width: 14px;
    }
    
    .footer-social {
        justify-content: center;
        gap: 0.6rem;
    }
    
    .social-btn {
        width: 28px;
        height: 28px;
    }
    
    .social-btn i {
        font-size: 0.8rem;
    }
    
    .footer-copyright {
        padding-top: 1rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }

    /* Scroll to Top Mobil */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Mobil Cihazlar - Yatay Ekran (768px ve altı) */
@media (max-width: 768px) and (orientation: landscape) {
    /* Genel Container Ayarları */
    .container {
        padding: 0 15px;
        margin-top: 5px;
    }
    
    .container.no-margin-top {
        margin-top: 0;
    }
    
    /* En Üst Header'ı Yatay Ekranda da Gizle */
    .header-minimal {
        display: none;
    }
    
    /* Ana Header Yatay Ekran */
    .header-second {
        margin-top: 0;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
        flex-wrap: nowrap;
        gap: 0.5rem;
        position: relative; /* Menü için relative parent */
    }
    
    .nav-logo {
        order: 1;
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .nav-right {
        order: 3;
        width: 100%;
        margin: 0;
        justify-content: space-between;
        margin-top: 0; /* Menü header'a yapışık */
        position: relative; /* Menü için relative parent */
    }
    
    .nav-toggle {
        order: 2;
        display: flex; /* Mobilde görünür */
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        padding: 10px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        z-index: 10001; /* Menü açıkken de üstte kalması için */
    }
    
    .logo {
        height: 30px;
        max-width: 120px;
    }
    
    /* Mobil Dropdown Menü - Yatay Ekran (Tam Ekran Değil) */
    .nav-menu {
        position: absolute !important;
        top: 100% !important; /* Header'ın altında */
        left: 0 !important;
        width: 100% !important;
        max-height: 0 !important; /* Başlangıçta gizli */
        background: #ffffff !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        align-items: stretch !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 9999 !important;
        overflow: hidden !important;
        transition: max-height 0.4s ease, box-shadow 0.3s ease !important;
        box-shadow: none !important;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        max-height: 70vh !important; /* Yatay ekranda daha az yükseklik */
        overflow-y: auto !important;
        overflow-x: hidden !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    }
    
    /* Kapatma butonu - Kaldırıldı */
    
    .nav-item {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        display: block !important;
        box-sizing: border-box !important;
        border-bottom: 1px solid #e9ecef;
        list-style: none !important;
    }
    
    .nav-item:first-child {
        border-top: 1px solid #e9ecef;
    }
    
    .nav-link {
        font-size: 1rem !important;
        font-weight: 500 !important;
        padding: 18px 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        color: #333333 !important;
        text-align: left !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        background: #ffffff !important;
        position: relative !important;
        min-height: 55px !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #005baa;
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .nav-link:active {
        background: #f8f9fa;
    }
    
    .nav-link.active {
        background: #f8f9fa;
        color: #005baa;
    }
    
    .nav-link.active::before {
        transform: scaleY(1);
    }
    
    .nav-link i.fas.fa-chevron-down {
        margin-left: auto;
        font-size: 0.8rem;
        color: #999;
        transition: transform 0.3s ease;
    }
    
    .nav-item.dropdown.active .nav-link i.fas.fa-chevron-down {
        transform: rotate(180deg);
        color: #005baa;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: #f8f9fa !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important; /* Liste işaretleri yok */
        width: 100% !important; /* Tam genişlik */
        box-sizing: border-box !important; /* Padding dahil */
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s ease !important;
        border: none !important;
        border-radius: 0 !important;
    }
    
    /* Mobilde hover davranışını iptal et, sadece tıklama ile açılsın */
    .dropdown:hover .dropdown-menu {
        max-height: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Dropdown açıldığında alt menüleri göster */
    .nav-item.dropdown.active > .dropdown-menu {
        max-height: 2000px !important; /* Daha fazla yükseklik */
        overflow-y: auto !important;
    }
    
    .dropdown-link {
        padding: 14px 20px 14px 36px !important;
        font-size: 0.95rem !important;
        display: block !important; /* Block'u zorla */
        width: 100% !important; /* Tam genişlik */
        box-sizing: border-box !important; /* Padding dahil */
        text-decoration: none !important; /* Alt çizgi yok */
        color: #666 !important;
        text-align: left !important;
        transition: all 0.2s ease !important;
        border-bottom: 1px solid #e0e0e0;
        min-height: 48px !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        margin: 0 !important;
        background: transparent !important;
    }
    
    .dropdown-link:last-child {
        border-bottom: none;
    }
    
    .dropdown-link:active,
    .dropdown-link:hover {
        background: #e9ecef !important;
        color: #005baa !important;
    }
    
    /* Mobil Arama Sistemi Yatay Ekran */
    .nav-search {
        position: relative;
        margin-left: 0;
        order: 2;
    }
    
    .search-input {
        display: none; /* Mobilde input gizle */
    }
    
    .search-icon {
        display: block;
        width: 35px;
        height: 35px;
        background: #1f2937;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .search-icon:hover {
        background: #374151;
        transform: scale(1.1);
        border-color: #6b7280;
    }
    
    .search-icon i {
        color: #ffffff;
        font-size: 1rem;
    }
    
    /* Tam Ekran Arama Overlay Yatay */
    .search-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
        z-index: 10000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 1.5rem;
        box-sizing: border-box;
    }
    
    .search-overlay.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .search-overlay-content {
        width: 100%;
        max-width: 400px;
        text-align: center;
    }
    
    .search-overlay h2 {
        color: #ffffff;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .search-overlay-input {
        width: 100%;
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        backdrop-filter: blur(10px);
        margin-bottom: 1.2rem;
        transition: all 0.3s ease;
    }
    
    .search-overlay-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .search-overlay-input:focus {
        outline: none;
        border-color: #3b82f6;
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
    
    .search-overlay-btn {
        background: #3b82f6;
        color: #ffffff;
        border: none;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        max-width: 180px;
    }
    
    .search-overlay-btn:hover {
        background: #2563eb;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    }
    
    /* Arama Kapatma Butonu Yatay */
    .search-overlay::before {
        content: '✕';
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.8rem;
        color: #ffffff;
        cursor: pointer;
        z-index: 10001;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .search-overlay::before:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }
    
    /* Hero Slider Yatay Ekran */
    .modern-hero-slider {
        min-height: 50vh;
        min-height: calc(var(--vh, 1vh) * 50);
        margin-top: 0;
    }
    
    .slider-wrapper {
        height: 50vh;
        height: calc(var(--vh, 1vh) * 50);
    }
    
    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slider-controls {
        padding: 0 0.5rem;
    }
    
    .slider-indicators {
        bottom: 0.8rem;
        gap: 0.6rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }

    /* Ticker Yatay Ekran */
    .ticker-section {
        padding: 0.5rem 0;
    }
    
    .ticker-content {
        flex-direction: row;
        gap: 1rem;
        padding: 0 15px;
    }
    
    .ticker-item {
        width: auto;
        justify-content: center;
    }
    
    .ticker-news-item {
        max-width: 70%;
    }
    
    .ticker-date-weather {
        max-width: 30%;
    }

    /* Haberler ve Duyurular Yatay Ekran */
    .news-announcements {
        padding: 30px 0;
    }
    
    .news-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .news-container::before {
        display: block;
    }
    
    .section-title-small {
        font-size: 1.4rem;
    }
    
    .news-item,
    .announcement-item {
        gap: 0.8rem;
        padding-bottom: 0.8rem;
    }
    
    .news-image {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
        max-width: 60px;
        max-height: 60px;
    }
    
    .news-image img {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
        max-width: 60px;
        max-height: 60px;
    }
    
    .news-content h4,
    .announcement-content h4 {
        font-size: 0.85rem;
        line-height: 1.2;
        margin-bottom: 0.3rem;
    }
    
    .news-content p,
    .announcement-content p {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 0.2rem;
    }
    
    .news-date,
    .announcement-date {
        font-size: 0.65rem;
        bottom: -3px;
    }
    
    .read-more-text {
        font-size: 0.7rem;
    }

    /* Dergi Yatay Ekran */
    .magazine-covers {
        padding: 30px 0;
    }
    
    .magazine-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .magazine-cover {
        width: 100px;
        height: 140px;
        margin: 0 auto 0.8rem;
    }

    /* Vakıf Hizmetleri Yatay Ekran */
    .testimonials {
        padding: 30px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .testimonial-avatar {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .testimonial-title {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }
    
    .testimonial-text {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    /* Hakkımızda Yatay Ekran */
    .about-section-new {
        padding: 30px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .about-photo {
        max-width: 180px;
        height: 220px;
    }

    /* Yardım Yatay Ekran */
    .help-section {
        padding: 30px 0;
    }
    
    .help-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .help-item {
        padding: 1rem;
    }
    
    .help-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .help-item h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .help-item p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .help-link {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    /* Referanslar Yatay Ekran */
    .references-section {
        padding: 30px 0;
    }
    
    .reference-item {
        width: 80px;
        height: 60px;
    }
    
    .reference-item:not(:last-child)::after {
        height: 30px;
        right: -0.6rem;
    }
    
    .references-track {
        gap: 1rem;
    }

    /* Footer Yatay Ekran */
    .new-footer {
        padding: 1.5rem 0 0.8rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-logo-img {
        height: 35px;
        max-width: 80px;
    }
    
    .footer-heading {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-link {
        font-size: 0.75rem;
    }
    
    .footer-text p {
        font-size: 0.7rem;
    }
    
    .contact-item {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }
    
    .contact-item i {
        font-size: 0.6rem;
        width: 10px;
    }
    
    .footer-social {
        gap: 0.4rem;
    }
    
    .social-btn {
        width: 22px;
        height: 22px;
    }
    
    .social-btn i {
        font-size: 0.6rem;
    }

    /* Scroll to Top Yatay Ekran */
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
}

/* Küçük Mobil Cihazlar - Dikey Ekran (480px ve altı) */
@media (max-width: 480px) and (orientation: portrait) {
    /* Genel Ayarlar */
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .minimal-container {
        padding: 0 10px;
    }
    
    /* Header Küçük Mobil */
    .header-minimal {
        height: 40px;
    }
    
    .minimal-container {
        padding-top: 6px;
        padding-bottom: 6px;
        gap: 0.3rem;
    }
    
    .minimal-contact {
        font-size: 0.7rem;
        gap: 0.2rem;
    }
    
    .minimal-phone,
    .minimal-email {
        font-size: 0.7rem;
    }
    
    .minimal-social-link {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .logo {
        height: 30px;
        max-width: 120px;
    }
    
    .nav-menu {
        top: 180px;
        padding: 1.5rem 0;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
        margin: 0 0.5rem;
    }
    
    .dropdown-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .search-input {
        width: 100%;
        max-width: 250px;
        font-size: 0.8rem;
        padding: 8px 10px 8px 30px;
    }
    
    .search-input:focus {
        width: 100%;
        max-width: 250px;
    }

    /* Hero Slider Küçük Mobil */
    .modern-hero-slider {
        min-height: 50vh;
        min-height: calc(var(--vh, 1vh) * 50);
    }
    
    .slider-wrapper {
        height: 50vh;
        height: calc(var(--vh, 1vh) * 50);
    }
    
    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slider-controls {
        padding: 0 0.5rem;
    }
    
    .slider-indicators {
        bottom: 0.8rem;
        gap: 0.6rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }

    /* Ticker Küçük Mobil */
    .ticker-section {
        padding: 0.6rem 0;
    }
    
    .ticker-content {
        padding: 0 10px;
        gap: 0.6rem;
    }
    
    .ticker-icon {
        font-size: 1.5rem;
    }
    
    .ticker-weather-icon {
        font-size: 1.5rem;
    }
    
    .ticker-label {
        font-size: 0.8rem;
    }
    
    .ticker-slide {
        font-size: 0.75rem;
    }
    
    .ticker-date,
    .ticker-weather {
        font-size: 0.75rem;
    }

    /* Haberler ve Duyurular Küçük Mobil */
    .news-announcements {
        padding: 30px 0;
    }
    
    .section-title-small {
        font-size: 1.3rem;
    }
    
    .news-item,
    .announcement-item {
        gap: 0.6rem;
        padding-bottom: 0.8rem;
    }
    
    .news-image {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
        max-width: 60px;
        max-height: 60px;
    }
    
    .news-image img {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
        max-width: 60px;
        max-height: 60px;
    }
    
    .news-content h4,
    .announcement-content h4 {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .news-content p,
    .announcement-content p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .news-date,
    .announcement-date {
        font-size: 0.65rem;
        bottom: -5px;
    }
    
    .read-more-text {
        font-size: 0.7rem;
    }
    
    .view-all-link {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    /* Dergi Küçük Mobil */
    .magazine-covers {
        padding: 30px 0;
    }
    
    .magazine-header .section-title {
        font-size: 1.3rem;
    }
    
    .magazine-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .magazine-cover {
        width: 120px;
        height: 160px;
        margin: 0 auto 0.8rem;
    }
    
    .magazine-item h4 {
        font-size: 0.75rem;
    }
    
    .magazine-item p {
        font-size: 0.9rem;
    }

    /* Vakıf Hizmetleri Küçük Mobil */
    .testimonials {
        padding: 30px 0;
    }
    
    .testimonials .section-title {
        font-size: 1.3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .testimonial-avatar {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .testimonial-title {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }
    
    .testimonial-text {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    /* Hakkımızda Küçük Mobil */
    .about-section-new {
        padding: 30px 0;
    }
    
    .about-section-new .section-title {
        font-size: 1.3rem;
    }
    
    .about-content {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .about-photo {
        max-width: 200px;
        height: 250px;
    }
    
    .about-photo-info h4 {
        font-size: 0.85rem;
    }
    
    .about-photo-info .position {
        font-size: 0.7rem;
    }
    
    .about-photo-info .title {
        font-size: 0.65rem;
    }

    /* Yardım Küçük Mobil */
    .help-section {
        padding: 30px 0;
    }
    
    .help-section .section-title {
        font-size: 1.3rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .help-grid {
        gap: 1.2rem;
    }
    
    .help-item {
        padding: 1.2rem;
    }
    
    .help-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .help-item h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .help-item p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .help-link {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    /* Referanslar Küçük Mobil */
    .references-section {
        padding: 30px 0;
    }
    
    .references-header .section-title {
        font-size: 1.3rem;
    }
    
    .reference-item {
        width: 100px;
        height: 70px;
    }
    
    .reference-item:not(:last-child)::after {
        height: 40px;
        right: -0.8rem;
    }
    
    .references-navigation {
        gap: 0.6rem;
        margin-top: 1.2rem;
    }
    
    .references-nav {
        width: 30px;
        height: 30px;
    }
    
    .references-nav i {
        font-size: 0.8rem;
    }
    
    .references-track {
        gap: 1.2rem;
    }

    /* Footer Küçük Mobil */
    .new-footer {
        padding: 1.5rem 0 0.8rem;
    }
    
    .footer-container {
        padding: 0 10px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-logo-img {
        height: 40px;
        max-width: 100px;
    }
    
    .footer-heading {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
    
    .footer-text p {
        font-size: 0.75rem;
    }
    
    .contact-item {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-item i {
        font-size: 0.65rem;
        width: 12px;
    }
    
    .footer-social {
        gap: 0.5rem;
    }
    
    .social-btn {
        width: 25px;
        height: 25px;
    }
    
    .social-btn i {
        font-size: 0.7rem;
    }
    
    .footer-copyright {
        padding-top: 0.8rem;
    }
    
    .footer-copyright p {
        font-size: 0.75rem;
    }

    /* Scroll to Top Küçük Mobil */
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Küçük Mobil Cihazlar - Yatay Ekran (480px ve altı) */
@media (max-width: 480px) and (orientation: landscape) {
    /* Genel Ayarlar */
    .container {
        padding: 0 8px;
    }
    
    .nav-container {
        padding: 0 8px;
    }
    
    .minimal-container {
        padding: 0 8px;
    }
    
    /* Header Küçük Mobil Yatay */
    .header-minimal {
        display: none;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        flex-wrap: nowrap;
        gap: 0.3rem;
    }
    
    .nav-logo {
        order: 1;
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .nav-right {
        order: 3;
        width: 100%;
        margin: 0;
        justify-content: space-between;
        margin-top: 0.3rem;
    }
    
    .nav-toggle {
        order: 2;
        display: flex; /* Mobilde görünür */
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        padding: 8px;
        cursor: pointer;
        z-index: 10001; /* Menü açıkken de üstte kalması için */
    }
    
    .logo {
        height: 25px;
        max-width: 100px;
    }
    
    /* Tam Ekran Mobil Menü Küçük Yatay */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 1rem;
        box-sizing: border-box;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-item {
        margin: 0.6rem 0;
        width: 100%;
        max-width: 250px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 1rem 1.2rem;
        display: block;
        border-radius: 8px;
        margin: 0;
        color: #ffffff;
        text-align: center;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }
    
    .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-link i {
        margin-left: 0.3rem;
        font-size: 0.9rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        margin-top: 0.6rem;
        border-radius: 5px;
        padding: 0.6rem 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        color: #e5e7eb;
        display: block;
        text-align: center;
        transition: all 0.3s ease;
        border-radius: 4px;
        margin: 0.3rem 0.6rem;
    }
    
    .dropdown-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        transform: translateX(6px);
    }
    
    /* Menü Kapatma Butonu Küçük Yatay */
    .nav-menu::before {
        content: '✕';
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        color: #ffffff;
        cursor: pointer;
        z-index: 10000;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .nav-menu::before:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }
    
    /* Mobil Arama Sistemi Küçük Yatay */
    .nav-search {
        position: relative;
        margin-left: 0;
        order: 2;
    }
    
    .search-input {
        display: none; /* Mobilde input gizle */
    }
    
    .search-icon {
        display: block;
        width: 30px;
        height: 30px;
        background: #1f2937;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .search-icon:hover {
        background: #374151;
        transform: scale(1.1);
        border-color: #6b7280;
    }
    
    .search-icon i {
        color: #ffffff;
        font-size: 0.9rem;
    }
    
    /* Tam Ekran Arama Overlay Küçük Yatay */
    .search-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
        z-index: 10000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 1rem;
        box-sizing: border-box;
    }
    
    .search-overlay.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .search-overlay-content {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .search-overlay h2 {
        color: #ffffff;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .search-overlay-input {
        width: 100%;
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        backdrop-filter: blur(10px);
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }
    
    .search-overlay-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .search-overlay-input:focus {
        outline: none;
        border-color: #3b82f6;
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
    
    .search-overlay-btn {
        background: #3b82f6;
        color: #ffffff;
        border: none;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        max-width: 150px;
    }
    
    .search-overlay-btn:hover {
        background: #2563eb;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(59, 130, 246, 0.3);
    }
    
    /* Arama Kapatma Butonu Küçük Yatay */
    .search-overlay::before {
        content: '✕';
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        color: #ffffff;
        cursor: pointer;
        z-index: 10001;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .search-overlay::before:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    /* Hero Slider Küçük Yatay */
    .modern-hero-slider {
        min-height: 40vh;
        min-height: calc(var(--vh, 1vh) * 40);
    }
    
    .slider-wrapper {
        height: 40vh;
        height: calc(var(--vh, 1vh) * 40);
    }
    
    .control-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .slider-controls {
        padding: 0 0.3rem;
    }
    
    .slider-indicators {
        bottom: 0.5rem;
        gap: 0.4rem;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }

    /* Ticker Küçük Yatay */
    .ticker-section {
        padding: 0.4rem 0;
    }
    
    .ticker-content {
        flex-direction: row;
        gap: 0.8rem;
        padding: 0 8px;
    }
    
    .ticker-icon {
        font-size: 1.2rem;
    }
    
    .ticker-weather-icon {
        font-size: 1.2rem;
    }
    
    .ticker-label {
        font-size: 0.7rem;
    }
    
    .ticker-slide {
        font-size: 0.7rem;
    }
    
    .ticker-date,
    .ticker-weather {
        font-size: 0.7rem;
    }

    /* Haberler ve Duyurular Küçük Yatay */
    .news-announcements {
        padding: 20px 0;
    }
    
    .news-container {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .news-container::before {
        display: block;
    }
    
    .section-title-small {
        font-size: 1.1rem;
    }
    
    .news-item,
    .announcement-item {
        gap: 0.5rem;
        padding-bottom: 0.6rem;
    }
    
    .news-image {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        max-width: 50px;
        max-height: 50px;
    }
    
    .news-image img {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        max-width: 50px;
        max-height: 50px;
    }
    
    .news-content h4,
    .announcement-content h4 {
        font-size: 0.75rem;
        line-height: 1.1;
        margin-bottom: 0.2rem;
    }
    
    .news-content p,
    .announcement-content p {
        font-size: 0.65rem;
        line-height: 1.2;
        margin-bottom: 0.1rem;
    }
    
    .news-date,
    .announcement-date {
        font-size: 0.6rem;
        bottom: -2px;
    }
    
    .read-more-text {
        font-size: 0.65rem;
    }
    
    .view-all-link {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    /* Dergi Küçük Yatay */
    .magazine-covers {
        padding: 20px 0;
    }
    
    .magazine-header .section-title {
        font-size: 1.1rem;
    }
    
    .magazine-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }
    
    .magazine-cover {
        width: 80px;
        height: 110px;
        margin: 0 auto 0.6rem;
    }
    
    .magazine-item h4 {
        font-size: 0.7rem;
    }
    
    .magazine-item p {
        font-size: 0.8rem;
    }

    /* Vakıf Hizmetleri Küçük Yatay */
    .testimonials {
        padding: 20px 0;
    }
    
    .testimonials .section-title {
        font-size: 1.1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .testimonial-avatar {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }
    
    .testimonial-title {
        font-size: 0.7rem;
        margin-bottom: 0.1rem;
    }
    
    .testimonial-text {
        font-size: 0.65rem;
        line-height: 1.1;
    }

    /* Hakkımızda Küçük Yatay */
    .about-section-new {
        padding: 20px 0;
    }
    
    .about-section-new .section-title {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .about-text p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .about-photo {
        max-width: 150px;
        height: 180px;
    }
    
    .about-photo-info h4 {
        font-size: 0.8rem;
    }
    
    .about-photo-info .position {
        font-size: 0.65rem;
    }
    
    .about-photo-info .title {
        font-size: 0.6rem;
    }

    /* Yardım Küçük Yatay */
    .help-section {
        padding: 20px 0;
    }
    
    .help-section .section-title {
        font-size: 1.1rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .help-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .help-item {
        padding: 0.8rem;
    }
    
    .help-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .help-item h3 {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .help-item p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .help-link {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    /* Referanslar Küçük Yatay */
    .references-section {
        padding: 20px 0;
    }
    
    .references-header .section-title {
        font-size: 1.1rem;
    }
    
    .reference-item {
        width: 70px;
        height: 50px;
    }
    
    .reference-item:not(:last-child)::after {
        height: 25px;
        right: -0.5rem;
    }
    
    .references-navigation {
        gap: 0.4rem;
        margin-top: 1rem;
    }
    
    .references-nav {
        width: 25px;
        height: 25px;
    }
    
    .references-nav i {
        font-size: 0.7rem;
    }
    
    .references-track {
        gap: 0.8rem;
    }

    /* Footer Küçük Yatay */
    .new-footer {
        padding: 1rem 0 0.6rem;
    }
    
    .footer-container {
        padding: 0 8px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-logo-img {
        height: 30px;
        max-width: 70px;
    }
    
    .footer-heading {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-link {
        font-size: 0.7rem;
    }
    
    .footer-text p {
        font-size: 0.65rem;
    }
    
    .contact-item {
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
    }
    
    .contact-item i {
        font-size: 0.55rem;
        width: 8px;
    }
    
    .footer-social {
        gap: 0.3rem;
    }
    
    .social-btn {
        width: 20px;
        height: 20px;
    }
    
    .social-btn i {
        font-size: 0.6rem;
    }
    
    .footer-copyright {
        padding-top: 0.6rem;
    }
    
    .footer-copyright p {
        font-size: 0.65rem;
    }

    /* Scroll to Top Küçük Yatay */
    .scroll-to-top {
        bottom: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* ========================================
   MOBİL UYGULAMA BENZERİ GÖRÜNÜM
   ======================================== */

/* Mobil Cihazlarda Native Uygulama Benzeri Görünüm */
@media (max-width: 1024px) {
    /* Genel Mobil Uygulama Stili */
    body {
        -webkit-overflow-scrolling: touch;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
    
    /* Mobil Uygulama Benzeri Header */
    .header {
        position: relative;
        width: 100%;
        z-index: 1000;
        background: #ffffff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Ana İçerik Alanı - Mobil Uygulama Benzeri */
    .main-content {
        margin-top: 0;
        padding-top: 20px;
        min-height: calc(100vh - 80px);
        background: #f8f9fa;
    }
    
    /* Mobil Uygulama Benzeri Kartlar */
    .card, .news-item, .magazine-item, .testimonial-item {
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: none;
        margin-bottom: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .card:hover, .news-item:hover, .magazine-item:hover, .testimonial-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }
    
    /* Mobil Uygulama Benzeri Butonlar */
    .btn, button, input[type="submit"] {
        border-radius: 12px;
        padding: 12px 24px;
        font-weight: 600;
        font-size: 16px;
        border: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn:hover, button:hover, input[type="submit"]:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    
    .btn:active, button:active, input[type="submit"]:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Mobil Uygulama Benzeri Form Elemanları */
    input, textarea, select {
        border-radius: 12px;
        border: 2px solid #e9ecef;
        padding: 12px 16px;
        font-size: 16px;
        transition: all 0.3s ease;
        background: #ffffff;
    }
    
    input:focus, textarea:focus, select:focus {
        border-color: #8b5cf6;
        box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
        outline: none;
    }
    
    /* Mobil Uygulama Benzeri Navigasyon */
    .navbar-nav .nav-link {
        padding: 12px 16px;
        border-radius: 8px;
        margin: 2px 0;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(108, 117, 125, 0.1);
        color: #6c757d;
    }
    
    /* Mobil Uygulama Benzeri Hero Section */
    .hero-section {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 0 0 24px 24px;
        margin: -20px -15px 0 -15px;
        padding: 40px 20px;
        color: white;
    }
    
    /* Mobil Uygulama Benzeri Footer */
    .footer {
        background: #ffffff;
        border-top: 1px solid #e9ecef;
        border-radius: 24px 24px 0 0;
        margin-top: 40px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    }
    
    /* Mobil Uygulama Benzeri Scroll Bar */
    ::-webkit-scrollbar {
        width: 6px;
    }
    
    ::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #8b5cf6;
        border-radius: 3px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #7c3aed;
    }
}

/* Tablet Cihazlar için Özel Ayarlar */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Tablet için daha büyük padding */
    .container {
        padding: 0 30px;
    }
    
    /* Tablet için kart boyutları */
    .card, .news-item, .magazine-item {
        margin-bottom: 20px;
    }
    
    /* Tablet için buton boyutları */
    .btn, button, input[type="submit"] {
        padding: 14px 28px;
        font-size: 18px;
    }
}

/* Telefon Cihazları için Özel Ayarlar */
@media (max-width: 768px) {
    /* Telefon için daha kompakt tasarım */
    .container {
        padding: 0 16px;
    }
    
    /* Telefon için kart boyutları */
    .card, .news-item, .magazine-item, .testimonial-item {
        margin-bottom: 12px;
        border-radius: 12px;
    }
    
    /* Telefon için buton boyutları */
    .btn, button, input[type="submit"] {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    /* Telefon için form elemanları */
    input, textarea, select {
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    /* Telefon için hero section */
    .hero-section {
        padding: 30px 16px;
        border-radius: 0 0 20px 20px;
    }
}

/* Küçük Telefon Cihazları için Özel Ayarlar */
@media (max-width: 480px) {
    /* Küçük telefon için daha da kompakt tasarım */
    .container {
        padding: 0 12px;
    }
    
    /* Küçük telefon için kart boyutları */
    .card, .news-item, .magazine-item, .testimonial-item {
        margin-bottom: 10px;
        border-radius: 10px;
    }
    
    /* Küçük telefon için buton boyutları */
    .btn, button, input[type="submit"] {
        padding: 8px 16px;
        font-size: 13px;
        border-radius: 8px;
    }
    
    /* Küçük telefon için form elemanları */
    input, textarea, select {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 8px;
    }
    
    /* Küçük telefon için hero section */
    .hero-section {
        padding: 25px 12px;
        border-radius: 0 0 16px 16px;
    }
}

/* Mobil Cihazlarda Touch Optimizasyonu */
@media (max-width: 1024px) {
    /* Touch için minimum dokunma alanı */
    .btn, button, input[type="submit"], .nav-link, a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Touch için hover efektlerini devre dışı bırak */
    .card:hover, .news-item:hover, .magazine-item:hover, .testimonial-item:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    /* Touch için aktif durum efektleri */
    .card:active, .news-item:active, .magazine-item:active, .testimonial-item:active {
        transform: scale(0.98);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .btn:active, button:active, input[type="submit"]:active {
        transform: scale(0.95);
    }
}

/* Mobil Cihazlarda Animasyon Optimizasyonu */
@media (max-width: 1024px) {
    /* Performans için animasyonları optimize et */
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
    }
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

/* Haber Detay Sayfası Stilleri */
.news-detail-wrapper {
    max-width: 100%;
}

.news-detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: left;
}

.news-detail-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

.news-detail-date i {
    color: #3b82f6;
    font-size: 1.1rem;
}

.news-image-container {
    width: 100%;
    max-width: 600px;
    height: 350px;
    margin: 0 auto 2rem auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.news-detail-image:hover {
    transform: scale(1.02);
}

/* Haber Navigasyon Butonları */
.news-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.nav-btn i {
    font-size: 1rem;
}

.prev-btn {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 2px 10px rgba(107, 114, 128, 0.3);
}

.prev-btn:hover {
    box-shadow: 0 4px 20px rgba(107, 114, 128, 0.4);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .news-detail-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .news-detail-date {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    
    .news-image-container {
        height: 250px;
        margin-bottom: 1.5rem;
    }
    
    .news-navigation {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .nav-btn {
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}
