/* ==========================================================================
   Türkiye İl ve İlçeleri Rehberi - Ana Stil Dosyası
   Tasarım: Tam Genişlik Kompakt Versiyon
   ========================================================================== */

/* ===== DEĞİŞKENLER ===== */
:root {
    --ink: #1a1a2e;
    --crimson: #c0392b;
    --crimson2: #e74c3c;
    --gold: #d4a843;
    --sand: #f5f0e8;
    --mist: #eef2f7;
    --body-clr: #4a4a5a;
    --map-land: #c9d5c2;
    --map-hover: #2d6a4f;
    --map-sel: #c0392b;
    --map-stroke: #ffffff;
    --map-bg: #dde8d8;
}

/* ===== RESET & TEMEL ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--sand);
    color: var(--ink);
    overflow-x: hidden;
}

/* ===== NAVİGASYON ===== */
.ilc-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    box-shadow: 0 1px 8px rgba(0, 0, 0, .04);
}

.ilc-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--ink);
    text-decoration: none;
}

.ilc-logo span {
    color: var(--crimson);
}

.ilc-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.ilc-links a {
    color: var(--body-clr);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: color .2s;
}

.ilc-links a:hover {
    color: var(--crimson);
}

/* Leaflet attribution'ı gizle */
.leaflet-control-attribution {
    display: none !important;
}

/* Mobil Menü Butonu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2.5px;
    background: var(--ink);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== TICKER (Kayan Yazı) ===== */
.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
    background: var(--ink);
    padding: 0.3rem 0;
    width: 100%;
}

.ticker-inner {
    display: inline-flex;
    animation: tkr 40s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0 1.5rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, .55);
}

.ticker-item strong {
    color: var(--gold);
}

.ticker-sep {
    color: rgba(255, 255, 255, .18);
}

@keyframes tkr {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== HERO BÖLÜMÜ ===== */
.hero-wrap {
    background: var(--map-bg);
    padding: 0.5rem 1.5rem 1rem;
    width: 100%;
}

/* Bölge Butonları (Piller) */
.region-pill-row {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.region-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.25rem 0.7rem;
    background: white;
    border-radius: 2rem;
    border: 1.5px solid #cdd8c8;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    transition: all 0.2s;
}

.region-pill .pill-emoji {
    font-size: 0.85rem;
}

.region-pill .pill-count {
    background: #ecf0ea;
    color: #6a7a68;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 0.1rem 0.3rem;
    border-radius: 1rem;
}

/* Hero Split (İki Kolon) */
.hero-split {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.hero-left {
    flex: 0 0 74%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.hero-right {
    flex: 0 0 calc(26% - 0.75rem);
    display: flex;
    flex-direction: column;
}

/* Harita Kutusu */
.map-box {
    width: 100%;
    background: var(--map-bg);
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .85);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
    position: relative;
    min-height: 420px;
    height: auto;
    z-index: 1;
    flex: 1;
}

#turkey-map {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    background: var(--map-bg);
}

/* Harita Alt Bilgi */
.map-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 0.2rem 0;
    font-size: 0.65rem;
    color: #7a8a78;
}

.map-bar .hint {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.map-bar .legend {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ldot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.15rem;
}

/* Leaflet Özel Stiller */
.leaflet-popup-content {
    font-size: 12px;
    line-height: 1.3;
    margin: 6px;
}

.leaflet-popup-content strong {
    font-size: 14px;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
}

/* Marker Animasyonu */
.marker-pulse {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--crimson);
    cursor: pointer;
    box-shadow: 0 0 0 rgba(192, 57, 43, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(192, 57, 43, 0); }
}

/* ===== SAĞ PANEL - ÖNE ÇIKAN İLLER ===== */
.featured-cities-vertical {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 0.85rem 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
}

.featured-cities-vertical h3 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid rgba(192, 57, 43, 0.15);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.featured-cities-vertical h3 span {
    background: var(--crimson);
    color: white;
    font-size: 0.6rem;
    padding: 0.1rem 0.45rem;
    border-radius: 2rem;
}

