/* ============================================
   iOS GLASSMORPHISM DESIGN SYSTEM
   Ağrı Esnaf ve Sanatkarlar Odası
   ============================================ */

/* Reset ve Temel Ayarlar */
:root {
    /* iOS Renk Paleti */
    --ios-blue: #007AFF;
    --ios-indigo: #5856D6;
    --ios-purple: #AF52DE;
    --ios-pink: #FF2D55;
    --ios-red: #FF3B30;
    --ios-orange: #FF9500;
    --ios-yellow: #FFCC00;
    --ios-green: #34C759;
    --ios-teal: #5AC8FA;
    --ios-cyan: #32ADE6;
    
    /* Glassmorphism Arka Planlar */
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-bg-dark: rgba(28, 28, 30, 0.72);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --glass-blur: blur(20px) saturate(180%);
    --glass-blur: blur(10px);
    /* Gradient Arka Planlar */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-warm: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-cool: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-sunset: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-ocean: linear-gradient(135deg, #13547a 0%, #80d0c7 100%);
    
    /* Yazı Renkleri */
    --text-primary: #1c1c1e;
    --text-secondary: #636366;
    --text-tertiary: #8e8e93;
    --text-white: #ffffff;
    
    /* Boyutlar */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    
    /* Boşluklar */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    
    /* Geçişler */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-base: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-image: url('../images/motif.avif');
  background-size: 100px 100px;
  background-repeat: repeat;
    color: var(--text-primary);
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    overflow-x: hidden;
}

/* ============================================
   ANİMASYONLAR
   ============================================ */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 122, 255, 0.4); }
    50% { box-shadow: 0 0 40px rgba(0, 122, 255, 0.6); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ÜST BAR (Glassmorphism)
   ============================================ */

.top-bar {
    background: var(--glass-bg-dark);
    backdrop-filter: var(--glass-blur);
    webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-white);
    padding: 12px 0;
    position: relative;
    z-index: 1001;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
    transition: var(--transition-fast);
}

.top-bar-left span:hover {
    opacity: 1;
    transform: translateX(3px);
}

.separator {
    opacity: 0.4 !important;
    font-weight: 300;
}

.top-bar-right {
    display: flex;
    gap: 16px;
}

.top-bar-right a {
    color: var(--text-white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.top-bar-right a:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ============================================
   ANA HEADER (Glassmorphism Sticky)
   ============================================ */

.main-header {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    /* position: sticky;  <-- Bu satırı siliyoruz veya değiştiriyoruz */
    /* top: 0;           <-- Bu satırı siliyoruz */
    position: relative; 
    z-index: 1000;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-base);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.main-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-logo {
    height: 60px;
    width: auto;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition-base);
}

.site-logo:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.logo-text h1 {
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================
   NAVİGASYON
   ============================================ */

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.main-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: -1;
    border-radius: var(--radius-md);
}

.main-nav a:hover {
    color: var(--ios-blue);
    background: rgba(0,122,255,0.08);
}

.main-nav a.active {
    color: var(--ios-blue);
    background: rgba(0,122,255,0.12);
}

.nav-link.btn-contact {
    background: var(--gradient-primary);
    color: white !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.nav-link.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    background: var(--gradient-primary);
}

/* Mobil Menü Butonu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   HERO SECTION (Başkan + Slider)
   ============================================ */

.hero-section {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 24px;
    align-items: start;
    animation: fadeInUp 0.8s ease-out;
}

/* BAŞKAN KARTI - iOS Glass Style */
.president-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-base);
    position: relative;
}

.president-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-color: rgba(255,255,255,0.6);
}

.president-image-container {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.president-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    pointer-events: none;
}

.president-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform var(--transition-slow);
}

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

.president-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-align: center;
    z-index: 10;
    box-shadow: var(--glass-shadow);
}

.president-badge h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.president-badge p {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.president-content {
    padding: 28px;
}

.president-quote {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    padding-left: 16px;
    border-left: 4px solid var(--ios-blue);
    margin-bottom: 24px;
    position: relative;
}

.president-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 40px;
    color: var(--ios-blue);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.president-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
}

.president-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* SLIDER - iOS Style */
.hero-slider-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    height: 520px;
    border: 1px solid var(--glass-border);
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
    color: aliceblue;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-content {
   
    width: 100%;
    backdrop-filter: blur(5px);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease-out 0.3s;
}

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

.slide-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.slide-content p {
    font-size: 17px;
    margin-bottom: 20px;
    opacity: 0.95;
    max-width: 600px;
    line-height: 1.5;
    font-weight: 400;
}

