/**
 * TemizWeb Sohbet Teması - Eksiksiz, Full & Kusursuz Profesyonel CSS
 * Licensed to TemizWebHosting.Com
 */

/* ==========================================================================
   1. GENEL AYARLAR & DEĞİŞKENLER
   ========================================================================== */
:root {
    --primary-gradient: linear-gradient(135deg, #ff5e62 0%, #ff9966 100%);
    --primary-color: #ff5e62;
    --primary-hover: #e04d51;
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --text-dark: #334155;
    --text-muted: #64748b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --font-main: 'Poppins', sans-serif;
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Player sticky olduğunda sitenin en altına padding vererek footer gizlenmesini çözer */
body.player-is-sticky {
    padding-bottom: 110px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   2. BEMBEYAZ MODERN ÜST MENÜ BAR KATMANI (SEKERSHELL GİBİ EN YÜKSEK KALİTE)
   ========================================================================== */
.site-header {
    background: transparent;
    padding: 25px 0 10px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

/* Üst beyaz bar Sekershell ile birebir dolgunluğa getirildi (padding artırıldı) */
.header-container-white {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 40px !important; /* Yükseklik ve yan genişlik artırılarak dolgunlaştırıldı */
    background: var(--white);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Dikeyde kusursuz ortalama */
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Logo Boyutu ve Ortalama */
.logo a {
    font-size: 26px !important; /* Logo bir tık büyütüldü */
    font-weight: 800;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1; /* Dikeyde basıklığı çözer */
}

.logo i {
    color: var(--primary-color) !important;
    font-size: 28px !important;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 35px; /* Menü ile sağdaki buton arası nefes alsın */
}

.nav-menu {
    display: flex;
    gap: 32px; /* Menü elemanlarının arası Sekershell gibi açıldı */
    align-items: center;
}

/* MENÜ ELEMANLARININ BÜYÜK, ETKİLİ YENİ SÜPER TASARIMI */
.nav-menu a {
    color: #475569 !important; /* Sekershell tarzı asil koyu ton */
    font-weight: 700 !important; /* Kalın ve dolgun yazılar */
    font-size: 16px !important; /* Harflerin boyutu büyütüldü */
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.2s ease-in-out !important;
    line-height: 1 !important;
}

/* Menü Üzerine Gelindiğinde Canlı Renk */
.nav-menu a:hover {
    color: var(--primary-color) !important;
}

/* ==========================================================================
   MÜŞTERİYİ DERTKEN KURTARAN OTOMATİK AKILLI İKON SİSTEMİ (CSS ILE ENTEGRE)
   ========================================================================== */
.nav-menu a::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    color: #ff5e62 !important; /* İkonlar o istediğin canlı kırmızı/mercan renginde parlayacak */
    font-size: 18px !important;
    transition: transform 0.2s ease !important;
    display: inline-block;
}

/* Menü isimlerine göre otomatik ikon atayan sihirli kodlarımız: */
.nav-menu a[href*="ana-sayfa"]::before, 
.nav-menu a[href*="anasayfa"]::before,
.nav-menu a[href$="/"]::before { 
    content: "\f015" !important; /* Ev İkonu */
}

.nav-menu a[href*="hakkimizda"]::before, 
.nav-menu a[href*="hakkinda"]::before { 
    content: "\f0c0" !important; /* Üyeler/Grup İkonu */
}

.nav-menu restrict,
.nav-menu a[href*="kurallar"]::before, 
.nav-menu a[href*="kural"]::before { 
    content: "\f071" !important; /* Ünlem/Kurallar İkonu */
}

.nav-menu a[href*="iletisim"]::before, 
.nav-menu a[href*="bize-ulasin"]::before { 
    content: "\f0e0" !important; /* Zarf/İletişim İkonu */
}

.nav-menu a[href*="blog"]::before, 
.nav-menu a[href*="haberler"]::before { 
    content: "\f1ea" !important; /* Gazete/Blog İkonu */
}

.nav-menu a[href*="radyo"]::before { 
    content: "\f8d5" !important; /* Radyo İkonu */
}

/* İkonlara Hover Efekti */
.nav-menu a:hover::before {
    transform: scale(1.18);
}

/* Sağdaki Hızlı Giriş Butonunu da Sekershell gibi dolgun yapalım */
.btn-fast-chat {
    background: var(--primary-gradient);
    color: var(--white) !important;
    padding: 14px 32px !important; /* Dikey ve yatay genişliği artırıldı */
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px !important;
    box-shadow: 0 6px 15px rgba(255, 94, 98, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.btn-fast-chat:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    color: #475569 !important;
    font-size: 26px;
    cursor: pointer;
    z-index: 110;
}

/* ==========================================================================
   3. HERO & DEVASA PREMIUM LOGIN ALANI
   ========================================================================== */
.hero-section {
    background: var(--primary-gradient);
    position: relative;
    padding: 190px 0 120px 0; /* Padding bir tık artırıldı çünkü barımız genişledi */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

/* Devasa Login Kartı */
.premium-huge-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 480px;
    width: 100%;
}

.premium-huge-card h2 {
    color: #1e293b;
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 5px;
}

.sub-desc {
    color: var(--text-muted);
    text-align: center;
    font-size: 14px;
    margin-bottom: 30px;
}

/* Form İçi Sadece Butonlar */
.huge-login-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-huge-submit {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 94, 98, 0.3);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-huge-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 94, 98, 0.4);
}

.btn-huge-diff {
    background: #0f172a;
    color: var(--white);
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-huge-diff:hover {
    background: #1e293b;
}

/* Mobil Uygulama İndirme Butonları */
.mobile-apps-container {
    margin-top: 30px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    text-align: center;
}

.app-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.app-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 10px;
    text-align: left;
    transition: all 0.3s;
}

.app-btn:hover {
    transform: translateY(-2px);
}

.apple-btn { background: #000000; }
.google-btn { background: #ea4335; }
.app-btn i { font-size: 24px; }
.app-btn span { display: flex; flex-direction: column; }
.app-btn span span { font-size: 9px; opacity: 0.8; }
.app-btn span strong { font-size: 12px; font-weight: 700; }

/* Tanıtım Tarafı */
.sohbet-rooms-promo {
    color: var(--white);
}

.badge-rooms {
    background: rgba(255, 255, 255, 0.18);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.sohbet-rooms-promo h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.yellow-dot {
    color: #facc15;
}

.sohbet-rooms-promo p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.8;
}

.user-avatars-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.avatar-item {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
}

.avatar-item img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.custom-badge-chat {
    background: var(--white);
    color: #10b981;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.promo-buttons a {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.promo-buttons a:hover {
    background: var(--white);
    color: var(--primary-color);
}

.curve-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.curve-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.curve-divider .shape-fill {
    fill: var(--light-bg);
}

/* ==========================================================================
   4. DEVAŞA & PROFESYONEL MEDYA PLAYER (STICKY VE LUXURY STİL)
   ========================================================================== */
.independent-player-section {
    padding: 25px 0;
    background: var(--light-bg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    width: 100%;
}

/* Sayfa aşağı kaydırıldığında alta kilitlenen animasyonlu sınıf */
.independent-player-section.sticky-active {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 -15px 45px rgba(0,0,0,0.12);
    border-top: 2px solid var(--primary-color);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.ind-player-card {
    background: var(--white);
    padding: 20px 40px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.player-left-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.player-left-brand i {
    font-size: 38px;
    color: var(--primary-color);
}

.player-left-brand h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
}

.player-left-brand p {
    font-size: 13px;
    color: var(--text-muted);
}

.player-right-controls {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-ind-play {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(255, 94, 98, 0.25);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-ind-play:hover {
    transform: translateY(-2px);
}

.volume-box {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.volume-box i {
    cursor: pointer;
    font-size: 20px;
}

.volume-box i:hover {
    color: var(--primary-color);
}

#volumeSlider {
    width: 130px;
    accent-color: var(--primary-color);
    cursor: pointer;
    height: 5px;
}

/* ==========================================================================
   5. BLOG & SIDEBAR (ORİJİNAL KUSURSUZ GÖRÜNÜMÜ)
   ========================================================================== */
.blog-sidebar-section {
    padding: 40px 0 80px 0;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-badge {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 5px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.grid-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 40px;
}

.posts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-thumb {
    position: relative;
    height: 200px;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
}

.card-content {
    padding: 25px;
}

.card-category {
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-content h3 a:hover {
    color: var(--primary-color);
}

.card-content p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
    font-size: 12px;
    color: var(--text-muted);
}

.btn-readmore {
    color: var(--primary-color);
    font-weight: 600;
}

/* ==========================================================================
   6. SIDEBAR (YAN PANEL)
   ========================================================================== */
.sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.widget h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 4px solid var(--primary-color);
}

.search-form {
    display: flex;
    position: relative;
}

.search-field {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    outline: none;
    font-family: var(--font-main);
}

.search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
}

.widget-categories ul li {
    border-bottom: 1px solid #f1f5f9;
}

.widget-categories ul li a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
}

.widget-categories ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.cat-count {
    background: #f1f5f9;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
}

/* ==========================================================================
   7. FOOTER (ALT BÖLÜM)
   ========================================================================== */
.site-footer {
    background: #090d16;
    color: #94a3b8;
    padding-top: 60px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-icon:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
}

.footer-bottom {
    background: #090d16;
    padding: 25px 0;
    margin-top: 40px;
    font-size: 13px;
    position: relative;
    z-index: 10;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

/* ==========================================================================
   8. MOBİL UYUMLULUK & MOBİL MENÜ DÜZELTMELERİ (KESİN SÜRÜM)
   ========================================================================== */
@media (max-width: 992px) {
    .grid-layout { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr !important; gap: 40px; }
}

@media (max-width: 768px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .premium-huge-card { margin: 0 auto; width: 100% !important; padding: 30px 20px !important; }
    .posts-wrapper { grid-template-columns: 1fr; }
    
    /* MOBİL MENÜ BUTONUNU ZORLA GÖSTER */
    .menu-toggle { 
        display: block !important; 
        color: #ff5e62 !important; 
        order: 2;
    }
    
    .header-container-white {
        padding: 10px 20px !important;
        border-radius: 40px !important;
        margin: 0 10px !important;
    }

    .main-navigation {
        display: none !important; 
        position: absolute !important;
        top: 75px !important;
        left: 10px !important;
        right: 10px !important;
        background: #ffffff !important;
        flex-direction: column !important;
        padding: 20px !important;
        border-radius: var(--radius-md) !important;
        box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
        gap: 15px !important;
        z-index: 99999 !important;
        border: 1px solid rgba(0,0,0,0.05) !important;
    }
    
    .main-navigation.active {
        display: flex !important;
    }
    
    .nav-menu { 
        flex-direction: column !important; 
        gap: 10px !important; 
        width: 100% !important; 
        text-align: center !important; 
    }
    
    .nav-menu li {
        width: 100% !important;
    }
    
    /* MOBİLDE DE MENÜ BÜYÜKLÜKLERİNİ KORUMA VE İKONLARI RENKLENDİRME */
    .nav-menu a {
        color: #1e293b !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid #f1f5f9 !important;
    }
    
    /* Mobilde otomatik ikonların hizalanması */
    .nav-menu a::before {
        font-size: 18px !important;
    }
    
    .btn-fast-chat { 
        width: 100% !important; 
        text-align: center !important; 
        padding: 12px !important;
    }

    /* BEYAZ OK KALINTISI KESİN OLARAK KALKTI */
    .scroll-to-top, #backToTop {
        display: none !important;
    }

    /* MOBİL SİDEBAR KUTULARINI (ARAMA VE KATEGORİ) TAMAMEN ORTADAN KALDIR */
    .sidebar-right {
        display: none !important; 
    }

    /* ŞEKERSHELL TARZI LÜKS MOBİL KAYAN PLAYER SİSTEMİ */
    .independent-player-section {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 10px 15px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(15px) !important;
        box-shadow: 0 -8px 30px rgba(0,0,0,0.12) !important;
        border-top: 3px solid var(--primary-color) !important;
        z-index: 9999999 !important;
        margin: 0 !important;
    }

    .ind-player-card {
        padding: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        background: transparent !important;
        width: 100% !important;
    }

    .player-left-brand {
        flex-direction: row !important;
        gap: 10px !important;
        text-align: left !important;
        align-items: center !important;
    }

    .player-left-brand i {
        font-size: 26px !important;
        color: var(--primary-color) !important;
    }

    .player-left-brand h3 {
        font-size: 14px !important;
        font-weight: 800 !important;
        color: #1e293b !important;
    }

    .player-left-brand p {
        display: none !important;
    }

    .player-right-controls {
        flex-direction: row !important;
        width: auto !important;
        gap: 10px !important;
        align-items: center !important;
    }

    .btn-ind-play {
        padding: 8px 18px !important;
        font-size: 12px !important;
        border-radius: 50px !important;
        font-weight: 700 !important;
        background: var(--primary-gradient) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(255, 94, 98, 0.2) !important;
    }

    .volume-box {
        display: none !important;
    }

    /* MOBİL FOOTER REZALETİNİ VE RENK UYUMSUZLUĞUNU KESİN OLARAK TEMİZLEME */
    .site-footer {
        background: #090d16 !important; 
        padding-top: 40px !important;
    }
    
    .footer-curve-divider {
        background: #f8fafc !important;
    }
    
    .footer-curve-divider svg path {
        fill: #090d16 !important; 
    }

    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
        padding: 0 20px 40px 20px !important;
    }

    .footer-logo {
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }

    .footer-about p {
        font-size: 13px !important;
        color: #64748b !important; 
        margin-bottom: 20px !important;
    }

    .footer-social-colored {
        justify-content: center !important;
        gap: 10px !important;
    }

    .footer-social-colored .f-social-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 16px !important;
        border: 1px solid rgba(255,255,255,0.08) !important;
        background: rgba(255, 255, 255, 0.03) !important;
    }

    .footer-col h3 {
        font-size: 15px !important;
        margin-bottom: 15px !important;
        justify-content: center !important;
        color: #ffffff !important;
    }

    .footer-col ul {
        gap: 10px !important;
    }

    .footer-col ul li a {
        font-size: 13px !important;
        color: #64748b !important;
    }

    .footer-bottom {
        background: #05070c !important; 
        padding: 20px 0 !important;
        margin-top: 20px !important;
    }

    .footer-bottom-container {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
    }

    .footer-bottom-container p {
        font-size: 12px !important;
        color: #475569 !important;
    }

    .footer-bottom-links {
        justify-content: center !important;
        flex-direction: row !important; 
        flex-wrap: wrap !important;
        gap: 12px !important;
    }

    .footer-bottom-links a, .footer-bottom-links span {
        font-size: 11px !important;
        color: #475569 !important;
    }
}

/* ==========================================================================
   ANASAYFA EKSTRA ZENGİN BÖLÜM STİLLERİ (KESİN ÇÖZÜM)
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.stat-card {
    background: #ffffff; 
    padding: 30px 20px; 
    border-radius: 16px; 
    text-align: center; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.03); 
    transition: all 0.3s;
}
.stat-icon {
    font-size: 32px; 
    margin-bottom: 15px;
}
.stat-card h4 {
    font-size: 36px; 
    font-weight: 800; 
    color: #1e293b; 
    margin-bottom: 5px;
}
.stat-card p {
    font-size: 13px; 
    color: #64748b; 
    font-weight: 600; 
    text-transform: uppercase;
}

.features-grid {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}
.feature-box {
    padding: 30px; 
    border-radius: 16px; 
    background: #f8fafc; 
    transition: all 0.3s;
}
.feat-icon {
    width: 60px; 
    height: 60px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 24px; 
    margin-bottom: 20px;
}
.feature-box h3 {
    font-size: 18px; 
    font-weight: 700; 
    color: #1e293b; 
    margin-bottom: 12px;
}
.feature-box p {
    font-size: 14px; 
    color: #64748b; 
    line-height: 1.6;
}

.faq-item {
    background: #ffffff; 
    border-radius: 12px; 
    border: 1px solid #e2e8f0; 
    overflow: hidden; 
    transition: all 0.3s;
}
.faq-trigger {
    width: 100%; 
    padding: 20px 25px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: none; 
    border: none; 
    font-size: 16px; 
    font-weight: 700; 
    color: #1e293b; 
    cursor: pointer; 
    text-align: left; 
    outline: none;
}
.faq-answer {
    padding: 0 25px 20px 25px; 
    font-size: 14px; 
    color: #64748b; 
    line-height: 1.6; 
    border-top: 1px solid #f1f5f9;
}

/* MOBİL DUYARLILIK SÜPER KORUMA (PC'Yİ ASLA BOZMAZ) */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr !important; 
        gap: 15px !important;
        padding: 0 10px !important;
    }
    .stat-card {
        padding: 20px 10px !important;
    }
    .stat-card h4 {
        font-size: 24px !important; 
    }
    .stat-card p {
        font-size: 11px !important;
    }
    .features-grid {
        grid-template-columns: 1fr !important; 
        gap: 20px !important;
        padding: 0 10px !important;
    }
    .faq-list {
        padding: 0 10px !important;
    }
}