.vertical-city-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.city-card-vertical {
    display: flex;
    align-items: center;
    padding: 0.4rem 0.3rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.2s;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.city-card-vertical .city-img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.6rem;
    background-size: cover;
    background-position: center;
    margin-right: 0.5rem;
    flex-shrink: 0;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.city-card-vertical .city-info h4 {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.city-card-vertical .city-info .city-meta {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6rem;
    color: var(--body-clr);
}

.city-card-vertical .city-info .city-meta span {
    background: rgba(192,57,43,0.05);
    padding: 0.1rem 0.35rem;
    border-radius: 1rem;
}

.city-card-vertical .city-arrow {
    font-size: 0.7rem;
    opacity: 0.3;
}

/* ===== GENEL BÖLÜM STİLLERİ ===== */
.sec {
    padding: 2rem 1.5rem;
    width: 100%;
}

.sec.full-width {
    padding: 2rem 0;
}

.sec-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sec.full-width .sec-inner {
    max-width: 100%;
    padding: 0 1.5rem;
}

.sec-ey {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--crimson);
    background: rgba(192, 57, 43, .07);
    padding: 0.2rem 0.55rem;
    border-radius: 2rem;
    margin-bottom: 0.5rem;
}

.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

/* ===== BÖLGE GRİDİ ===== */
.bolge-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.bolge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.9rem 0.5rem;
    border-radius: 0.75rem;
    border: 1.5px solid #e4e8e0;
    background: #fff;
    text-decoration: none;
    transition: all .2s;
}

.bolge-ico {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.bolge-nm {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
}

.bolge-ct {
    font-size: 0.6rem;
    color: var(--body-clr);
    margin-top: 0.05rem;
}

/* ===== FEATURED GRID (Öne Çıkanlar) ===== */
.feat-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
    margin-top: 1rem;
}

.feat-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.85rem;
    text-decoration: none;
    display: block;
    min-height: 200px;
    transition: transform .3s;
}

.feat-card.lg {
    grid-row: span 2;
    min-height: 415px;
}

.feat-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.9rem;
}

.feat-tag {
    display: inline-block;
    background: var(--crimson);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.4rem;
    border-radius: 2rem;
    margin-bottom: 0.35rem;
}

.feat-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.feat-card.lg .feat-title {
    font-size: 1.5rem;
}

.feat-meta {
    color: rgba(255, 255, 255, .52);
    font-size: 0.65rem;
}

.feat-arr {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    opacity: 0;
}

/* ===== BLOG BÖLÜMÜ - TÜM YAZILAR BUTONU ALTTE ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid #eaeef2;
    transition: all 0.2s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    border-color: var(--crimson);
}

/* Görsel alanı */
.blog-img {
    position: relative;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
    flex-shrink: 0;
}

/* Kategori etiketi */
.blog-cat {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    z-index: 2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.1);
}

/* İçerik alanı */
.blog-body {
    padding: 1.25rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #fff;
}

/* Başlık */
.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3rem;
}

/* Özet metin */
.blog-exc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #5a6a7a;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Alt bilgi (tarih, okuma süresi) */
.blog-ft {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid #edf2f7;
    font-size: 0.7rem;
    color: #8899aa;
    margin-top: auto;
}

.blog-ft span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Tarih için icon */
.blog-ft .dt::before {
    content: "📅";
    font-size: 0.65rem;
    opacity: 0.7;
    margin-right: 0.2rem;
}

/* Okuma süresi için icon */
.blog-ft .rd::before {
    content: "⏱️";
    font-size: 0.65rem;
    opacity: 0.7;
    margin-right: 0.2rem;
}

/* Tüm yazılar butonu - ALTTE */
.blog-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.blog-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--crimson);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--crimson);
    border-radius: 2rem;
    transition: all 0.2s ease;
    background: transparent;
}

.blog-view-all:hover {
    background: var(--crimson);
    color: white;
    gap: 0.75rem;
}

/* ===== RESPONSIVE ===== */

/* Tablet - 1024px altı */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .blog-img {
        height: 160px;
    }
    
    .blog-title {
        font-size: 1rem;
        min-height: 2.8rem;
    }
}

/* Mobil - 768px altı */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .blog-card {
        flex-direction: row;
        height: auto;
        min-height: 130px;
    }
    
    .blog-img {
        width: 130px;
        height: 130px;
        flex-shrink: 0;
        border-radius: 0.75rem 0 0 0.75rem;
    }
    
    .blog-body {
        padding: 0.9rem;
        width: calc(100% - 130px);
    }
    
    .blog-title {
        font-size: 0.95rem;
        min-height: auto;
        -webkit-line-clamp: 2;
        margin-bottom: 0.3rem;
    }
    
    .blog-exc {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
        margin-bottom: 0.5rem;
    }
    
    .blog-cat {
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
        top: 0.5rem;
        left: 0.5rem;
    }
    
    .blog-ft {
        padding-top: 0.5rem;
        font-size: 0.65rem;
    }
    
    /* Mobilde buton ortalanabilir */
    .blog-footer {
        justify-content: center;
    }
}