.btn-slide {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition-fast);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-slide:hover {
    background: white;
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Slider Navigasyon */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-primary);
    transition: all var(--transition-fast);
    z-index: 10;
    box-shadow: var(--glass-shadow);
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* ============================================
   HIZLI LİNKLER - iOS Grid
   ============================================ */

.quick-links-section {
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.quick-link-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: height var(--transition-base);
    opacity: 0.8;
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: rgba(255,255,255,0.6);
}

.quick-link-card:hover::before {
    height: 100%;
    opacity: 0.1;
}

/* Her kartın rengi */
.link-credit::before { background: var(--ios-green); }
.link-credit:hover { border-top-color: var(--ios-green); }

.link-document::before { background: var(--ios-blue); }
.link-document:hover { border-top-color: var(--ios-blue); }

.link-member::before { background: var(--ios-orange); }
.link-member:hover { border-top-color: var(--ios-orange); }

.link-phone::before { background: var(--ios-red); }
.link-phone:hover { border-top-color: var(--ios-red); }

.quick-link-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 28px;
    transition: all var(--transition-bounce);
    background: rgba(255,255,255,0.5);
}

.link-credit .quick-link-icon { color: var(--ios-green); }
.link-document .quick-link-icon { color: var(--ios-blue); }
.link-member .quick-link-icon { color: var(--ios-orange); }
.link-phone .quick-link-icon { color: var(--ios-red); }

.quick-link-card:hover .quick-link-icon {
    transform: scale(1.15) rotate(5deg);
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.quick-link-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.quick-link-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.quick-link-arrow {
    font-size: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
    color: var(--ios-blue);
}

.quick-link-card:hover .quick-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   HABERLER & DUYURULAR - iOS Cards
   ============================================ */

.content-section {
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 24px;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.section-title-modern {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding-bottom: 16px;
}

.section-title-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Haber Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.news-card-modern {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: rgba(255,255,255,0.6);
}

.news-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card-modern:hover .news-image-wrap img {
    transform: scale(1.1);
}

.news-date-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--glass-shadow);
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-content-modern {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-content-modern h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-content-modern h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.news-content-modern h3 a:hover {
    color: var(--ios-blue);
}

.news-excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.read-more {
    color: var(--ios-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.read-more:hover {
    gap: 10px;
    color: var(--ios-indigo);
}

.view-count {
    color: var(--text-tertiary);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

/* Duyurular - iOS List Style */
.announcements-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.announcement-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--ios-orange);
}

.announcement-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-left-width: 8px;
}

.announcement-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
}

.announcement-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ios-orange);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.announcement-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

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

.announcement-title a:hover {
    color: var(--ios-blue);
}

.announcement-file {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0,122,255,0.1);
    color: var(--ios-blue);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    margin-top: 8px;
}

.announcement-file:hover {
    background: var(--ios-blue);
    color: white;
    transform: translateY(-1px);
}

/* Tümünü Gör Butonu */
.btn-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 15px;
    margin-top: 32px;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    border: none;
    cursor: pointer;
}

.btn-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.announcements-column .btn-all {
    background: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.4);
}

.announcements-column .btn-all:hover {
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.5);
}

/* ============================================
   FOOTER - Glass Dark
   ============================================ */

.main-footer {
    background: var(--glass-bg-dark);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--glass-border);
    color: var(--text-white);
    padding: 80px 0 30px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: var(--text-white);
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-warm);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-section a::before {
    content: '›';
    font-size: 20px;
    line-height: 1;
    opacity: 0;
    transition: all var(--transition-fast);
}

.footer-section a:hover::before {
    opacity: 1;
    margin-right: 4px;
}

.ataturk-quote {
    font-style: italic;
    border-left: 4px solid var(--ios-blue);
    padding-left: 20px;
    margin-top: 20px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    line-height: 1.6;
    position: relative;
}

.ataturk-quote::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 5px;
    font-size: 50px;
    color: var(--ios-blue);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    position: relative;
    z-index: 1;
}

/* ============================================
   MOBİL UYUMLULUK
   ============================================ */

