/* ============================================
   Van Genclerbirligi SK - Public Website
   Professional Sports Club Theme
   ============================================ */

:root {
    --primary: #1a365d;
    --primary-light: #2a4a7f;
    --primary-dark: #0f2341;
    --accent: #FFC309;
    --accent-dark: #e0ab00;
    --accent-light: #ffe066;
    --text: #2d3748;
    --text-light: #718096;
    --bg: #ffffff;
    --bg-light: #f7fafc;
    --bg-dark: #edf2f7;
    --border: #e2e8f0;
    --success: #38a169;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -5px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 40px -10px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    position: relative;
}

.section,
.hero-static,
.stats-section,
.cta-section,
.page-header,
.baskan-section,
.site-footer {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

img { max-width: 100%; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-info span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar-info span i {
    color: var(--accent);
    font-size: 0.75rem;
}

.top-bar-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

.top-bar-social a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--accent);
    transform: scale(1.15);
}

/* ===== NAVBAR ===== */
#mainNav {
    background: var(--primary) !important;
    padding: 0.7rem 0;
    transition: var(--transition);
    box-shadow: none;
    z-index: 1050;
}

#mainNav.scrolled {
    padding: 0.35rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    background: var(--primary-dark) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo {
    border-radius: 8px;
    object-fit: contain;
}

.navbar-logo-placeholder {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.4rem;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    color: white;
}

.navbar-brand-text strong {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.navbar-brand-text small {
    font-size: 0.7rem;
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,0.12);
}

.navbar-nav .nav-link.active:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.navbar-toggler { padding: 0.3rem 0.5rem; }

/* Navbar Dropdown */
.navbar-nav .dropdown-menu {
    background: var(--primary-dark);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    min-width: 200px;
}

.navbar-nav .dropdown-item {
    color: rgba(255,255,255,0.8);
    padding: 0.5rem 1.2rem;
    font-size: 0.88rem;
    transition: var(--transition);
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background: rgba(255,255,255,0.1);
    color: var(--accent);
}

.navbar-nav .dropdown-item i {
    width: 20px;
    text-align: center;
}

.navbar-nav .dropdown-item.text-muted,
.navbar-nav .dropdown-menu .text-muted {
    color: rgba(255,255,255,0.4) !important;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.4em;
    vertical-align: 0.15em;
}

/* Navbar CTA Button */
.nav-cta-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .nav-cta-btn {
        display: inline-block;
        margin: 10px 0;
    }
}

/* ===== SON DAKİKA BANDI ===== */
.breaking-news-band {
    background: var(--primary-dark);
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 42px;
    border-bottom: 2px solid var(--accent);
}

.breaking-news-label {
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    gap: 6px;
}

.breaking-news-track-wrapper {
    flex: 1;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.breaking-news-track {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: tickerScroll 16s linear infinite;
}

.breaking-news-track:hover {
    animation-play-state: paused;
}

.breaking-news-item {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0 30px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    gap: 8px;
    transition: color 0.2s;
}

.breaking-news-item:hover {
    color: var(--accent);
    text-decoration: none;
}

.breaking-news-separator {
    color: var(--accent);
    font-size: 1rem;
    opacity: 0.7;
}

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SLIDER SECTION ===== */
.slider-section {
    padding-top: 0;
    padding-bottom: 0;
    background: var(--bg);
}

.fullscreen-slider {
    position: relative;
    width: 100%;
    height: 68vh;
    min-height: 420px;
    overflow: hidden;
    background: #0a1628;
    border-radius: 0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(0,0,0,0.7);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* Slider Numbered Navigation */
.slider-num-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: stretch;
    background: rgba(10,15,25,0.85);
    backdrop-filter: blur(8px);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-radius: 0;
}

.slider-num-nav::-webkit-scrollbar {
    display: none;
}

.slider-num {
    flex: 1 0 auto;
    min-width: 44px;
    padding: 14px 8px;
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    text-align: center;
}

.slider-num:hover {
    color: white;
    background: rgba(255,255,255,0.05);
}

.slider-num.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: rgba(255,195,9,0.1);
}

/* Slider Badge */
.slider-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
}

.slider-badge-slider {
    background: rgba(255,195,9,0.9);
    color: var(--primary-dark);
}

.slider-badge-haber {
    background: rgba(26,54,93,0.9);
    color: white;
}

/* Slider Caption (for haber slides) */
.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 1.5rem 2rem 65px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.slider-caption h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Clickable slider slide */
.slider-slide[data-href] {
    cursor: pointer;
}