/* Küçük mobil - 480px altı */
@media (max-width: 480px) {
    .blog-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .blog-img {
        width: 100%;
        height: 160px;
        border-radius: 0.75rem 0.75rem 0 0;
    }
    
    .blog-body {
        width: 100%;
        padding: 1rem;
    }
    
    .blog-title {
        font-size: 1rem;
        min-height: auto;
    }
    
    .blog-exc {
        font-size: 0.8rem;
    }
    
    .blog-footer {
        justify-content: center;
        margin-top: 0.75rem;
    }
    
    .blog-view-all {
        width: 100%;
        justify-content: center;
    }
}

/* Çok küçük mobil - 360px altı */
@media (max-width: 360px) {
    .blog-img {
        height: 140px;
    }
    
    .blog-body {
        padding: 0.85rem;
    }
    
    .blog-title {
        font-size: 0.9rem;
    }
    
    .blog-exc {
        font-size: 0.7rem;
    }
    
    .blog-ft {
        font-size: 0.6rem;
    }
}

/* Grid içindeki boşluk düzeltmeleri */
.blog-grid:empty {
    display: none;
}

/* Hata durumu için */
.blog-error {
    grid-column: 1/-1;
    text-align: center;
    padding: 2rem;
    color: #999;
    font-size: 0.9rem;
}
/* ===== VERİ BÖLÜMÜ - TAM GENİŞLİK ===== */
.data-sec {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    width: 100%;
}

.data-sec::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 57, 43, .15) 0%, transparent 70%);
    pointer-events: none;
}

.data-sec .sec-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.data-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.data-header-left {
    flex: 1;
}

.data-header p {
    color: rgba(255, 255, 255, .4);
    max-width: 350px;
    font-size: 0.8rem;
    line-height: 1.6;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
}

.data-card {
    padding: 1.2rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: all .2s;
}

.data-card:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(192, 57, 43, .3);
    transform: translateY(-2px);
}

.data-ico {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.data-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.data-num sup {
    font-size: 0.8rem;
    color: var(--gold);
    margin-left: 0.1rem;
}

.data-lbl {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, .4);
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ===== TOPICS BÖLÜMÜ - TÜM YAZILAR BUTONU MOBİLDE TAM GENİŞLİK ===== */
.topics-sec {
    background: var(--sand);
    padding: 2rem 0;
    width: 100%;
}

.topics-sec .sec-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.topics-header {
    margin-bottom: 1.5rem;
}

.topics-header p {
    color: #666;
    font-size: 0.75rem;
    margin: 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

.topic-card {
    position: relative;
    display: block;
    background: #fff;
    border: 1.5px solid #e4e8e0;
    border-radius: 0.75rem;
    text-decoration: none;
    color: var(--ink);
    overflow: hidden;
    transition: all .2s;
    min-height: 3.8rem;
}

.topic-card:hover {
    border-color: var(--tc);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,.05);
}

.topic-bar {
    position: absolute;
    inset: 0 auto 0 0;
    background: color-mix(in srgb, var(--tc) 8%, transparent);
    pointer-events: none;
    transition: width .3s ease;
}

.topic-card:hover .topic-bar {
    background: color-mix(in srgb, var(--tc) 12%, transparent);
}

.topic-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0.75rem;
    z-index: 1;
}

.topic-emoji {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,.05));
}

.topic-card:hover .topic-emoji {
    transform: scale(1.1) rotate(-3deg);
}

.topic-info {
    flex: 1;
    min-width: 0;
}

.topic-name {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topic-card:hover .topic-name {
    color: var(--tc);
}

.topic-count {
    display: block;
    font-size: 0.6rem;
    color: #999;
    margin-top: 0.05rem;
}

.topic-arr {
    font-size: 0.7rem;
    color: var(--tc);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .2s, transform .2s;
    flex-shrink: 0;
}

.topic-card:hover .topic-arr {
    opacity: 1;
    transform: translateX(0);
}

/* Tüm yazılar butonu - Genel stil */
.topics-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.topics-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--crimson);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--crimson);
    border-radius: 2rem;
    transition: all 0.2s ease;
    background: transparent;
    white-space: nowrap;
}

