/* ===========================================================
   AV. ALİ ÖZKAYA - ALTERNATİF TEMA (V2)
   Modern, Koyu ve Dinamik Tasarım
   =========================================================== */

:root {
    /* AK Parti Kurumsal Renkler */
    --ak-orange: #F7941D;
    --ak-orange-dark: #E67E00;
    --ak-orange-light: #FFAB40;
    --ak-blue: #1B4F8C;
    --ak-blue-dark: #0D3A6B;
    --ak-blue-light: #2E6DB5;
    --ak-navy: #0A2647;
    
    --primary-dark: #0A2647;
    --primary-blue: #1B4F8C;
    --accent-orange: #F7941D;
    --accent-gold: #F7941D;
    --accent-red: #E67E00;
    --light-gray: #F8F9FA;
    --text-light: #E8E8E8;
    --text-muted: #A0A0A0;
    --gradient-dark: linear-gradient(135deg, #0A2647 0%, #1B4F8C 100%);
    --gradient-orange: linear-gradient(135deg, #F7941D 0%, #FFAB40 100%);
    --gradient-gold: linear-gradient(135deg, #F7941D 0%, #FFAB40 100%);
    --border-radius: 12px;
    --shadow-soft: 0 10px 40px #0000001A;
    --shadow-strong: 0 20px 60px #00000033;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--primary-dark);
    background-color: #FFFFFF;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* ===========================================================
   NAVBAR - Şeffaf ve Modern
   =========================================================== */
.navbar-v2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: linear-gradient(180deg, #0A2647E6 0%, #0A264780 60%, transparent 100%);
}

.navbar-v2.scrolled {
    background: #0A2647F8;
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 5px 30px #0000004D;
}

.navbar-v2 .navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-v2 .brand-logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Encode Sans', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.navbar-v2 .brand-logo-img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.navbar-v2 .brand-text {
    display: flex;
    flex-direction: column;
}

.navbar-v2 .brand-name {
    font-family: 'Encode Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.navbar-v2 .brand-title {
    font-size: 0.7rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-v2 .nav-link {
    color: #FFFFFFD9 !important;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px !important;
    position: relative;
    transition: all 0.3s;
}

.navbar-v2 .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.navbar-v2 .nav-link:hover::after,
.navbar-v2 .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-v2 .nav-link:hover,
.navbar-v2 .nav-link.active {
    color: var(--ak-orange) !important;
}

/* ===========================================================
   HERO SECTION - Full Screen
   =========================================================== */
.hero-v2 {
    height: 80vh;
    min-height: 450px;
    max-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Carousel tam ekran */
.hero-v2 .carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-v2 .carousel-inner {
    height: 100%;
}

.hero-v2 .carousel-item {
    height: 100%;
}

.hero-v2 .carousel-item img.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Carousel Controls */
.hero-v2 .carousel-control-prev,
.hero-v2 .carousel-control-next {
    width: 60px;
    height: 60px;
    background: #F7941DCC;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s;
}

.hero-v2 .carousel-control-prev {
    left: 30px;
}

.hero-v2 .carousel-control-next {
    right: 30px;
}

.hero-v2 .carousel-control-prev:hover,
.hero-v2 .carousel-control-next:hover {
    background: var(--ak-orange);
}

.hero-v2 .carousel-indicators {
    bottom: 80px;
    z-index: 10;
}

.hero-v2 .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FFFFFF80;
    border: 2px solid #FFFFFF;
    margin: 0 8px;
}

.hero-v2 .carousel-indicators button.active {
    background: var(--ak-orange);
    border-color: var(--ak-orange);
}

.hero-v2 .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    padding: 0 20px;
}

.hero-v2 .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-v2 .hero-title {
    font-family: 'Encode Sans', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-v2 .hero-role {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-v2 .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px #F7941D80;
    color: var(--primary-dark);
}

.btn-outline-light-custom {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF80;
    padding: 13px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-outline-light-custom:hover {
    background: #FFFFFF;
    color: var(--primary-dark);
    border-color: #FFFFFF;
}

.hero-v2 .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #FFFFFF;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===========================================================
   MOTİVASYON SÖZÜ BÖLÜMÜ
   =========================================================== */
.quote-section {
    background: var(--gradient-dark);
    padding: 80px 0 20px 0;
    margin-top: -1px;
}

.quote-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #FFFFFF;
    margin-top: -60px;
    padding: 0 00px;
}

.quote-author {
    margin-top: -10px;
    text-align: center;
}

.quote-author .author-signature {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.quote-author .author-name-text {
    display: block;
    font-family: 'Encode Sans', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* ===========================================================
   İSTATİSTİK BÖLÜMÜ
   =========================================================== */
.about-section-v2 {
    padding: 100px 0;
    background: #FFFFFF;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--accent-gold);
    border-radius: var(--border-radius);
    z-index: -1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 25px;
}

.about-content p {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===========================================================
   HABERLER BÖLÜMÜ - Yatay Kartlar
   =========================================================== */
.news-section-v2 {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-header-v2 {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-v2 h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-header-v2 p {
    color: #666666;
    font-size: 1.1rem;
}

.news-card-v2 {
    background: #FFFFFF;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.news-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-bottom-color: var(--ak-orange);
}

.news-card-v2 .card-img {
    height: 160px;
    overflow: hidden;
}

.news-card-v2 .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card-v2:hover .card-img img {
    transform: scale(1.1);
}

.news-card-v2 .card-body {
    padding: 15px;
}

.news-card-v2 .card-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.news-card-v2 .card-title {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card-v2 .card-text {
    color: #666666;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-v2 .read-more {
    color: var(--ak-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.news-card-v2 .read-more:hover {
    gap: 15px;
    color: var(--ak-blue);
}

/* Haber Kart Kategori Etiketi */
.news-card-v2 .card-img {
    position: relative;
}

.news-card-v2 .card-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--ak-orange);
    color: #FFFFFF;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

/* ===========================================================
   HABERLER LİSTESİ SAYFASI
   =========================================================== */
.news-list-section {
    padding: 60px 0 100px;
    background: #F8F9FA;
}

.news-filter-bar {
    background: #FFFFFF;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
}

.filter-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 2px solid #E0E0E0;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--ak-orange);
    color: var(--ak-orange);
}

.filter-btn.active {
    background: var(--ak-orange);
    border-color: var(--ak-orange);
    color: #FFFFFF;
}

.search-box {
    position: relative;
}

.search-box input {
    padding-right: 45px;
    border-radius: 25px;
    border: 2px solid #E0E0E0;
    height: 45px;
}

.search-box input:focus {
    border-color: var(--ak-orange);
    box-shadow: none;
}

.search-box i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888888;
}

/* Sayfalama */
.news-pagination {
    margin-top: 60px;
}

.news-pagination .pagination {
    gap: 8px;
}

.news-pagination .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #E0E0E0;
    color: #666666;
    font-weight: 600;
    transition: all 0.3s;
}

.news-pagination .page-link:hover {
    background: var(--ak-orange);
    border-color: var(--ak-orange);
    color: #FFFFFF;
}

.news-pagination .page-item.active .page-link {
    background: var(--ak-orange);
    border-color: var(--ak-orange);
    color: #FFFFFF;
}

.news-pagination .page-item.disabled .page-link {
    background: #F0F0F0;
    border-color: #E0E0E0;
    color: #CCCCCC;
}

@media (max-width: 768px) {
    .news-filter-bar {
        padding: 15px 20px;
    }
    
    .filter-categories {
        justify-content: center;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* ===========================================================
   SOSYAL MEDYA BÖLÜMÜ
   =========================================================== */
.social-section {
    padding: 100px 0;
    background: #FFFFFF;
}

/* Sosyal Medya Platform Kartları */
.social-platforms-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.social-platforms-grid.social-platforms-centered {
    max-width: 950px;
    margin: 0 auto;
}

.social-platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.3s ease;
    text-align: center;
}

.social-platform-card i {
    font-size: 3rem;
    margin-bottom: 12px;
}

.social-platform-card .nsosyal-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
}

.social-platform-card span {
    font-family: 'Encode Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: none;
}

.social-platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px #00000033;
    color: #FFFFFF;
}

.social-platform-card.youtube {
    background: #FF0000;
}

.social-platform-card.twitter {
    background: #000000;
}

.social-platform-card.facebook {
    background: #1877F2;
}

.social-platform-card.instagram {
    background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
}

.social-platform-card.nsosyal {
    background: linear-gradient(135deg, #1B4F8C 0%, #0A2647 100%);
}

.social-platform-card.whatsapp {
    background: #25D366;
}

@media (max-width: 768px) {
    .social-platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .social-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-platform-card {
        padding: 20px 10px;
    }
    
    .social-platform-card i {
        font-size: 2rem;
    }
}

/* ===========================================================
   İLETİŞİM BÖLÜMÜ
   =========================================================== */
.contact-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: #FFFFFF;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item .icon {
    width: 60px;
    height: 60px;
    background: #FFFFFF1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-info-item h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--accent-gold);
}

.contact-info-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.sms-form-v2 {
    background: #FFFFFF0D;
    border-radius: var(--border-radius);
    padding: 10px;
    border: 1px solid #FFFFFF1A;
}

.sms-form-v2 h4 {
    margin-bottom: 10px;
    color: #FFFFFF;
}

.sms-form-v2 .form-control {
    background: #FFFFFF1A;
    border: 1px solid #FFFFFF33;
    color: #FFFFFF;
    padding: 5px 10px;
    border-radius: 8px;
}

.sms-form-v2 .form-control::placeholder {
    color: #FFFFFF80;
}

.sms-form-v2 .form-control:focus {
    background: #FFFFFF26;
    border-color: var(--accent-gold);
    box-shadow: none;
    color: #FFFFFF;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer-v2 {
    background: #0A2647;
    color: var(--text-muted);
    padding: 60px 0 30px;
}

.footer-v2 .footer-brand {
    margin-bottom: 25px;
}

.footer-v2 .footer-brand h4 {
    font-family: 'Encode Sans', sans-serif;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.footer-v2 .footer-brand span {
    color: var(--accent-gold);
    font-size: 0.85rem;
}

.footer-v2 .footer-links h5 {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-v2 .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-v2 .footer-links li {
    margin-bottom: 10px;
}

.footer-v2 .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-v2 .footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-v2 .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-v2 .social-links a {
    width: 45px;
    height: 45px;
    background: #FFFFFF0D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.footer-v2 .social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.footer-v2 .social-links a.nsosyal img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(0.7);
    transition: filter 0.3s;
}

.footer-v2 .social-links a.nsosyal:hover img {
    filter: brightness(0) invert(0.1);
}

.footer-v2 .footer-bottom {
    border-top: 1px solid #FFFFFF1A;
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 991px) {
    .hero-v2 .hero-title {
        font-size: 2.8rem;
    }
    
    .about-image-wrapper::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-v2 {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-v2 .carousel-item img.hero-bg {
        object-position: center center;
    }
    
    .hero-v2 .carousel-control-prev,
    .hero-v2 .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-v2 .carousel-control-prev {
        left: 10px;
    }
    
    .hero-v2 .carousel-control-next {
        right: 10px;
    }
    
    .hero-v2 .carousel-indicators {
        bottom: 20px;
    }
    
    .hero-v2 .scroll-indicator {
        display: none;
    }
    
    .hero-v2 .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-v2 .hero-role {
        font-size: 1rem;
    }
    
    .navbar-v2 .brand-name {
        font-size: 1.1rem;
    }
    
    .navbar-v2 .brand-title {
        display: none;
    }
    
    .section-header-v2 h2,
    .about-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-v2 {
        height: 50vh;
        min-height: 350px;
    }
    
    .navbar-v2 .brand-logo {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .navbar-v2 .brand-name {
        font-size: 0.95rem;
    }
}

/* ===========================================================
   SAYFA BAŞLIĞI (BREADCRUMB) - V2
   =========================================================== */
.page-header-v2 {
    position: relative;
    padding: 180px 0 80px;
    overflow: hidden;
    min-height: 320px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header-bg .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFFE6;
    z-index: 1;
}

.page-header-v2 .container {
    position: relative;
    z-index: 3;
}

.page-header-content {
    text-align: center;
}

.page-header-content h1 {
    font-family: 'Encode Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--ak-navy);
    margin-bottom: 15px;
}

.page-header-v2 .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
    justify-content: center;
}

.page-header-v2 .breadcrumb-item a {
    color: var(--ak-navy);
    text-decoration: none;
    transition: color 0.3s;
}

.page-header-v2 .breadcrumb-item a:hover {
    color: #D97B0A;
}

.page-header-v2 .breadcrumb-item.active {
    color: var(--ak-navy);
}

.page-header-v2 .breadcrumb-item + .breadcrumb-item::before {
    color: var(--ak-navy);
    content: "/";
}

@media (max-width: 991px) {
    .page-header-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .page-header-v2 {
        padding: 140px 0 50px;
        min-height: 220px;
    }
    
    .page-header-content h1 {
        font-size: 1.8rem;
    }
}

/* ===========================================================
   HABER DETAY SAYFASI
   =========================================================== */
.news-detail-section {
    padding: 60px 0 100px;
    background: #F8F9FA;
}

.news-detail {
    background: #FFFFFF;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.news-detail-header {
    padding: 40px 40px 30px;
}

.news-detail-header .news-category {
    display: inline-block;
    background: var(--ak-orange);
    color: #FFFFFF;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-detail-header .news-title {
    font-family: 'Encode Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.news-detail-header .news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #666666;
    font-size: 0.9rem;
}

.news-detail-header .news-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-detail-header .news-meta i {
    color: var(--ak-orange);
}

.news-detail-image {
    width: 100%;
}

.news-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.news-detail-content {
    padding: 40px;
}

.news-detail-content .lead {
    font-size: 1.2rem;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 500;
}

.news-detail-content p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.news-detail-content h3 {
    font-family: 'Encode Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 35px 0 20px;
}

.news-detail-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.news-detail-content ul li {
    color: #555555;
    line-height: 2;
    position: relative;
    padding-left: 10px;
}

.news-detail-content ul li::marker {
    color: var(--ak-orange);
}

.news-quote {
    background: var(--gradient-dark);
    color: #FFFFFF;
    padding: 30px 40px;
    border-radius: var(--border-radius);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 35px 0;
    position: relative;
}

.news-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--ak-orange);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.5;
    font-family: serif;
    line-height: 1;
}

.news-gallery {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #EEEEEE;
}

.news-gallery h4 {
    font-family: 'Encode Sans', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.news-gallery img {
    cursor: pointer;
    transition: transform 0.3s;
}

.news-gallery img:hover {
    transform: scale(1.02);
}

.news-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 40px;
    border-top: 1px solid #EEEEEE;
}

.news-share span {
    font-weight: 600;
    color: var(--primary-dark);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s;
}

.share-btn:hover {
    transform: translateY(-3px);
    color: #FFFFFF;
}

.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #000000; }
.share-btn.whatsapp { background: #25D366; }
.share-btn.telegram { background: #0088CC; }

.news-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 25px 40px;
    border-top: 1px solid #EEEEEE;
}

.news-tags span {
    font-weight: 600;
    color: var(--primary-dark);
}

.news-tags .tag {
    background: #F0F0F0;
    color: #555555;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
}

.news-tags .tag:hover {
    background: var(--ak-orange);
    color: #FFFFFF;
}

/* Önceki/Sonraki Haber Navigasyonu */
.news-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.news-navigation a {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FFFFFF;
    padding: 20px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
}

.news-navigation a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.news-navigation a i {
    font-size: 1.5rem;
    color: var(--ak-orange);
}

.news-navigation a span {
    font-size: 0.8rem;
    color: #888888;
}

.news-navigation a strong {
    display: block;
    color: var(--primary-dark);
    font-size: 0.95rem;
    margin-top: 3px;
}

.news-navigation .nav-next {
    text-align: right;
    justify-content: flex-end;
}

/* Sidebar */
.news-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-soft);
}

.widget-title {
    font-family: 'Encode Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--ak-orange);
}

.recent-news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-news-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    padding-bottom: 15px;
    border-bottom: 1px solid #EEEEEE;
}

.recent-news-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.recent-news-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.recent-news-item h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
    line-height: 1.4;
    transition: color 0.3s;
}

.recent-news-item:hover h5 {
    color: var(--ak-orange);
}

.recent-news-item span {
    font-size: 0.8rem;
    color: #888888;
}

.recent-news-item span i {
    color: var(--ak-orange);
    margin-right: 5px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid #EEEEEE;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #555555;
    text-decoration: none;
    transition: all 0.3s;
}

.category-list li a:hover {
    color: var(--ak-orange);
    padding-left: 10px;
}

.category-list li a span {
    background: #F0F0F0;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.sidebar-social {
    display: flex;
    gap: 10px;
}

.sidebar-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s;
}

.sidebar-social a:hover {
    transform: translateY(-3px);
}

.sidebar-social .facebook { background: #1877F2; }
.sidebar-social .twitter { background: #000000; }
.sidebar-social .instagram { background: linear-gradient(45deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888); }
.sidebar-social .youtube { background: #FF0000; }

/* Responsive */
@media (max-width: 991px) {
    .news-detail-header .news-title {
        font-size: 1.8rem;
    }
    
    .news-detail-image img {
        height: 300px;
    }
    
    .news-navigation {
        flex-direction: column;
    }
    
    .news-navigation .nav-next {
        text-align: left;
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .news-detail-header {
        padding: 25px 20px;
    }
    
    .news-detail-content {
        padding: 25px 20px;
    }
    
    .news-detail-header .news-title {
        font-size: 1.5rem;
    }
    
    .news-detail-image img {
        height: 220px;
    }
    
    .news-share,
    .news-tags {
        padding: 20px;
    }
    
    .news-quote {
        padding: 25px 20px;
        font-size: 1rem;
    }
}

/* ===========================================================
   VİDEO GALERİ SAYFASI
   =========================================================== */
.video-gallery-page {
    padding: 80px 0 100px;
    background: #FFFFFF;
}

.video-page-title {
    text-align: center;
    font-family: 'Encode Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #DC3545;
    margin-bottom: 50px;
}

/* Öne Çıkan Video */
.featured-video-wrapper {
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px #00000033;
}

.featured-video-wrapper iframe {
    border: none;
}

/* YouTube Takip Butonu */
.youtube-subscribe-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.youtube-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FF0000;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}

.youtube-subscribe-btn:hover {
    background: #CC0000;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.youtube-subscribe-btn i {
    font-size: 1.2rem;
}

/* Sayfalama Bilgisi */
.video-pagination-info,
.video-pagination-bottom {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1rem;
    color: #666666;
}

.video-pagination-info .current-page,
.video-pagination-bottom .current-page {
    color: var(--ak-orange);
    font-weight: 600;
}

.video-pagination-info .next-page,
.video-pagination-bottom .next-page {
    color: #666666;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s;
}

.video-pagination-info .next-page:hover,
.video-pagination-bottom .next-page:hover {
    color: var(--ak-orange);
}

.video-pagination-bottom {
    margin-top: 50px;
    margin-bottom: 0;
}

/* Video Thumbnail Grid */
.video-thumbnails-grid {
    margin-top: 20px;
}

.video-thumb-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.video-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.video-thumb-item:hover img {
    transform: scale(1.05);
}

.video-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000040;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-thumb-item:hover .video-thumb-overlay {
    opacity: 1;
}

.video-thumb-overlay i {
    width: 50px;
    height: 50px;
    background: #FF0000;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding-left: 4px;
}

/* Responsive */
@media (max-width: 576px) {
    .video-thumb-overlay i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ==================================================
   BİYOGRAFİ SAYFASI - YENİ TASARIM (numankurtulmus stili)
   ================================================== */

.bio-page-section {
    padding: 80px 0 100px;
    background: #F8F9FA;
}

/* Sol Sidebar */
.bio-sidebar {
    position: sticky;
    top: 100px;
}

.bio-photo {
    margin: 0 0 40px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px #00000026;
}

.bio-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Sağ Taraf - Biyografi İçeriği */
.bio-content {
    padding-left: 30px;
}

.bio-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444444;
    margin-bottom: 25px;
    text-align: justify;
}

.bio-content p:first-child {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ak-navy);
    line-height: 1.8;
}

.bio-content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .bio-page-section {
        padding: 60px 0 80px;
    }
    
    .bio-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
    
    .bio-photo {
        max-width: 350px;
        margin: 0 auto 30px;
    }
    
    .bio-content {
        padding-left: 0;
    }
    
    .bio-content p {
        font-size: 1rem;
    }
    
    .bio-content p:first-child {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .bio-page-section {
        padding: 40px 0 60px;
    }
    
    .political-life {
        padding: 20px;
    }
    
    .political-timeline li {
        padding: 12px 0 12px 20px;
    }
    
    .political-timeline li .title {
        font-size: 0.9rem;
    }
}

/* ==================================================
   ZİYARETLER SAYFASI
   ================================================== */

.visits-map-section {
    padding: 80px 0 100px;
    background: #F8F9FA;
}

.visits-map-section .section-header {
    margin-bottom: 50px;
}

.visits-map-section .section-title {
    font-family: 'Encode Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ak-navy);
    margin-bottom: 15px;
}

.visits-map-section .section-subtitle {
    font-size: 1.1rem;
    color: #666666;
}

/* Harita Wrapper */
.map-wrapper {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px #00000015;
    margin-bottom: 60px;
}

.map-header {
    background: var(--ak-navy);
    padding: 20px 30px;
    text-align: center;
}

.btn-fullscreen-map {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ak-orange);
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-fullscreen-map:hover {
    background: #FFFFFF;
    color: var(--ak-orange);
    transform: translateY(-2px);
}

.btn-fullscreen-map i {
    font-size: 1.1rem;
}

.map-container {
    position: relative;
    width: 100%;
}

.map-container iframe {
    display: block;
    width: 100%;
    min-height: 650px;
}

/* Ziyaret İstatistikleri */
.visits-stats {
    margin-top: 20px;
}

.stat-item {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px #0000000D;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px #00000015;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ak-orange) 0%, #FFAB40 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 1.8rem;
    color: #FFFFFF;
}

.stat-number {
    font-family: 'Encode Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ak-navy);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666666;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
    .visits-map-section {
        padding: 60px 0 80px;
    }
    
    .visits-map-section .section-title {
        font-size: 2rem;
    }
    
    .map-container iframe {
        min-height: 500px;
    }
}

@media (max-width: 576px) {
    .visits-map-section {
        padding: 40px 0 60px;
    }
    
    .map-header {
        padding: 15px 20px;
    }
    
    .btn-fullscreen-map {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .map-container iframe {
        min-height: 400px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
}

/* ==================================================
   İLÇELER ARŞİV SAYFASI
   ================================================== */

.districts-archive-section {
    padding: 80px 0 100px;
    background: #F8F9FA;
}

/* İlçe Kartı */
.district-card {
    display: block;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 5px 20px #00000015;
    transition: all 0.4s ease;
}

.district-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px #00000025;
}

.district-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.district-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.district-card:hover .district-image img {
    transform: scale(1.1);
}

.district-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #0A2647CC 0%, #0A264700 60%);
    transition: all 0.3s;
}

.district-card:hover .district-overlay {
    background: linear-gradient(to top, #F7941DCC 0%, #F7941D00 70%);
}

/* İlçe Bilgisi */
.district-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.district-info h3 {
    font-family: 'Encode Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    text-shadow: 0 2px 10px #00000040;
}

.district-arrow {
    width: 40px;
    height: 40px;
    background: var(--ak-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.district-card:hover .district-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1199px) {
    .district-image {
        height: 200px;
    }
    
    .district-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .districts-archive-section {
        padding: 60px 0 80px;
    }
    
    .district-image {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .district-image {
        height: 200px;
    }
    
    .district-info {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .districts-archive-section {
        padding: 40px 0 60px;
    }
    
    .district-image {
        height: 180px;
    }
    
    .district-info h3 {
        font-size: 1.1rem;
    }
    
    .district-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* ==================================================
   İLÇE DETAY SAYFASI
   ================================================== */

/* İlçe Hero */
.district-hero {
    position: relative;
    height: 450px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.district-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.district-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.district-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #0A2647E6 0%, #0A264780 50%, #0A264740 100%);
}

.district-hero-content {
    position: relative;
    z-index: 2;
}

.district-hero .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 15px;
}

.district-hero .breadcrumb-item a {
    color: #FFFFFFB3;
    text-decoration: none;
}

.district-hero .breadcrumb-item.active {
    color: var(--ak-orange);
}

.district-hero .breadcrumb-item + .breadcrumb-item::before {
    color: #FFFFFF80;
}

.district-hero h1 {
    font-family: 'Encode Sans', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px #00000040;
}

.district-slogan {
    font-size: 1.3rem;
    color: #FFFFFFCC;
    font-style: italic;
}

/* İlçe Bilgileri Section */
.district-info-section {
    padding: 80px 0;
    background: #F8F9FA;
}

/* İlçe Hakkında */
.district-about .section-title {
    font-family: 'Encode Sans', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--ak-navy);
    margin-bottom: 40px;
}

.info-block {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #E0E0E0;
}

.info-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ak-orange) 0%, #FFAB40 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 1.5rem;
    color: #FFFFFF;
}

.info-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ak-navy);
    margin-bottom: 12px;
}

.info-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 0;
    text-align: justify;
}

/* Hızlı Bilgiler Sidebar */
.district-quick-info {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px #0000000D;
    margin-bottom: 30px;
}

.district-quick-info h4 {
    font-family: 'Encode Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ak-navy);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--ak-orange);
}

.quick-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
}

.quick-info-list li:last-child {
    border-bottom: none;
}

.quick-info-list .label {
    font-size: 0.95rem;
    color: #666666;
}

.quick-info-list .label i {
    color: var(--ak-orange);
    margin-right: 10px;
    width: 20px;
}

.quick-info-list .value {
    font-weight: 600;
    color: var(--ak-navy);
}

/* Diğer İlçeler */
.other-districts {
    background: var(--ak-navy);
    border-radius: 15px;
    padding: 30px;
}

.other-districts h4 {
    font-family: 'Encode Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.district-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.district-links a {
    background: #FFFFFF1A;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.district-links a:hover {
    background: var(--ak-orange);
    color: #FFFFFF;
}

/* Hükümet Yatırımları */
.government-investments {
    padding: 100px 0;
    background: #FFFFFF;
}

.government-investments .section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--ak-orange);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.government-investments .section-title {
    font-family: 'Encode Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ak-navy);
    margin-bottom: 10px;
}

.government-investments .section-subtitle {
    font-size: 1.1rem;
    color: #666666;
}

/* Yatırım Kartları */
.investment-card {
    background: #F8F9FA;
    border-radius: 15px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.investment-card:hover {
    background: #FFFFFF;
    border-color: var(--ak-orange);
    box-shadow: 0 15px 40px #00000015;
    transform: translateY(-5px);
}

.investment-icon {
    width: 70px;
    height: 70px;
    background: var(--ak-navy);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.investment-icon i {
    font-size: 1.8rem;
    color: #FFFFFF;
}

.investment-card:hover .investment-icon {
    background: var(--ak-orange);
}

.investment-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ak-navy);
    margin-bottom: 20px;
}

.investment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.investment-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.investment-list li i {
    color: var(--ak-orange);
    font-size: 0.8rem;
}

.investment-amount {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 15px 20px;
    text-align: center;
    border: 1px solid #E0E0E0;
}

.investment-card:hover .investment-amount {
    background: var(--ak-navy);
    border-color: var(--ak-navy);
}

.investment-amount .amount {
    display: block;
    font-family: 'Encode Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--ak-orange);
}

.investment-card:hover .investment-amount .amount {
    color: #FFFFFF;
}

.investment-amount .label {
    font-size: 0.85rem;
    color: #888888;
}

.investment-card:hover .investment-amount .label {
    color: #FFFFFFB3;
}

/* Toplam Yatırım */
.total-investment {
    margin-top: 60px;
}

.total-box {
    background: linear-gradient(135deg, var(--ak-orange) 0%, #FFAB40 100%);
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.total-icon {
    width: 80px;
    height: 80px;
    background: #FFFFFF33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.total-icon i {
    font-size: 2.5rem;
    color: #FFFFFF;
}

.total-content {
    text-align: left;
}

.total-label {
    display: block;
    font-size: 1.1rem;
    color: #FFFFFFE6;
    margin-bottom: 5px;
}

.total-amount {
    font-family: 'Encode Sans', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #FFFFFF;
}

/* İlçe Galeri */
.district-gallery {
    padding: 80px 0;
    background: #F8F9FA;
}

.gallery-item {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0A2647CC;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-overlay i {
    font-size: 2rem;
    color: #FFFFFF;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* İlçe Detay Responsive */
@media (max-width: 991px) {
    .district-hero {
        height: 350px;
    }
    
    .district-hero h1 {
        font-size: 3rem;
    }
    
    .district-info-section {
        padding: 60px 0;
    }
    
    .government-investments {
        padding: 60px 0;
    }
    
    .total-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .total-content {
        text-align: center;
    }
    
    .total-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .district-hero {
        height: 300px;
        padding-bottom: 40px;
    }
    
    .district-hero h1 {
        font-size: 2.5rem;
    }
    
    .info-block {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .district-hero h1 {
        font-size: 2rem;
    }
    
    .district-slogan {
        font-size: 1rem;
    }
    
    .government-investments .section-title {
        font-size: 1.8rem;
    }
    
    .investment-card {
        padding: 25px 20px;
    }
    
    .total-amount {
        font-size: 2rem;
    }
}
