
/* --- TEMA DEĞİŞKENLERİ --- */
:root {
    /* Açık Tema (Hero renkleri tüm siteye yayıldı) */
    --bg-body: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    --bg-section: transparent;
    --bg-card: #ffffff;
    --text-main: #334155;
    --text-heading: #0a192f;
    --text-muted: #64748b;
    --primary-color: #0ea5e9;
    --border-color: #e2e8f0;
    --header-bg: rgba(255, 255, 255, 0.95);
    --card-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

[data-theme="dark"] {
    /* Koyu Tema */
    --bg-body: #0f172a; /* Footer'daki şık laciverti ana arka plan yaptık */
    --bg-section: transparent;
    --bg-card: #1e293b;
    --text-main: #cbd5e1;
    --text-heading: #f8fafc;
    --text-muted: #94a3b8;
    --primary-color: #0ea5e9;
    --border-color: #334155;
    --header-bg: rgba(15, 23, 42, 0.95);
    --card-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


/* Sayfa içi linklere yumuşak kaydırma efekti */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
}

/* Erişilebilirlik: Klavye ile gezenler için odaklanma (Focus) stili */
a:focus-visible, button:focus-visible {
    outline: 3px dashed #0ea5e9;
    outline-offset: 4px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: 0.3s;
    padding: 15px 0;
}

header.scrolled {
        background-color: var(--header-bg);
        /* diğer özellikleri aynı bırak */
    }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-heading) !important; /* Değişken atandı */
    transition: 0.3s;
    text-decoration: none !important;
    border: none;
    outline: none;
}
/* Yeni Eklenen: Logonun Boyut Ayarı */
.header-logo {
    height: 40px;      /* Logonun yüksekliği (kendi logona göre büyütebilir/küçültebilirsin) */
    width: auto;       /* Genişliği yüksekliğe göre otomatik ayarlar, bozulmayı önler */
    object-fit: contain;
}