.topics-view-all:hover {
    background: var(--crimson);
    color: white;
    gap: 0.75rem;
}

/* ===== RESPONSIVE ===== */

/* Tablet - 1100px altı */
@media (max-width: 1100px) {
    .topics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet - 860px altı */
@media (max-width: 860px) {
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

/* Mobil - 720px altı */
@media (max-width: 720px) {
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

/* Mobil - 560px altı */
@media (max-width: 560px) {
    .topics-footer {
        justify-content: center;
    }
    
    .topics-view-all {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

/* Küçük mobil - 480px altı */
@media (max-width: 480px) {
    .topics-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .topics-footer {
        justify-content: stretch;
        margin-top: 1rem;
    }
    
    .topics-view-all {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        border-radius: 2.5rem;
    }
}

/* Çok küçük mobil - 360px altı */
@media (max-width: 360px) {
    .topics-view-all {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Fade-up animasyonu */
.fu {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .4s ease, transform .4s ease;
}

.fu.vis {
    opacity: 1;
    transform: none;
}

/* ===== KARŞILAŞTIRMA WIDGET ===== */
.compare-widget {
    background: var(--ink);
    padding: 1.5rem 1.5rem;
    width: 100%;
}

.compare-widget form {
    max-width: 1400px;
    margin: 0 auto;
}

.compare-widget input {
    width: 200px;
    padding: 0.6rem 0.85rem;
    font-size: 0.82rem;
}

.compare-widget button {
    padding: 0.6rem 1.2rem;
    font-size: 0.82rem;
}

/* ===== TÜM İLLER GRİDİ (YATAY) ===== */
.il-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.il-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.9rem;
    background: #fff;
    border: 1.5px solid #e4e8e0;
    border-radius: 0.7rem;
    text-decoration: none;
    color: var(--ink);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all .15s;
    width: 100%;
    box-sizing: border-box;
}

.il-link:hover {
    border-color: var(--crimson);
    color: var(--crimson);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(192, 57, 43, .15);
}

.il-plate {
    background: #f0f0ec;
    color: #888;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 0.3rem;
    min-width: 2rem;
    text-align: center;
    flex-shrink: 0;
}

.il-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== FADE-UP ANİMASYONU ===== */
.fu {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .4s ease, transform .4s ease;
}

.fu.vis {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE TASARIM ===== */
@media (max-width: 1400px) {
    .data-grid,
    .topics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .ilc-nav,
    .hero-wrap {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        flex: 0 0 100%;
    }

    .featured-cities-vertical {
        min-height: auto;
    }

    .vertical-city-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .city-card-vertical {
        flex: 1 1 calc(50% - 0.3rem);
    }

    .bolge-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .data-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-box,
    #turkey-map {
        min-height: 380px;
    }
}

@media (max-width: 1100px) {
    .topics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .mobile-menu-btn {
        display: flex;
    }

    .ilc-links {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        padding: 0;
        gap: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .ilc-links.active {
        max-height: 250px;
    }

    .ilc-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(-6px);
        transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
    }

    .ilc-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .ilc-links a {
        display: block;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .city-card-vertical {
        flex: 1 1 100%;
    }

    .feat-grid {
        grid-template-columns: 1fr;
    }

    .feat-card.lg {
        min-height: 240px;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .map-box,
    #turkey-map {
        min-height: 300px;
    }
    
    .data-grid {
        grid-template-columns: 1fr;
    }
    
    .data-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .data-header p {
        max-width: 100%;
    }
}

@media (max-width: 720px) {
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

@media (max-width: 560px) {
    .blog-grid,
    .exp-grid,
    .bolge-grid {
        grid-template-columns: 1fr 1fr;
    }

    .map-box,
    #turkey-map {
        min-height: 260px;
    }
    
    .compare-widget input {
        width: 160px;
    }
}

@media (max-width: 480px) {
    .ilc-nav {
        padding: 0.5rem 0.75rem;
    }

    .ilc-logo {
        font-size: 1rem;
    }

    .mobile-menu-btn {
        width: 22px;
        height: 15px;
    }

    .sec {
        padding: 1.5rem 0.75rem;
    }
    
    .sec.full-width {
        padding: 1.5rem 0;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .compare-widget form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .compare-widget input,
    .compare-widget button {
        width: 100%;
    }
}