/* ===== HERO STATIC (fallback when no slider) ===== */
.hero-static {
    position: relative;
    height: 80vh;
    min-height: 550px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #0a1628 100%);
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-static::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,195,9,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-static > .container {
    position: relative;
    z-index: 2;
}

.hero-static .hero-content {
    position: relative;
    z-index: 2;
}

.hero-static .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,195,9,0.15);
    border: 1px solid rgba(255,195,9,0.3);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-static h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero-static .hero-desc {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 550px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-static .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    position: relative;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.section-divider.center {
    margin-left: auto;
    margin-right: auto;
}

/* ===== FEATURES / SERVICES SECTION ===== */
.feature-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(26,54,93,0.08), rgba(26,54,93,0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    transform: scale(1.1);
}

.feature-card h5 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.7;
}

/* ===== BASKAN MESAJI ===== */
.baskan-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.baskan-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,195,9,0.05);
    pointer-events: none;
}

.baskan-img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12), 0 0 0 4px var(--accent);
}

.baskan-placeholder {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    font-weight: 700;
    border: 6px solid white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12), 0 0 0 4px var(--accent);
}

.baskan-mesaj {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text);
    position: relative;
    padding-left: 2rem;
}

.baskan-mesaj::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -15px;
    font-size: 4.5rem;
    color: var(--accent);
    font-family: Georgia, serif;
    line-height: 1;
}

/* ===== PERSONEL CARDS ===== */
.personel-card {
    background: var(--card-bg, white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.personel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.personel-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
    margin: 0 auto;
    display: block;
}

.personel-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #e6a800);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto;
}

/* ===== CARDS ===== */
.card-modern {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    background: white;
}

.card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.card-modern .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-modern:hover .card-img-top {
    transform: scale(1.05);
}

.card-modern .card-img-wrapper {
    overflow: hidden;
    position: relative;
}

.card-modern .card-body { padding: 1.5rem; }