@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .president-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-slider-container {
        height: 400px;
        order: -1;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--glass-bg);
        backdrop-filter: var(--glass-blur);
        border-left: 1px solid var(--glass-border);
        transition: right var(--transition-base);
        z-index: 999;
        padding: 100px 24px 24px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 8px;
    }
    
    .main-nav a {
        display: block;
        padding: 16px;
        border-radius: var(--radius-md);
        background: rgba(255,255,255,0.5);
    }
    
    .logo-text h1 {
        font-size: 16px;
    }
    
    .logo-text p {
        display: none;
    }
    
    .site-logo {
        height: 45px;
    }
    
    .hero-slider-container {
        height: 350px;
    }
    
    .slide-content {
        padding: 40px 24px 30px;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 15px;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .quick-link-card {
        flex-direction: row;
        text-align: left;
        padding: 20px;
        align-items: center;
    }
    
    .quick-link-icon {
        margin: 0 16px 0 0;
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .quick-link-desc {
        display: none;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .announcements-column {
        gap: 12px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section a {
        justify-content: center;
    }
    
    .ataturk-quote {
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--ios-blue);
        padding: 20px 0 0 0;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        display: none;
    }
    
    .slide-content h2 {
        font-size: 20px;
    }
    
    .btn-slide {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .section-title-modern {
        font-size: 22px;
    }
    
    .president-image-container {
        height: 350px;
    }
}

/* ============================================
   SCROLL BAR STYLES
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.3);
}

/* Selection Color */
::selection {
    background: rgba(0, 122, 255, 0.3);
    color: var(--text-primary);
}
/* ============================================
   FOOTER - iOS GLASSMORPHISM DESIGN
   ============================================ */

.footer-wrapper {
   
    position: relative;
    background: linear-gradient(135deg, #1c1c1e 0%, #2c2c2e 100%);
    overflow: hidden;
}

/* Arka Plan Deseni (Mobil Uyumlu) */
.footer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 122, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(175, 82, 222, 0.15) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.6;
    pointer-events: none;
}

/* Üstteki Dalga Efekti */
.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.footer-wave .shape-fill {
    fill: #f5f7fa; /* Body arka plan rengiyle eşleşmeli */
}

/* Ana Footer İçerik */
.main-footer {
    position: relative;
    z-index: 1;
    padding: 60px 0 30px;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 40px;
}

/* Glassmorphism Kartlar */
.footer-section {
    background: var(--glass-bg-dark);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all var(--transition-base);
}

.footer-section:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 140px;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-fast);
}

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

.footer-section h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-warm);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Atatürk Sözü - Glass Card */
.ataturk-quote {
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--ios-blue);
    padding: 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: 20px;
    position: relative;
    font-style: italic;
}

.ataturk-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 60px;
    color: var(--ios-blue);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.ataturk-quote p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.ataturk-quote .author {
    display: block;
    margin-top: 10px;
    color: var(--ios-orange);
    font-weight: 700;
    font-size: 13px;
    font-style: normal;
    letter-spacing: 0.5px;
}

/* Sosyal Medya */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 0;
}

.social-btn i {
    position: relative;
    z-index: 1;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.3);
}

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

/* Menü Listeleri */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-fast);
    padding: 6px 0;
    border-radius: 6px;
}

.footer-menu a::before {
    content: '›';
    font-size: 20px;
    color: var(--ios-blue);
    line-height: 1;
    opacity: 0;
    transform: translateX(-5px);
    transition: all var(--transition-fast);
}

.footer-menu a:hover {
    color: white;
    padding-left: 10px;
}

.footer-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* İletişim Listesi */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
}

.contact-list i {
    color: var(--ios-blue);
    font-size: 16px;
    margin-top: 2px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.contact-list span {
    word-break: break-word;
}

/* Çalışma Saatleri */
.working-hours {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

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

.hour-item .day {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hour-item .time {
    color: white;
    font-weight: 700;
    color: var(--ios-green);
}

.hour-item .time.closed {
    color: #ff3b30;
}

/* Acil Durum Kartı */
.emergency-card {
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.15) 0%, rgba(255, 59, 48, 0.05) 100%);
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.emergency-card i {
    font-size: 24px;
    color: #ff3b30;
}

.emergency-card div {
    flex: 1;
}

.emergency-card strong {
    display: block;
    color: white;
    font-size: 14px;
    margin-bottom: 2px;
}

.emergency-card small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding: 25px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: all var(--transition-fast);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::after {
    width: 100%;
}

/* ============================================
   FOOTER MOBIL RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1; /* Hakkımızda geniş olsun */
    }
}