header.scrolled .logo { color: var(--text-heading); }
.logo span { color: #0ea5e9; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: var(--text-main); /* Değişken atandı */
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}
header.scrolled .nav-links a { color: var(--text-main); }
.nav-links a:hover { color: #0ea5e9; }

.btn-nav-call {
    background-color: #0ea5e9;
    color: white !important;
    padding: 8px 18px;
    border-radius: 6px;
}

/* Mobil Menü Butonu (Masaüstünde Gizli) */
.menu-btn {
    display: none;
    background: transparent;
    border: none;
    padding: 0;
}

/* Hero Bölümü (Izgara Yapısı) */
.hero {
    background: transparent; /* İçerideki sabit gradient silindi! */
    color: var(--text-main);
    padding: 160px 0 100px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge-local {
    display: inline-block;
    background: rgba(14, 165, 233, 0.15);
    color: #0ea5e9;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.hero h1, .section-title, .logo, .package-name, .card h3 { 
    color: var(--text-heading) !important; 
}

.hero h1 span { color: #0ea5e9; }

.hero p, .nav-links a { 
    color: var(--text-main); 
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: white;
    padding: 16px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    transition: 0.2s;
}

.btn-whatsapp:hover { transform: translateY(-3px); }

/* Hero Görselleri (Süzülen Kartlar) */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.floating-stat {
    background: var(--bg-card); /* Sabit beyaz silindi */
    box-shadow: var(--card-shadow); 
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateY(0);
    animation: float 4s ease-in-out infinite;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.stat-delay { animation-delay: 2s; }

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

.stat-icon {
    font-size: 30px;
    background: var(--bg-body); /* Arka plan akıllı oldu */
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.stat-text {
    text-align: left;
    flex: 1;
}

.stat-text strong {
    display: block;
    color: var(--text-heading); /* Sabit lacivert silindi */
    font-size: 16px;
}

.stat-text span {
    color: var(--text-muted); /* Sabit gri silindi */
    font-size: 14px;
}

/* Ortak Bölüm Başlıkları */
.section-title {
    text-align: center;
    font-size: 32px;
    color: #0a192f;
    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #0ea5e9;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Hizmetler Bölümü */
.services, .process, .pricing { padding: 80px 0; }

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

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #0ea5e9;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.card-icon { font-size: 40px; margin-bottom: 15px; }
.card h3 { color: #0a192f; margin-bottom: 10px; }

/* Süreç Bölümü */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #0ea5e9;
    color: white;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

/* Fiyatlandırma */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.price-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
}

.price-card.featured {
    background: #0a192f;
    color: white;
    border-color: #0ea5e9;
    padding: 50px 30px;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0ea5e9;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.price-card.featured h3, .price-card.featured .package-name { color: white; }
.price-card.featured .price { color: #0ea5e9; }
.price-card.featured li { border-bottom-color: #1e293b; color: #cbd5e1; }

.package-name { font-size: 20px; font-weight: bold; color: #0a192f; margin-bottom: 5px; }
.price { font-size: 24px; font-weight: bold; color: #0ea5e9; margin-bottom: 25px; }

.price-features { list-style: none; text-align: left; margin-bottom: 30px; }
.price-features li { padding: 12px 0; border-bottom: 1px solid #e2e8f0; font-size: 15px; }

.btn-price-cta {
    display: block;
    background: #0ea5e9;
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}
.price-card.featured .btn-price-cta { background: #25d366; }

/* --- YENİ PROFESYONEL FOOTER --- */
.main-footer {
   background-color: transparent;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--text-heading);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

/* Başlıkların altındaki şık mavi çizgi */
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col ul li a {
    color: var(--text-main);
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

/* Linklerin üzerine gelince sağa doğru hafifçe kayma animasyonu */
.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px; 
}

/* İletişim Bilgileri */
.contact-info li {
    color: var(--text-main);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Sosyal Medya İkonları */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card); /* Hafif belirginleşmesi için bg-card yaptık */
    border: 1px solid var(--border-color);
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    color: var(--text-heading); /* <--- İKONLARI GÖRÜNÜR YAPAN ASIL KOD BU */
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff; /* Üzerine gelince ikonlar bembeyaz parlasın */
    transform: translateY(-3px);
}

/* Footer En Alt Bölüm (Copyright) */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

/* --- AKILLI SSS (FAQ) BÖLÜMÜ --- */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Not: .faq-card arka plan rengi ve çerçevesi zaten ortak temanın parçası. 
   Burada sadece iç boşluk ve köşe yuvarlatmayı veriyoruz. */
.faq-card {
    padding: 25px;
    border-radius: 12px;
}

.faq-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-heading); /* Açık/Koyu moda uyumlu başlık rengi */
}

.faq-card p {
    font-size: 15px;
    color: var(--text-main); /* Açık/Koyu moda uyumlu paragraf rengi */
}

/* =========================================
   MOBİL UYUM (Responsive) VE AÇILIR MENÜ
   ========================================= */
@media (max-width: 768px) {
    /* Menü İkonu Mobilde Görünür Olur */
    .menu-btn { 
        display: flex; 
        flex-direction: column;
        justify-content: space-between;
        width: 32px;
        height: 24px;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-btn .bar {
        height: 3px;
        width: 100%;
        background-color: var(--text-heading); /* Renk artık temaya göre otomatik değişecek */
        border-radius: 4px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Animasyon (Kusursuz Çarpı İşareti) Düzeltmesi */
   .menu-btn.open .bar:nth-child(1) { transform: translateY(10.5px) rotate(45deg); }
    .menu-btn.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); } /* Sağa sola kaymak yerine merkezden küçülerek kaybolur */
    .menu-btn.open .bar:nth-child(3) { transform: translateY(-10.5px) rotate(-45deg); }
    
    /* Mobil Menü Linkleri */
.nav-links { 
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-card); /* Sabit beyaz silindi */
        padding: 10px 30px 30px 30px;
        box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
        border-radius: 0 0 24px 24px;
        text-align: center;
        /* Diğer animasyon özellikleri aynı kalıyor... */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
.nav-links a { 
        color: var(--text-main) !important; /* Sabit renk silindi */
        font-size: 17px;
        font-weight: 600;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color); /* Alt çizgi akıllı oldu */
        width: 100%;
    }

    .nav-links a:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .btn-nav-call {
        margin-top: 15px;
        display: inline-block !important;
        background-color: #0ea5e9 !important;
        color: white !important;
        border-radius: 50px;
        padding: 14px 0 !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    }

    /* Hero Bölümü Mobil Ayarları */
    .hero { padding: 120px 0 60px 0; text-align: center; }
    .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero h1 { font-size: 38px; }
    .hero p { margin: 0 auto 30px auto; font-size: 16px;}
    .btn-whatsapp { width: 100%; max-width: 350px; margin: 0 auto;}
    
    /* Mobil Boşluk Tıraşlama */
    .services, .process, .pricing { padding: 50px 0; }
    .section-title { margin-bottom: 30px; font-size: 26px; }
    .card, .price-card { padding: 25px 20px; }
    .grid, .process-grid, .pricing-grid { gap: 20px; }
    .card-icon { margin-bottom: 10px; }
    .price-card.featured { transform: scale(1); }

    /* Mobilde Footer Alt Boşluğu (Butonlar yazıyı kapatmasın diye) */
    .main-footer {
        padding-bottom: 100px; 
    }

    /* Mobilde Butonları Köşelere Biraz Daha Yaklaştır */
    .whatsapp-float {
        left: 20px;
        bottom: 20px;
    }
    
    .yukari-float {
        right: 20px;
        bottom: 20px;
    }

    /* Mobilde Footer İçeriğini Ortalama */
    .footer-col {
        text-align: center;
    }
    
    /* Logoyu Ortala */
    .footer-logo {
        justify-content: center !important;
    }
    
    /* Sosyal Medya İkonlarını Ortala */
    .social-links {
        justify-content: center;
    }
    
    /* İletişim Bilgilerini (İkonlar + Yazı) Ortala */
    .contact-info li {
        justify-content: center;
    }
    
    /* Başlıkların altındaki şık mavi çizgiyi tam merkeze al */
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* --- SİTE İÇİ SABİT BUTONLAR --- */

/* WhatsApp Butonu */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px; /* Sitede sol altta durması göze daha çok çarpar */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(37, 211, 102, 0.5);
}

/* Yukarı Çık Butonu */
.yukari-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
    background-color: var(--text-heading); 
    color: var(--bg-card); /* Ok işareti buton zeminine tam kontrast yapacak */
    border: none;
    border-radius: 50%;
    display: none; 
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.yukari-float:hover {
    background-color: var(--primary-color); 
    color: #ffffff; /* Dokununca içi mavi, oku bembeyaz olacak */
    transform: translateY(-5px);
}

.hero h1 span {
    /* Logondaki renklere uyumlu modern metin parlaması */
    background: linear-gradient(to right, #0ea5e9, #1e3a8a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stats-section { padding: 100px 0; }

.section-subtitle { text-align: center; color: #94a3b8; margin-bottom: 50px; font-size: 18px; }

.stats-grid { display: grid; gap: 25px; max-width: 900px; margin: 0 auto; }

.stats-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative; /* Badge'in köşeye sabitlenmesi için */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: 0.3s;
}

.stats-card:hover { border-color: #0ea5e9; transform: translateX(10px); }

.badge-top {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e11d48; /* O kırmızı dikkat çekici renk */
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
}

.stats-card .card-icon { font-size: 35px; margin-bottom: 15px; }

/* Tüm Kartların Arka Plan ve Çerçeve Ayarları (Açık/Koyu Mod Uyumlu) */
/* Tüm Kartların Arka Plan ve Çerçeve Ayarları (Önerilen Paket Hariç) */
.card, .price-card:not(.featured), .faq-card, .stats-card {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--card-shadow);
    color: var(--text-main);
}

/* Önerilen (Featured) Paketi Korumaya Alıyoruz */
.price-card.featured {
    background: #0a192f !important; /* Gündüz de gece de dikkat çekici koyu lacivert kalır */
    border: 2px solid #0ea5e9 !important;
}

.price-card.featured .package-name {
    color: #ffffff !important; /* Tema ayarlarının başlığı karartmasını engelledik */
}

.price-card.featured .price {
    color: #0ea5e9 !important; /* Fiyat yazısı mavi */
}

.price-card.featured ul.price-features li {
    color: #cbd5e1 !important; /* Liste yazıları açık gri */
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

/* İstatistik Bölümü Yazı Renkleri (Gündüz koyu, gece açık renk olacak) */
.stats-section h2, 
.stats-section .section-subtitle, 
.stats-section h3 {
    color: var(--text-heading) !important;
}

.stats-section p {
    color: var(--text-main) !important;
}

/* Başlığın altındaki çizginin rengini de açalım ki daha şık dursun */
.stats-section .section-title::after {
    background-color: #0ea5e9;
}

.theme-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    transition: 0.3s;
}
.theme-btn:hover {
    transform: scale(1.1);
}


/* İletişim Bölümü İkon ve Link Ayarları */
.contact-info li a {
    color: var(--text-main);
    text-decoration: none;
    transition: 0.3s;
}

.contact-info li a:hover {
    color: var(--primary-color);
}

/* HARİKA BİR DOKUNUŞ: Gece Modunda Logoyu Otomatik Beyaz Yap */
[data-theme="dark"] .header-logo,
[data-theme="dark"] .footer-logo img {
    filter: brightness(0) invert(1);
}

/* Footer Logosunun Sıkışmasını Engelle */
.footer-logo img {
    width: auto !important;
    height: 45px !important;
    object-fit: contain;
}

/* =========================================
   BLOG & REHBER BÖLÜMÜ EKSİK KODLARI
   ========================================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.blog-image {
    position: relative;
    height: 220px;
    background-color: var(--border-color); /* Resim yüklenene kadar gri kutu gösterir */
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 20px;
    color: var(--text-heading);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.blog-read-more:hover {
    gap: 10px; /* Ok işareti sağa kayar */
}
/* --- MAKALE OKUMA EKRANI DÜZELTMELERİ --- */

/* Menünün makaleyi ezmesini engeller */
.single-post {
    padding-top: 140px;
    padding-bottom: 80px;
}

/* Makale içindeki kategori etiketinin uçmasını engeller */
.post-header {
    position: relative;
    text-align: center; /* Başlıkları ortalamak daha şık durur */
}

.post-header .blog-category {
    position: static; /* Sabit pozisyonu iptal ettik */
    display: inline-block;
    margin-bottom: 20px;
}

/* Kırık resim ikonunun çirkin durmasını engeller ve resmi toparlar */
.post-cover {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 40px;
    background-color: var(--border-color); /* Resim yüklenmezse gri şık bir kutu durur */
    box-shadow: var(--card-shadow);
}

/* Makale Okuma Ekranı (İçerik Stilleri) */
.post-title {
    font-size: 36px;
    color: var(--text-heading);
    line-height: 1.3;
    margin: 15px 0;
}

.post-content h2, .post-content h3 {
    color: var(--text-heading);
    margin-top: 35px;
    margin-bottom: 15px;
}

.post-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    background: rgba(14, 165, 233, 0.05);
    padding: 20px 25px;
    margin: 30px 0;
    font-size: 18px;
    font-style: italic;
    color: var(--text-heading);
    border-radius: 0 8px 8px 0;
}

/* Satışa Dönüştürme (CTA) Kutusu */
.post-cta {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(30, 58, 138, 0.1));
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
}

.post-cta h3 {
    color: var(--text-heading);
    margin-bottom: 15px;
}

/* --- SAYFALAMA (PAGINATION) BUTONLARI --- */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
}

.page-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.page-btn.active {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    pointer-events: none; /* Aktif butona tekrar tıklanmasını engeller */
}

/* Formun arka planını site genelindeki kartlardan biraz farklılaştırır */
#talep-formu .card {
    background: var(--bg-card) !important;
    border: 2px solid var(--primary-color) !important; /* Mavi çerçeve ile odak noktası olur */
    padding: 50px !important;
}

/* Form içi inputların arka planını tema ile uyumlu yapalım */
#talep-formu input, #talep-formu textarea {
    background: var(--bg-body) !important;
    color: var(--text-main) !important;
}

#talep-formu textarea {
    resize: vertical; /* Sadece yukarı-aşağı genişletmeye izin verir */
    min-height: 100px; /* Kutunun çok küçülmesini engeller */
}