.card-modern .card-title {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.card-modern .card-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.card-date {
    font-size: 0.78rem;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--bg-light);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.card-img-placeholder {
    height: 220px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

/* Card Modern Link */
a.card-modern-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    cursor: pointer;
}

a.card-modern-link:hover {
    color: inherit;
    text-decoration: none;
}

a.card-modern-link:hover .card-title {
    color: var(--accent-dark);
}

a.card-modern-link:hover .card-modern {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

/* ===== DUYURU DETAY ===== */
.duyuru-detay {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.duyuru-detay-meta {
    padding: 1.5rem 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.duyuru-detay-img {
    padding: 1.5rem 2rem;
}

.duyuru-detay-img img {
    width: 100%;
    border-radius: var(--radius);
    max-height: 450px;
    object-fit: cover;
}

.duyuru-detay-content {
    padding: 0 2rem 2rem;
    line-height: 2;
    color: var(--text);
    font-size: 1rem;
}

.duyuru-detay-footer {
    padding: 0 2rem 2rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

/* Duyuru Sidebar */
.duyuru-sidebar {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 1.5rem;
}

.sidebar-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-item {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.sidebar-item:hover {
    background: var(--bg-light);
    color: inherit;
}

.sidebar-item img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.sidebar-item-placeholder {
    width: 60px;
    height: 45px;
    background: var(--bg-dark);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.sidebar-item-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
}

.sidebar-item-text small {
    color: var(--text-light);
    font-size: 0.75rem;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ===== GALLERY ===== */
.galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.galeri-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.galeri-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.galeri-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeri-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.galeri-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.galeri-item:hover .galeri-overlay { transform: translateY(0); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: white;
    font-size: 2rem;
    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);
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

/* Lightbox Navigation */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(0,0,0,0.4);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 10001;
}

@media (max-width: 575.98px) {
    .lightbox-prev,
    .lightbox-next { width: 42px; height: 42px; font-size: 1rem; }
    .lightbox-prev { left: 0.75rem; }
    .lightbox-next { right: 0.75rem; }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,195,9,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* ===== GALLERY PREVIEW (Footer Üstü) ===== */
.gallery-preview-section {
    background: var(--bg-light);
}

.gallery-preview-card {
    display: block;
    text-decoration: none;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-preview-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.gallery-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-preview-card:hover .gallery-preview-img img {
    transform: scale(1.08);
}

.gallery-preview-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    color: var(--border);
}

.gallery-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}

.gallery-preview-title {
    padding: 14px 16px;
}

.gallery-preview-title h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
}

.footer-top {
    padding: 4rem 0 2.5rem;
}

.footer-widget {}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.footer-widget h5 {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0;
}

.footer-widget > small,
.footer-brand small {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
}

.footer-text {
    font-size: 0.88rem;
    line-height: 1.8;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    opacity: 0;
    transition: var(--transition);
    margin-right: -8px;
}

.footer-links a:hover::before {
    opacity: 1;
    margin-right: 0;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 3px;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(255,195,9,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.75rem;
    margin-top: 1px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.2rem 0;
    font-size: 0.82rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.5;
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary-dark);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ===== ILETISIM ===== */
.iletisim-card {
    background: white;
    color: var(--text);
    border-radius: var(--radius);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
}

.iletisim-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.iletisim-card .iletisim-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.iletisim-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.iletisim-card .iletisim-icon i {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0;
}

.iletisim-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.iletisim-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.92rem;
}

.contact-form .form-control {
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
    transition: var(--transition);
    font-size: 0.92rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26,54,93,0.08);
}

.contact-form .form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
}

.page-header .breadcrumb {
    justify-content: center;
    margin: 0;
    position: relative;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    text-decoration: none;
}

.page-header .breadcrumb-item a:hover {
    color: var(--accent);
}

.page-header .breadcrumb-item.active { color: var(--accent); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== BUTTONS ===== */
.btn-accent {
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 600;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.92rem;
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,195,9,0.35);
}

.btn-outline-light {
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    font-size: 0.92rem;
}

.btn-outline-accent {
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    background: transparent;
    transition: var(--transition);
    font-size: 0.92rem;
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    background: transparent;
    transition: var(--transition);
}

.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: white;
}

/* ===== PAGINATION ===== */
.pagination .page-link {
    color: var(--primary);
    border: 1px solid var(--border);
    border-radius: 8px !important;
    margin: 0 3px;
    font-weight: 500;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}

/* ===== ABOUT INFO SECTION ===== */
.about-info-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
    height: 100%;
}

.about-info-card h5 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-info-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.92rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .fullscreen-slider { height: 42vh; min-height: 260px; border-radius: 0; }
    .slider-arrow { width: 40px; height: 40px; font-size: 0.9rem; }
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }
    .slider-num { min-width: 36px; padding: 10px 6px; font-size: 0.8rem; }
    .slider-badge { top: 12px; left: 12px; }
    .slider-caption { bottom: 0; padding: 1rem 1.5rem 58px; }
    .slider-caption h3 { font-size: 1.1rem; }
    .hero-static { height: auto; min-height: auto; padding: 6rem 0 4rem; }
    .hero-static h1 { font-size: 2.2rem; }
    .duyuru-detay-content { padding: 0 1.25rem 1.25rem; }
    .duyuru-detay-meta { padding: 1.25rem 1.25rem 0; }
    .duyuru-detay-img { padding: 1rem 1.25rem; }
    .duyuru-detay-footer { padding: 0 1.25rem 1.25rem; }
    .section { padding: 3.5rem 0; }
    .section-title { font-size: 1.7rem; }
    .baskan-img, .baskan-placeholder { width: 180px; height: 180px; }
    .navbar-collapse {
        background: var(--primary-dark);
        padding: 1rem;
        border-radius: 0 0 12px 12px;
        margin-top: 0.5rem;
    }
    .cta-section { padding: 3.5rem 0; }
    .cta-section h2 { font-size: 1.7rem; }
    .stats-section { padding: 3rem 0; }
    .stat-number { font-size: 2rem; }
}

@media (max-width: 575.98px) {
    .slider-section { padding-top: 1rem; }
    .fullscreen-slider { height: 35vh; min-height: 220px; border-radius: 0; }
    .breaking-news-label { font-size: 0.72rem; padding: 0 10px; }
    .breaking-news-item { font-size: 0.78rem; padding: 0 18px; }
    .slider-arrow { width: 36px; height: 36px; font-size: 0.85rem; }
    .slider-num { min-width: 30px; padding: 8px 4px; font-size: 0.75rem; }
    .slider-badge { top: 10px; left: 10px; padding: 4px 10px; font-size: 0.7rem; }
    .slider-caption { bottom: 0; padding: 0.8rem 1rem 48px; }
    .slider-caption h3 { font-size: 1rem; }
    .hero-static h1 { font-size: 1.8rem; }
    .galeri-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
    .galeri-item img { height: 180px; }
    .section { padding: 2.5rem 0; }
    .section-title { font-size: 1.5rem; }
    .cta-section h2 { font-size: 1.4rem; }
    .top-bar-info { gap: 0.8rem; font-size: 0.75rem; }
    .scroll-top-btn { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== COUNTER ANIMATION ===== */
.counter-animated {
    display: inline-block;
}

/* ===== MISC ===== */
.bg-light-section {
    background: var(--bg-light);
}

.text-accent {
    color: var(--accent) !important;
}

.text-primary-custom {
    color: var(--primary) !important;
}

a {
    transition: var(--transition);
}

::selection {
    background: var(--accent);
    color: var(--primary-dark);
}