@media (max-width: 768px) {
    .footer-wrapper {
        margin-top: 60px;
    }
    
    .footer-wave {
        top: -30px;
        height: 30px;
    }
    
    .footer-wave svg {
        height: 30px;
    }
    
    .main-footer {
        padding: 40px 0 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .footer-section {
        padding: 24px;
    }
    
    .footer-section:first-child {
        grid-column: auto;
    }
    
    .footer-section h3 {
        font-size: 17px;
        margin-bottom: 16px;
    }
    
    .ataturk-quote {
        padding: 16px;
        font-size: 13px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 0 16px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .contact-list li,
    .footer-menu a,
    .hour-item {
        font-size: 15px; /* iOS zoom önlemi */
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 20px;
        border-radius: var(--radius-md);
    }
    
    .footer-logo img {
        max-width: 120px;
    }
    
    .hour-item {
        flex-direction: column;
        gap: 4px;
    }
    
    .hour-item .day {
        font-size: 13px;
    }
    
    .hour-item .time {
        font-size: 14px;
    }
}
/* ============================================
   MARQUEE SLIDER - Otomatik Kayan Menü
   ============================================ */

.marquee-section {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
}

.marquee-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 8px;
}

.marquee-track {
    display: flex;
    gap: 16px;
    animation: marquee-scroll 25s linear infinite;
    width: max-content;
}

/* Hover'da animasyonu durdur (kullanıcı incelemek isterse) */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* İlk setin genişliği kadar */
    }
}

/* Kart Tasarımı */
.marquee-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    min-width: 280px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.marquee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.marquee-card:hover::before {
    left: 100%;
}

.marquee-card:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.marquee-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform var(--transition-bounce);
}

.marquee-card:hover .marquee-icon {
    transform: scale(1.15) rotate(5deg);
}

.marquee-content {
    flex: 1;
}

.marquee-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--text-primary);
    white-space: nowrap;
}

.marquee-content p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    white-space: nowrap;
}

.marquee-arrow {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: 12px;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateX(-10px);
}

.marquee-card:hover .marquee-arrow {
    opacity: 1;
    transform: translateX(0);
    background: var(--ios-blue);
    color: white;
}

/* Kenar Maskeleri (Sol-Fade ve Sağ-Fade) */
.marquee-mask {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 10;
}

.marquee-mask-left {
    left: 0;
    background: linear-gradient(90deg, rgba(245, 247, 250, 1), transparent);
}

.marquee-mask-right {
    right: 0;
    background: linear-gradient(-90deg, rgba(245, 247, 250, 1), transparent);
}

/* ============================================
   MARQUEE MOBİL UYUMLULUK
   ============================================ */

@media (max-width: 768px) {
    .marquee-section {
        margin: 24px auto;
        padding: 0 16px;
    }
    
    .marquee-container {
        border-radius: var(--radius-md);
    }
    
    .marquee-card {
        min-width: 240px;
        padding: 14px 18px;
        gap: 12px;
    }
    
    .marquee-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        border-radius: 12px;
    }
    
    .marquee-content h3 {
        font-size: 15px;
    }
    
    .marquee-content p {
        font-size: 12px;
    }
    
    .marquee-arrow {
        display: none; /* Mobilde gizle */
    }
    
    .marquee-mask {
        width: 60px;
    }
    
    /* Mobilde daha hızlı kayması için */
    .marquee-track {
        animation-duration: 18s;
    }
}

@media (max-width: 480px) {
    .marquee-card {
        min-width: 220px;
        padding: 12px 16px;
    }
    
    .marquee-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .marquee-content h3 {
        font-size: 14px;
    }
}

/* ============================================
   YENİ SLIDER VE NUMARALI MANŞET STİLLERİ
   ============================================ */
.hero-slider-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    height: 550px;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: flex-end;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.slide-content-box {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    margin: 30px;
    padding: 30px;
    border-radius: var(--radius-md);
    color: white;
    max-width: 80%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(20px);
    transition: transform 0.6s ease;
}

.slide.active .slide-content-box {
    transform: translateY(0);
}

.slide-number {
    display: inline-block;
    background: var(--ios-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.slide-content-box h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.slide-content-box p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.dot-number {
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.dot.active {
    background: var(--ios-blue);
    transform: scale(1.2);
}

/* BEYAZ ÜZERİ BEYAZ YAZI SORUNU ÇÖZÜMÜ */
.president-badge h3 { color: #1c1c1e !important; }
.president-badge p { color: #636366 !important; }

/* İLÇE ODALARI BÖLÜMÜ */
.district-rooms-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 24px;
}

.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.district-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.district-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--ios-blue);
}

.district-card h3 {
    color: var(--ios-blue);
    margin-bottom: 15px;
    font-size: 20px;
}

.district-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.district-info i {
    width: 20px;
    color: var(--ios-blue);
}
