:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --dark-text: #1f2937;
    --light-text: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { color: var(--dark-text); background-color: var(--white); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- BUTTONS --- */
.btn { display: inline-block; padding: 10px 24px; border-radius: var(--radius); font-weight: 600; cursor: pointer; font-size: 0.95rem; border: none; }
.btn-primary { background-color: var(--primary-color); color: var(--white); border: 1px solid var(--primary-color); }
.btn-primary:hover { background-color: var(--primary-hover); }
.btn-outline { background-color: transparent; color: var(--primary-color); border: 1px solid #d1d5db; }
.btn-outline:hover { border-color: var(--primary-color); background-color: #eff6ff; }
.full-width { width: 100%; text-align: center; }

/* --- NAVBAR --- */
.navbar { padding: 15px 0; background-color: var(--white); border-bottom: 1px solid #f3f4f6; position: sticky; top: 0; z-index: 100; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary-color); }
.nav-links { display: flex; gap: 25px; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-color); font-weight: 600; }
.nav-auth { display: flex; align-items: center; gap: 15px; }
.mobile-menu-btn { display: none; }

/* --- PAGE HEADER (İç Sayfalar İçin) --- */
.page-header { background: #f8fafc; padding: 60px 0; text-align: center; margin-bottom: 40px; }
.page-header h1 { font-size: 2.5rem; margin-bottom: 10px; }
.page-header p { color: var(--light-text); }

/* --- FORMS (Giriş, Kayıt, İletişim) --- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: #374151; }
.form-control { width: 100%; padding: 12px; border: 1px solid #d1d5db; border-radius: var(--radius); outline: none; transition: 0.3s; }
.form-control:focus { border-color: var(--primary-color); ring: 2px solid #eff6ff; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* --- AUTH PAGES (Login/Register) --- */
.auth-wrapper { display: flex; justify-content: center; align-items: center; padding: 80px 0; background-color: #f8fafc; flex: 1; }
.auth-box { background: var(--white); padding: 40px; border-radius: 12px; box-shadow: var(--shadow); width: 100%; max-width: 400px; border: 1px solid #e5e7eb; }
.auth-header { text-align: center; margin-bottom: 30px; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 0.9rem; color: var(--light-text); }
.auth-footer a { color: var(--primary-color); font-weight: 600; }

/* --- CONTACT PAGE --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.contact-info-item { display: flex; gap: 15px; margin-bottom: 25px; }
.contact-info-item i { width: 40px; height: 40px; background: #eff6ff; color: var(--primary-color); display: flex; align-items: center; justify-content: center; border-radius: 50%; }

/* --- ABOUT PAGE --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 60px; }
.about-img img { width: 100%; border-radius: 12px; box-shadow: var(--shadow); }

/* --- FOOTER --- */
footer { text-align: center; padding: 30px; color: var(--light-text); border-top: 1px solid #eee; margin-top: auto; }

/* --- REUSED (Index'ten gelenler) --- */
.hero { padding: 80px 0; background: linear-gradient(to right, #f8fafc, #ffffff); }
.hero-container { display: flex; align-items: center; gap: 50px; }
.hero-content { flex: 1; }
.hero-image { flex: 1; } .hero-image img { width: 100%; border-radius: 20px; }
.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
.section-header { text-align: center; margin-bottom: 60px; }
.services-grid, .pricing-grid { display: grid; gap: 30px; }
.services-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.pricing-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.service-card, .price-card { background: var(--white); border-radius: var(--radius); border: 1px solid #e5e7eb; padding: 25px; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card { padding: 40px; }
.price-card.premium { border: 2px solid var(--primary-color); transform: scale(1.05); }
.price { font-size: 3rem; font-weight: 700; }
.features li { margin-bottom: 15px; display: flex; gap: 10px; } .features li i { color: var(--primary-color); }
.badge { background: #eff6ff; color: var(--primary-color); padding: 6px 16px; border-radius: 20px; font-weight: 600; display: inline-block; margin-bottom: 20px; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links, .nav-auth { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-container, .contact-grid, .about-grid { grid-template-columns: 1fr; flex-direction: column; }
}
/* --- PRICING GRID GÜNCELLEME --- */

.pricing-grid {
    display: grid;
    /* Masaüstünde: Ekranı eşit 3 parçaya böl (Yan Yana) */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    align-items: flex-start; /* Kart içerikleri farklı olsa bile üstten hizalar */
}

/* Fiyat Kartı Genel Ayar */
.price-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid #e5e7eb;
    position: relative;
    height: 100%; /* Kartların boyunu eşitlemeye yardımcı olur */
    display: flex;
    flex-direction: column;
}

/* Butonun en altta düzgün durması için */
.price-card .btn {
    margin-top: auto; 
}

.price-card.premium {
    border: 2px solid var(--primary-color);
    /* Masaüstünde premium kartı biraz daha öne çıkarır */
    transform: scale(1.05); 
    z-index: 2;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* --- MOBİL VE TABLET UYUMLULUĞU (RESPONSIVE) --- */
@media (max-width: 992px) { 
    /* 992px'den küçük ekranlarda (Tablet ve Telefon) devreye girer */
    
    .pricing-grid {
        /* Tek sütuna düşür (Alt Alta) */
        grid-template-columns: 1fr; 
        gap: 50px; /* Kartlar birbirine yapışmasın diye boşluğu artırdık */
        padding: 0 10px; /* Kenarlardan hafif boşluk */
    }

    .price-card.premium {
        /* Mobilde büyüme efektini kaldır, normal dursun */
        transform: scale(1); 
        border-width: 2px;
    }
}
/* --- SERVICES GRID (HİZMETLER) --- */
.services-grid {
    display: grid;
    /* Masaüstü: Kesinlikle 3 sütun */
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px; /* Kartlar arası boşluk arttı, daha ferah */
    padding-bottom: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px; /* İç boşluk arttırıldı */
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center; /* İkon ve yazıları ortala */
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px); /* Hoverda yukarı çıkma efekti */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 3rem; /* İkonları büyüttük */
    margin-bottom: 20px;
    color: var(--primary-color);
    background: #eff6ff;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* --- CONTACT PAGE (İLETİŞİM) --- */
.contact-wrapper {
    display: grid;
    /* Masaüstü: Sol %40 (Bilgi), Sağ %60 (Form) */
    grid-template-columns: 1fr 1.5fr; 
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
}

.contact-info-box {
    background: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item i {
    background: rgba(255,255,255,0.2);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.contact-info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-info-item p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

/* Form Kutusu */
.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow);
}

/* Harita Alanı */
.map-section {
    width: 100%;
    height: 450px; /* Harita yüksekliği */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
    border: 1px solid #e5e7eb;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- RESPONSIVE (MOBİL AYARLARI) --- */
@media (max-width: 992px) {
    /* Hizmetler Mobilde Tek Sütun */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* İletişim Mobilde Alt Alta */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-box, .contact-form-box {
        padding: 30px;
    }
}
/* --- GÜNCELLENMİŞ MODERN FOOTER --- */
.site-footer {
    background-color: #0f172a; /* Görseldeki koyu lacivert */
    color: #94a3b8; /* Gri metin */
    padding-top: 70px;
    margin-top: auto;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    /* Masaüstü Ayarı: 
       Sol sütun (Logo+Yazı) daha geniş (2 birim), 
       Diğerleri (Hizmetler+Kurumsal) daha dar (1'er birim) 
    */
    grid-template-columns: 2fr 1fr 1fr; 
    gap: 60px; /* Sütunlar arası boşluk */
    padding-bottom: 50px;
    text-align: left; /* TÜM yazıların kesinlikle sola yaslanmasını sağlar */
    align-items: start; /* İçerikleri yukarı hizalar */
}

/* Sol Taraftaki Marka Alanı */
.footer-branding h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px; /* Modern görünüm için harfleri hafif sıklaştırır */
}

.footer-branding p {
    line-height: 1.7;
    max-width: 400px; /* Yazının çok uzamasını engeller, kutu gibi durur */
    color: #94a3b8;
}

/* Link Başlıkları */
.footer-links h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links ul {
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #94a3b8;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #38bdf8; /* Hoverda açık mavi renk (Görseldeki tema uyumu) */
    transform: translateX(5px); /* Üzerine gelince hafif sağa kayma efekti */
}

/* Alt Çizgi ve Telif */
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 30px 0;
    text-align: center; /* Sadece en alt yazı ortada kalsın */
    font-size: 0.9rem;
    color: #64748b;
}

/* --- MOBİL UYUM (768px altı) --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        gap: 40px;
        text-align: left; /* Mobilde de sola yaslı kalsın, daha düzenli durur */
    }
    
    .footer-branding p {
        max-width: 100%; /* Mobilde genişliği serbest bırak */
    }
}
/* --- ANASAYFA YENİ BÖLÜMLER --- */

/* 1. Markalar (Logolar) Şeridi */
.brands-section {
    padding: 40px 0;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}
.brands-section p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.brands-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.6;
}
.brands-grid i {
    font-size: 2rem;
    color: #64748b;
    transition: 0.3s;
}
.brands-grid i:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* 2. İstatistikler Bölümü */
.stats-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat-item h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
}
.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* 3. Müşteri Yorumları (Testimonials) */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.user-info h4 { font-size: 1rem; margin-bottom: 2px; }
.user-info span { font-size: 0.85rem; color: var(--light-text); }
.stars { color: #fbbf24; margin-bottom: 15px; font-size: 0.9rem; }
.testimonial-text { color: #4b5563; font-style: italic; line-height: 1.6; }

/* 4. CTA (Harekete Geçirici) Alanı */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}
.cta-box {
    max-width: 800px;
    margin: 0 auto;
}
.cta-box h2 { font-size: 2.5rem; margin-bottom: 15px; }
.cta-box p { color: var(--light-text); margin-bottom: 30px; font-size: 1.1rem; }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .stats-grid, .testimonials-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta */
        gap: 40px;
    }
    .stat-item h2 { font-size: 2.5rem; }
}
/* --- GELİŞTİRİLMİŞ MOBİL MENÜ --- */
@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }

    .mobile-menu-btn {
        display: block; /* Menü ikonunu göster */
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--dark-text);
        z-index: 102;
    }

    /* MENÜ KUTUSU */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px;
        border-top: 1px solid #f3f4f6;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1); /* Daha belirgin gölge */
        
        /* Animasyon */
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 100;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    
    .nav-links li a {
        display: block; /* Tıklama alanını genişlet */
        padding: 10px;
        font-size: 1.1rem;
    }

    /* --- MOBİL İÇİN BUTONLAR (GİRİŞ / KAYIT) --- */
    /* JS ile nav-links'in içine taşınan .nav-auth için stiller */
    .nav-links .nav-auth {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #f3f4f6; /* Menü ile butonlar arasına çizgi */
        gap: 15px;
    }

    /* Giriş Butonu (Mobilde Gri Arka Plan) */
    .nav-links .nav-auth .login-btn {
        background-color: #f3f4f6;
        color: var(--dark-text);
        text-align: center;
        padding: 12px;
        border-radius: var(--radius);
        font-weight: 600;
        width: 100%;
        display: block;
    }

    /* Kayıt Ol Butonu (Mobilde Tam Genişlik) */
    .nav-links .nav-auth .btn-primary {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    /* Diğer Sayfa Düzenleri */
    .hero-container, .contact-wrapper, .about-grid, .footer-grid, .pricing-grid, .services-grid, .stats-grid, .testimonials-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .hero-content { text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-image { margin-top: 30px; }
}
/* --- DESTEK SAYFASI TASARIMI --- */

.support-wrapper {
    display: grid;
    /* Sol %65, Sağ %35 */
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Form Kutusu */
.form-box {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow);
}

/* Yan Yana Form Elemanları (Ad-Mail, Kategori-Öncelik) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Dosya Yükleme Alanı (Drag & Drop Görünümlü) */
.file-upload-wrapper {
    margin-top: 5px;
}

.file-drop-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    background-color: #f8fafc;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.file-drop-zone:hover {
    border-color: var(--primary-color);
    background-color: #eff6ff;
    color: var(--primary-color);
}

.file-drop-zone i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.file-drop-zone small {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 5px;
}

/* Sidebar Kartları */
.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.info-card h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--dark-text);
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}

.info-card p, .info-card a {
    color: #64748b;
    font-size: 0.95rem;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.sidebar-links li {
    margin-bottom: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-links li i {
    color: var(--primary-color);
    width: 20px;
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .support-wrapper {
        grid-template-columns: 1fr; /* Mobilde alt alta */
    }
    
    .form-row {
        grid-template-columns: 1fr; /* Mobilde inputlar alt alta */
        gap: 0;
    }
}
/* --- CKEDITOR ÖZELLEŞTİRME --- */

/* Editörün yazılabilir alanının yüksekliği */
.ck-editor__editable {
    min-height: 200px; /* Kullanıcıya geniş alan bırak */
    max-height: 400px;
    font-family: 'Inter', sans-serif !important; /* Site fontuna uydur */
    font-size: 0.95rem;
}

/* Odaklanınca (Tıklayınca) kenarlık rengi */
.ck.ck-editor__main > .ck-editor__editable:not(.ck-focused) {
    border-color: #d1d5db !important;
}

.ck.ck-editor__main > .ck-editor__editable.ck-focused {
    border-color: var(--primary-color) !important; /* Mavi kenarlık */
    box-shadow: 0 0 0 2px #eff6ff !important; /* Hafif mavi gölge */
}

/* Toolbar (Üstteki butonlar) arka planı */
.ck.ck-toolbar {
    background-color: #f8fafc !important;
    border-color: #d1d5db !important;
}
/* --- TICKET DETAY SAYFASI --- */

/* Sayfa Yapısı */
.ticket-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr; /* Sol taraf geniş, sağ dar */
    gap: 30px;
    align-items: start;
}

/* Üst Başlık Alanı */
.ticket-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-id {
    display: block;
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Durum Rozetleri */
.status-badge {
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}
.status-open { background: #dcfce7; color: #166534; } /* Yeşil */
.status-reply { background: #fef9c3; color: #854d0e; } /* Sarı */
.status-closed { background: #f1f5f9; color: #475569; } /* Gri */

/* --- MESAJ KARTLARI --- */
.message-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    position: relative;
}

/* Destek Ekibi Mesajı (Farklı Görünüm) */
.staff-message {
    background-color: #f8fafc; /* Hafif gri/mavi zemin */
    border-color: #bfdbfe; /* Mavi çerçeve */
}

.message-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee; /* İnce çizgi */
    padding-bottom: 15px;
}

/* Mesajı Yazan Kişi Bilgisi */
.msg-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.msg-user-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.msg-user-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.staff-badge {
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-left: 8px;
    vertical-align: middle;
}

.msg-date {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Mesaj İçeriği */
.message-body {
    color: #334155;
    line-height: 1.7;
}

.message-body p { margin-bottom: 15px; }

/* Eklenmiş Dosya Kutusu */
.attachment-box {
    background: #f1f5f9;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-top: 10px;
}
.attachment-box i { color: var(--primary-color); }

/* --- CEVAP YAZMA ALANI --- */
.reply-section {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow);
}

.reply-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.file-input-simple label {
    cursor: pointer;
    color: #64748b;
    font-size: 0.9rem;
    transition: 0.3s;
}
.file-input-simple label:hover { color: var(--primary-color); }

/* --- SIDEBAR BİLGİLERİ --- */
.ticket-meta {
    list-style: none;
    padding: 0;
}
.ticket-meta li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    border-bottom: 1px solid #f8fafc;
    padding-bottom: 8px;
}
.ticket-meta span { color: #64748b; }

/* Mobil Uyum */
@media (max-width: 992px) {
    .ticket-wrapper { grid-template-columns: 1fr; }
    .ticket-sidebar { order: -1; margin-bottom: 30px; } /* Mobilde bilgileri üste al */
    .ticket-header-content { flex-direction: column; align-items: flex-start; gap: 10px; }
}
/* --- PANEL (DASHBOARD) STİLLERİ --- */

/* Genel Grid Yapısı (Sidebar + İçerik) */
.dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr; /* Sol 280px, Sağ kalan */
    gap: 30px;
    align-items: start;
}

/* --- SIDEBAR --- */
.dash-sidebar {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    position: sticky;
    top: 100px; /* Navbar'dan sonra sabit kalsın */
}

.user-profile-summary {
    padding: 25px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 15px;
}
.user-profile-summary img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.user-profile-summary h4 { font-size: 1rem; margin-bottom: 2px; }
.user-profile-summary span { font-size: 0.8rem; color: #64748b; }

.dash-menu {
    padding: 15px;
}
.dash-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    color: #4b5563;
    font-weight: 500;
    margin-bottom: 5px;
    transition: 0.3s;
}
.dash-menu li a:hover, .dash-menu li a.active {
    background-color: #eff6ff;
    color: var(--primary-color);
}
.dash-menu li a i { width: 20px; text-align: center; }

/* --- İÇERİK ALANI --- */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.stat-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.stat-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 2px; }
.stat-card p { color: #64748b; font-size: 0.9rem; }

/* --- KUTULAR VE TABLOLAR --- */
.content-box {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.box-header h3 { font-size: 1.2rem; }
.btn-sm {
    padding: 6px 15px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-size: 0.85rem;
}

/* Tablo Stilleri */
.table-responsive { overflow-x: auto; }
.dash-table {
    width: 100%;
    border-collapse: collapse;
}
.dash-table th, .dash-table td {
    text-align: left;
    padding: 15px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.95rem;
}
.dash-table th {
    color: #64748b;
    font-weight: 600;
    background: #f9fafb;
}
.dash-table tr:last-child td { border-bottom: none; }

/* Tablo İçi Buton ve Rozetler */
.badge-status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.badge-status.active { background: #dcfce7; color: #166534; }
.badge-status.expired { background: #fee2e2; color: #991b1b; }

.btn-action {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}
.btn-action:hover { text-decoration: underline; }

/* MOBİL UYUM */
@media (max-width: 992px) {
    .dashboard-grid {
        grid-template-columns: 1fr; /* Mobilde Sidebar üste çıkar */
        gap: 20px;
    }
    .stats-cards {
        grid-template-columns: 1fr; /* Kartlar alt alta */
    }
    .dash-sidebar {
        position: static; /* Mobilde yapışkan özelliği kalksın */
    }
}
/* --- ÜRÜNLER & HİZMETLER SAYFASI --- */

/* Filtreleme Butonları (Tabs) */
.product-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 10px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #64748b;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background-color: #eff6ff;
    color: var(--primary-color);
}

/* Ürün Kartı Genel */
.product-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: 0.3s;
}

/* Süresi dolmuş kartın kenarı kırmızı olsun */
.product-card.expired-border {
    border-left: 4px solid #ef4444;
}

/* Kart Üst Kısım (Header) */
.prod-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 20px;
}

.prod-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.prod-title {
    flex-grow: 1;
}

.prod-title h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.prod-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
}

.prod-price span {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 400;
}

/* Kart Detayları (Grid Yapısı) */
.prod-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-item.full-width {
    grid-column: span 2; /* Tüm genişliği kapla */
}

.detail-item .label {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 5px;
}

.detail-item .value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
}

/* Lisans Anahtarı Kutusu */
.license-box {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 12px;
    justify-content: space-between;
}

.license-box code {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    color: #475569;
    letter-spacing: 1px;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1rem;
}

/* Aksiyon Butonları */
.prod-actions {
    display: flex;
    justify-content: flex-end; /* Sağa yasla */
    gap: 15px;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .prod-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .prod-icon { margin-bottom: 5px; }
    .prod-price { font-size: 1.1rem; margin-top: 5px; }
    
    .prod-details {
        grid-template-columns: 1fr; /* Mobilde detaylar alt alta */
    }
    
    .detail-item.full-width { grid-column: span 1; }
    
    .prod-actions {
        flex-direction: column; /* Butonlar alt alta */
    }
    
    .prod-actions button { width: 100%; }
}
/* --- GENİŞ EKRAN (PANEL) AYARLARI --- */

/* 1. Daha Geniş Konteyner */
/* Standart .container 1200px idi, bunu 1600px veya %95 yapıyoruz */
.container-wide {
    max-width: 1600px; /* Veya %95 yazarsan ekranı tam kaplar */
    width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}

/* 2. Ürün Kartlarını Yan Yana Dizme (Grid) */
/* Kartları saran bir div ekleyeceğiz HTML tarafında */
.products-wrapper-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobilde tek */
    gap: 20px;
}

/* Ekran 1400px'den büyükse kartları 2 sütun yap */
@media (min-width: 1400px) {
    .products-wrapper-grid {
        grid-template-columns: 1fr 1fr; 
    }
    
    /* Yan yana olunca detaylar sıkışmasın */
    .product-card {
        height: 100%; /* Kart boylarını eşitle */
        display: flex;
        flex-direction: column;
    }
    .prod-details {
        margin-top: auto; /* Detayları alta it */
    }
}

/* 3. Sidebar ve İçerik Oranını Güncelle */
/* Geniş ekranda sidebar sabit kalsın, içerik yayılsın */
@media (min-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: 280px 1fr; /* Sol sabit, sağ esnek */
        gap: 40px; /* Aradaki boşluğu artırdık */
    }
}
/* --- FATURALAR SAYFASI --- */

/* Tablo İyileştirmeleri */
.invoice-table td {
    vertical-align: middle; /* İçerikleri dikey ortala */
}

/* Fatura Durum Rozetleri */
.badge-status.paid {
    background-color: #dcfce7;
    color: #166534; /* Koyu Yeşil */
}

.badge-status.unpaid {
    background-color: #fee2e2;
    color: #991b1b; /* Koyu Kırmızı */
}

.badge-status.pending {
    background-color: #fef9c3;
    color: #854d0e; /* Koyu Sarı */
}

/* Küçük İkon Butonlar (PDF, Görüntüle) */
.btn-icon {
    background: transparent;
    border: 1px solid #e5e7eb;
    color: #64748b;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    margin-left: 5px;
}

.btn-icon:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: #eff6ff;
}

/* Sayfalama Butonları */
.btn-outline.active {
    pointer-events: none;
}
/* --- PROFİL AYARLARI SAYFASI --- */

/* Ayarlar Grid Yapısı (Opsiyonel: Geniş ekranda yan yana 2 kutu yapılabilir) */
/* Şimdilik alt alta durması daha okunaklı olur */
.settings-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Profil Fotoğrafı Alanı */
.profile-upload-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 12px;
}

.profile-upload-section img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Form Grid (İkili Inputlar) */
.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Full Width Input */
.form-group.full-width {
    grid-column: span 2;
}

/* --- BİLDİRİM TOGGLE SWITCH (Modern Anahtar) --- */
.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f3f4f6;
}

.notification-item:last-child { border-bottom: none; }

.notification-item h5 { font-size: 0.95rem; margin-bottom: 2px; }
.notification-item p { font-size: 0.85rem; color: #94a3b8; }

/* Switch Yapısı */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1; /* Kapalı renk (Gri) */
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

/* Checkbox İşaretliyse */
input:checked + .slider {
    background-color: var(--primary-color); /* Açık renk (Mavi) */
}

input:checked + .slider:before {
    transform: translateX(24px); /* Yuvarlağı sağa kaydır */
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .form-row-grid {
        grid-template-columns: 1fr; /* Mobilde inputlar alt alta */
    }
    .form-group.full-width {
        grid-column: span 1;
    }
}
/* --- GÜNCELLENMİŞ TICKET GRID (PANEL İÇİ) --- */

.ticket-wrapper {
    display: grid;
    /* Panel içinde alan daraldığı için oranı 2.5'a 1 yaptık */
    grid-template-columns: 2.5fr 1fr; 
    gap: 25px;
    align-items: start;
}

/* Mobil için */
@media (max-width: 1200px) {
    .ticket-wrapper {
        grid-template-columns: 1fr; /* Tablet ve Mobilde alt alta */
    }
    
    .ticket-sidebar {
        order: -1; /* Mobilde bilgileri mesajların üstüne al */
        margin-bottom: 20px;
    }
}
/* --- DASHBOARD MASAÜSTÜ İYİLEŞTİRMELERİ --- */

/* 1. İstatistik Kartlarını 4'lü Yap */
/* .stats-cards sınıfını güncelliyoruz, eskiden 3'tü */
@media (min-width: 1200px) {
    .stats-cards {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* 2. Alt Kısım Grid (Tabloları Yan Yana Koy) */
.dashboard-bottom-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobilde alt alta */
    gap: 30px;
}

/* Geniş Ekranda (1400px üstü) Yan Yana Olsun */
@media (min-width: 1400px) {
    .dashboard-bottom-grid {
        grid-template-columns: 1fr 1fr; /* Yan Yana */
    }
    
    /* Tablolar yan yana gelince içerikleri sığsın diye fontu ve paddingi azıcık kısalım */
    .dashboard-bottom-grid .dash-table th, 
    .dashboard-bottom-grid .dash-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}
/* --- ÖDEME (CHECKOUT) SAYFASI --- */

.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Sol 2 birim, Sağ 1 birim */
    gap: 30px;
    align-items: start;
}

/* Sipariş Özeti Kartı */
.summary-card {
    position: sticky;
    top: 100px; /* Kaydırdıkça takip etsin */
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.summary-divider {
    height: 1px;
    background-color: #f1f5f9;
    margin: 15px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 10px;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-top: 5px;
}

/* Kredi Kartı Form İyileştirmeleri */
.form-control:focus {
    /* Mavi bir parlama efekti verelim */
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta */
    }
    .checkout-forms {
        order: 2; /* Mobilde önce özeti görmek isterlerse order değiştirebiliriz ama standart form üsttedir. */
    }
    .summary-card {
        position: static; /* Mobilde yapışkan olmasın */
        margin-bottom: 30px;
    }
}
/* --- MAĞAZA (SATIŞ) SAYFASI --- */

.shop-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    height: 100%;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.shop-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.shop-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.shop-header h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.shop-header p {
    font-size: 0.85rem;
    color: #94a3b8;
}

.shop-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 25px;
}

.shop-price .period {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 400;
}

.shop-features {
    margin-bottom: 30px;
    flex-grow: 1; /* Butonu en alta itmek için */
}

.shop-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4b5563;
}

.shop-features li i {
    color: var(--primary-color);
    font-size: 0.8rem;
    background: #eff6ff;
    padding: 4px;
    border-radius: 50%;
}
/* --- PLAN SEÇİM SAYFASI --- */

.plan-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center; /* Kartları ortalar */
}

/* Plan Kartı Temel Tasarım */
.plan-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
    padding: 40px 30px;
    text-align: center;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Popüler Kart (Ortadaki) */
.plan-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05); /* Diğerlerinden biraz büyük */
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.15);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Kart İçeriği */
.plan-header h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 15px 0;
}

.plan-price span {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 400;
}

.plan-header p {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.plan-body ul {
    text-align: left;
    margin-bottom: 30px;
}

.plan-body ul li {
    margin-bottom: 12px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-body ul li i {
    color: var(--primary-color);
}

.plan-body ul li.disabled {
    color: #cbd5e1; /* Pasif özellikler gri */
}
.plan-body ul li.disabled i {
    color: #cbd5e1;
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .plan-selection-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta */
        max-width: 400px;
    }
    .plan-card.popular {
        transform: scale(1); /* Büyütmeyi iptal et */
        margin: 20px 0;
    }
}
/* --- GENİŞ İLETİŞİM SAYFASI --- */

.contact-wrapper-wide {
    display: grid;
    /* Sol %35, Sağ %65 - Daha geniş form alanı */
    grid-template-columns: 1fr 2fr; 
    gap: 40px;
    align-items: stretch; /* Yükseklikleri eşitle */
}

/* Sol Kutu (Bilgiler) */
.contact-info-box-wide {
    background: var(--primary-color);
    color: white;
    padding: 50px 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.3);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item .icon-box {
    background: rgba(255,255,255,0.15);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.contact-item p {
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Sosyal Medya İkonları */
.social-links-row {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}
.social-links-row a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}
.social-links-row a:hover {
    background: white;
    color: var(--primary-color);
}

/* Sağ Kutu (Form) */
.contact-form-box-wide {
    background: white;
    padding: 50px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Geniş Harita */
.map-section-wide {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #e5e7eb;
}
.map-section-wide iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-wrapper-wide {
        grid-template-columns: 1fr; /* Mobilde alt alta */
    }
    .contact-form-box-wide, .contact-info-box-wide {
        padding: 30px;
    }
}


/* =========================================
   ÖZELLİKLER VE PROJELER BÖLÜMÜ (STICKY KARTLAR)
   ========================================= */

/* Bölümün Genel Arka Planı ve Boşlukları */
.project-showcase-section {
    padding: 60px 0 120px 0; /* Üst/Alt boşluklar biraz kısıldı */
    background-color: #f8fafc; /* Hafif gri, kartlar patlasın diye */
    position: relative;
    overflow: visible; /* Sticky çalışması için şart */
}

/* Başlık Alanı */
.feature-header {
    text-align: center;
    margin-bottom: 60px; /* Başlık ile kartlar arası mesafe azaldı */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.feature-header .badge-soft {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.feature-header h1 {
    font-size: 32px; /* Başlık boyutu biraz küçüldü */
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.2;
}

.feature-header p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* --- KARTLARI TUTAN KAPSAYICI --- */
.cards-container {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Kartlar arası dikey boşluk azaldı */
    position: relative;
    max-width: 1000px; /* Kartların genel genişliğini biraz kıstık */
    margin: 0 auto;
    padding: 0 20px;
}

/* --- KARTIN KENDİSİ (STICKY) --- */
.feature-card {
    /* Yapışkan Özellik */
    position: sticky; 
    top: 110px; /* Üstten yapışma mesafesi */
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px; /* Yazı ve resim arası boşluk */
    
    padding: 40px; /* Kart iç boşluğu (Padding) azaltıldı */
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px; /* Köşeler biraz daha keskinleşti */
    
    /* Modern, yumuşak gölge */
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08); 
    
    transform-origin: center top;
    transition: all 0.4s ease;
    margin-bottom: 20px; 
    
    /* Yükseklik ayarı: İçeriğe göre uzasın ama çok da büyük olmasın */
    min-height: auto; 
    overflow: hidden;
    z-index: 1;
}

/* Kartların üst üste binme efekti için ince ayar */
.feature-card:nth-child(1) { top: 110px; }
.feature-card:nth-child(2) { top: 130px; }
.feature-card:nth-child(3) { top: 150px; }

/* --- SOL TARAF (YAZI İÇERİĞİ) --- */
.feature-content {
    flex: 1;
    z-index: 2;
}

.feature-content h3 {
    font-size: 24px; /* Kart başlığı küçüldü */
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.feature-content p {
    font-size: 15px; /* Açıklama yazısı küçüldü */
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Liste (Tikler) */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px; /* Liste yazısı küçüldü */
    font-weight: 600;
    color: #334155;
}

/* Siyah Tik İkonu */
.icon-check {
    width: 24px;
    height: 24px;
    background-color: #0f172a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* Buton (Gradyan) */
.btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    padding: 12px 28px; /* Buton küçüldü */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(99, 102, 241, 0.4);
    color: #fff;
}

/* --- SAĞ TARAF (GÖRSEL ALANI) --- */
.feature-image-wrapper {
    flex: 0 0 45%; /* Görsel alanı toplamın %45'i kadar olsun */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; /* Görsel çevresi boşluk azaldı */
}

.main-img {
    width: 100%;
    max-width: 400px; /* Görsel boyutu sınırlandı (Daha küçük) */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Arkaplan Şekli (Renkli Kutu) */
.bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 40px;
    border-radius: 20px;
    z-index: 1;
    opacity: 0.5;
}

/* Wifi Sinyal Dekoru */
.signal-decor {
    position: absolute;
    top: -25px;
    right: -25px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}
.signal-decor span {
    border: 3px solid #6366f1;
    border-bottom: none;
    border-left: none;
    border-radius: 0 50px 0 0;
    display: block;
    opacity: 0.8;
}
.signal-decor span:nth-child(1) { width: 40px; height: 40px; }
.signal-decor span:nth-child(2) { width: 28px; height: 28px; margin-top: -10px;}
.signal-decor span:nth-child(3) { width: 16px; height: 16px; margin-top: -6px;}

/* --- MOBİL UYUMLULUK (RESPONSIVE) --- */
@media (max-width: 992px) {
    .project-showcase-section {
        padding: 50px 0;
    }
    
    .feature-header h1 { font-size: 28px; }

    .feature-card {
        position: relative; /* Mobilde yapışmasın */
        top: 0 !important;
        flex-direction: column; /* Alt alta olsun */
        padding: 30px 20px;
        gap: 30px;
        text-align: center;
        min-height: auto;
    }
    
    .feature-image-wrapper {
        width: 100%;
        padding: 0;
        margin-top: 10px;
    }
    
    .main-img { max-width: 100%; }
    
    .feature-list li { justify-content: center; }
    
    .bg-shape { left: 0; top: 10px; } /* Mobilde arkadaki şekli ortala */
}

/* ==========================================================
   BÖLÜM 1: ÖZELLİKLER VE PROJELER (YATAY SLIDER - features.php)
   ========================================================== */

/* Bölümün Genel Arka Planı ve Boşlukları */
.project-showcase-section {
    padding: 60px 0 120px 0; 
    background-color: #f8fafc; 
    position: relative;
    overflow: hidden; /* Önemli: Kaydırma çubuğu için */
}

/* Başlık Alanı (Tasarım Korundu) */
.feature-header {
    text-align: center;
    margin-bottom: 60px; 
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}
.feature-header .badge-soft {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}
.feature-header h1 {
    font-size: 32px; 
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.2;
}
.feature-header p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}


/* --- SLIDER KONTROLLERİ --- */
.slider-controls {
    /* Okları container'ın dışına taşıyabilmek için absolute positioning kullanıyoruz */
    max-width: 1000px; /* Kartların genişliği ile uyumlu */
    margin: 0 auto;
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
    height: 100px; /* Okların dikeyde kapsama alanı */
}

.slider-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(99, 102, 241, 0.3);
    transition: all 0.3s;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto; 
    top: 50%;
    transform: translateY(-50%);
}

.slider-btn:hover:not(:disabled) {
    background: #4f46e5;
    transform: translateY(-50%) scale(1.05);
}

.slider-btn:disabled {
    opacity: 0.2; 
    cursor: not-allowed;
}

.prev-btn {
    left: 0; 
    z-index: 11;
}

.next-btn {
    right: 0; 
    z-index: 11;
}

/* --- SLIDER KAPSAYICISI (Kaydırmayı Tutacak Alan) --- */
.cards-slider-wrapper {
    max-width: 1000px; /* Kartların max-width'i ile aynı */
    margin: 0 auto;
    overflow-x: scroll; 
    -webkit-overflow-scrolling: touch; 
    padding: 0 10px; 
    scrollbar-width: none; 
}
.cards-slider-wrapper::-webkit-scrollbar {
    display: none; 
}


/* --- KARTLARI TUTAN KAPSAYICI (Yatay Flexbox oldu) --- */
.cards-container.slider-track {
    display: flex;
    flex-direction: row; /* Yatay sıralama */
    gap: 50px; /* Kartlar arası yatay boşluk */
    position: relative;
    width: max-content; /* İçeriğe göre genişlesin */
    padding: 20px 0; /* İç gölge için dikey boşluk */
    margin: 0;
}

/* --- KARTIN KENDİSİ (YATAY SIRALAMA İÇİN AYARLANDI - Tasarım Korundu) --- */
.feature-card.slider-item {
    /* STICKY KURALLARI KALDIRILDI/DEĞİŞTİRİLDİ */
    position: relative; 
    top: auto !important; 
    z-index: auto !important; 
    margin-bottom: 0; 

    /* Kartın genişliğini net olarak belirle */
    flex: 0 0 1000px; /* Kartın max-width'i kadar sabitle */
    max-width: 1000px; 
    
    /* İç tasarım kuralları (Aynı Kalsın) */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px; 
    
    padding: 40px; 
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px; 
    
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08); 
    
    transform-origin: center top;
    transition: all 0.4s ease;
    
    min-height: auto; 
    overflow: hidden;
}

/* --- SOL TARAF (YAZI İÇERİĞİ - Tasarım Korundu) --- */
.feature-content {
    flex: 1;
    z-index: 2;
}

.feature-content h3 {
    font-size: 24px; 
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.feature-content p {
    font-size: 15px; 
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Liste (Tikler) */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px; 
    font-weight: 600;
    color: #334155;
}

/* Siyah Tik İkonu */
.icon-check {
    width: 24px;
    height: 24px;
    background-color: #0f172a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* Buton (Gradyan) */
.btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    padding: 12px 28px; 
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(99, 102, 241, 0.4);
    color: #fff;
}

/* --- SAĞ TARAF (GÖRSEL ALANI - Tasarım Korundu) --- */
.feature-image-wrapper {
    flex: 0 0 45%; 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; 
}

.main-img {
    width: 100%;
    max-width: 400px; 
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Arkaplan Şekli (Renkli Kutu) */
.bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 40px;
    border-radius: 20px;
    z-index: 1;
    opacity: 0.5;
}

/* Wifi Sinyal Dekoru */
.signal-decor {
    position: absolute;
    top: -25px;
    right: -25px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}
.signal-decor span {
    border: 3px solid #6366f1;
    border-bottom: none;
    border-left: none;
    border-radius: 0 50px 0 0;
    display: block;
    opacity: 0.8;
}
.signal-decor span:nth-child(1) { width: 40px; height: 40px; }
.signal-decor span:nth-child(2) { width: 28px; height: 28px; margin-top: -10px;}
.signal-decor span:nth-child(3) { width: 16px; height: 16px; margin-top: -6px;}


/* --- MOBİL UYUMLULUK (RESPONSIVE) --- */
@media (max-width: 1024px) {
    /* Mobil: Okları gizle */
    .slider-controls { display: none; } 
    
    .cards-slider-wrapper {
        padding: 0;
    }

    .cards-container.slider-track {
        gap: 20px;
        padding: 0 5%; /* Kenarlarda boşluk bırakarak kaydırma ipucu ver */
    }

    .feature-card.slider-item {
        position: relative; 
        top: 0 !important;
        /* Mobil: Kartı %90 genişlikte yap */
        flex: 0 0 90%; 
        max-width: 90%;
        flex-direction: column; /* Alt alta olsun */
        padding: 30px 20px;
        gap: 30px;
        text-align: center;
        min-height: auto;
    }
    
    /* Geri kalan mobil stiller orijinal CSS'teki gibi korunuyor */
    .project-showcase-section {
        padding: 50px 0;
    }
    .feature-header h1 { font-size: 28px; }
    .feature-image-wrapper {
        width: 100%;
        padding: 0;
        margin-top: 10px;
    }
    .main-img { max-width: 100%; }
    .feature-list li { justify-content: center; }
    .bg-shape { left: 0; top: 10px; } 
}


/* ==========================================================
   BÖLÜM 2: PROJE DETAY SAYFASI (feature-detail.php) - TASARIM KORUNDU
   ========================================================== */

.detail-page-section {
    padding: 100px 0 120px 0;
    background-color: #f8fafc; 
}

/* Geri Dön Linki */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 25px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #4f46e5;
}

/* Başlık Alanı */
.detail-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto; 
}

.detail-badge {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.detail-header h1 {
    font-size: 48px; 
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.1;
}

.detail-header p {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
}

/* --- ANA GÖRSEL (Hero Image) --- */
.detail-hero-image-container {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.3); 
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
}

.detail-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- İÇERİK GRID YAPISI --- */
.detail-grid {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

/* Sol Taraf: Uzun Açıklama */
.detail-content-wrapper {
    flex: 2; 
    padding-top: 0;
}

.detail-content-wrapper h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.long-description {
    margin-top: 20px;
    padding: 0;
    background-color: transparent;
    border-left: none;
}

.long-description p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
}

.detail-btn {
    margin-top: 40px;
}

/* --- SAĞ Taraf: Özellikler Listesi (Sticky) --- */
.detail-features-wrapper {
    flex: 1; 
    position: sticky; 
    top: 100px; 
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #6366f1; 
}

.detail-features-wrapper h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
}

.feature-detail-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.feature-detail-list li {
    font-size: 16px;
    margin-bottom: 12px;
}

.feature-detail-list li i {
    color: #6366f1; 
    font-size: 20px;
    flex-shrink: 0;
}

/* İletişim Çağrısı Kutusu */
.contact-prompt {
    padding: 20px;
    background-color: #f0f4ff;
    border-radius: 10px;
    text-align: center;
}

.contact-prompt h4 {
    font-size: 18px;
    color: #6366f1;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-prompt p {
    font-size: 15px;
    color: #475569;
    margin-bottom: 15px;
}

.btn-contact-small {
    display: inline-block;
    padding: 8px 20px;
    background-color: #6366f1;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-contact-small:hover {
    background-color: #4f46e5;
}

/* --- MOBİL UYUMLULUK (feature-detail.php) --- */
@media (max-width: 1024px) {
    .detail-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .detail-features-wrapper {
        position: relative;
        top: 0;
        flex: 1;
        max-width: 100%;
    }
    
    .detail-hero-image-container {
        margin-bottom: 40px;
    }

    .detail-header h1 { font-size: 36px; }
    
    .detail-content-wrapper h2 {
        font-size: 28px;
        padding-left: 0;
    }
}

/* ... (BÖLÜM 1: features.php - Yatay Slider CSS'i aynı kalsın) ... */

/* ==========================================================
   BÖLÜM 2: PROJE DETAY SAYFASI (feature-detail.php) - GALERİ EKLENDİ
   ========================================================== */

/* Mevcut stilleri koru */
/* .detail-page-section, .detail-header, .detail-badge, h1, p... */

/* --- GALERİ STİLLERİ --- */

/* Ana Görsel Alanı artık galerinin bir parçası */
.detail-gallery {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    /* Hero image'ın eski margin değeri buraya taşındı */
}

/* Ana Görsel Konteyneri */
.detail-hero-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.3); 
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    margin-bottom: 20px; /* Thumbnail'lar için boşluk */
}
.detail-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Thumbnail (Küçük Resim) Alanı */
.detail-thumbnails {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 10px 0;
}

.thumbnail-item {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    opacity: 1;
    border-color: #6366f1; /* Mor vurgu */
    transform: scale(1.05);
}

/* ... (Geri kalan .detail-grid, .detail-content-wrapper, .detail-features-wrapper stilleri aynı kalsın) ... */


/* =========================================
   MARKET SAYFASI STİLLERİ
   ========================================= */

.market-section {
    padding: 80px 0;
    background-color: #f3f4f6; /* Hafif gri arka plan */
}
.market-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center; /* Ortalanmış filtre butonları */
}
.filter-btn {
    background: #ffffff;
    color: #4b5563;
    border: 1px solid #e5e7eb;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    font-size: 0.95rem;
}
.filter-btn.active, .filter-btn:hover {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
}
.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.market-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.market-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.market-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}
.market-desc {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}
.market-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    flex-grow: 1; 
}
.market-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #4b5563;
}
.market-features li::before {
    content: "\f00c"; /* FontAwesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #10b981; /* Yeşil tik */
    position: absolute;
    left: 0;
    top: 0;
}
.market-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f3f4f6;
    padding-top: 15px;
}
.market-price {
    font-size: 0.8rem;
    color: #6b7280;
}
.market-price strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
}
.btn-buy-card {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); /* Gradyan buton */
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
}
.btn-buy-card:hover {
    background: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(99, 102, 241, 0.3);
}

/* Mobil Düzenleme */
@media (max-width: 768px) {
    .market-section {
        padding: 50px 0;
    }
    .market-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   FİYATLANDIRMA SAYFASI STİLLERİ (pricing.php)
   ========================================= */

/* Genel Konteyner Ayarları */
.pricing-container {
    margin-bottom: 80px; 
    max-width: 1200px; /* Max genişlik ayarı */
    margin-left: auto; 
    margin-right: auto; 
    padding: 0 20px;
}

/* Sayfa Başlığı */
.page-header {
    text-align: center; 
    padding: 60px 0 40px;
}
.page-header h1 {
    font-size: 2.5rem; 
    color: #1e293b; 
    margin-bottom: 10px;
    font-weight: 800;
}
.page-header p {
    color: #64748b; 
    font-size: 1.1rem;
}

/* --- KRİTİK: GRID YAPISI (Yan Yana Sıralama GARANTİ EDİLDİ) --- */
.pricing-grid {
    display: grid; 
    /* En az 300px genişliğinde kartlar, sığdırabildiği kadar yan yana sütun oluştur */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    align-items: stretch; /* Kartların yüksekliklerini eşitler */
}

/* --- TEKİL FİYAT KARTI --- */
.price-card {
    background: #fff; 
    border: 1px solid #e2e8f0; 
    border-radius: 16px; 
    padding: 40px; 
    position: relative; 
    transition: all 0.3s ease;
    height: 100%; /* Yüksekliği eşitler */
    
    /* İçeriği dikeyde düzenle */
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Premium Vurgusu */
.price-card.premium {
    border-color: #3b82f6; 
    box-shadow: 0 20px 40px rgba(59,130,246,0.25); 
    transform: scale(1.05); 
    z-index: 2; 
}

.premium-badge {
    position:absolute; 
    top:-12px; 
    right:20px; 
    background:#3b82f6; 
    color:white; 
    padding:4px 12px; 
    border-radius:12px; 
    font-size:0.8rem; 
    font-weight: 600;
}

/* Başlık ve Fiyat Stilleri */
.price-card h3 {
    font-size: 1.2rem; 
    font-weight: 700; 
    color: #1e293b; 
    margin-bottom: 15px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.price-value {
    font-size: 3rem; 
    font-weight: 800; 
    color: #0f172a; 
    margin-bottom: 10px;
}

.price-value span {
    font-size:1rem; 
    font-weight:400; 
    color:#64748b
}

.price-card p {
    margin-bottom:30px; 
    color:#64748b; 
    font-size: 0.95rem;
}

/* Özellik Listesi */
.features {
    list-style: none; 
    padding: 0; 
    margin-bottom: 30px; 
    text-align: left;
    flex-grow: 1; /* Butonu en alta iter */
}
.features li {
    margin-bottom: 12px; 
    color: #475569; 
    display: flex; 
    align-items: flex-start; 
    gap: 10px;
    font-size: 0.95rem;
}
.features li i {
    color: #10b981; /* Yeşil tik */
    margin-top: 4px; 
    font-size: 0.9rem;
}

/* --- BUTON STİLLERİ --- */
.plan-btn {
    display: block; 
    text-align: center; 
    padding: 12px; 
    border-radius: 8px; 
    font-weight: 600; 
    text-decoration: none; 
    transition: all 0.3s;
    margin-top: 20px; 
}

/* Outline Buton */
.plan-btn.btn-outline-custom {
    border:1px solid #cbd5e1; 
    color:#1e293b;
    background: #fff;
}
.plan-btn.btn-outline-custom:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

/* Primary Buton (Premium için) */
.plan-btn.btn-primary-custom {
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%); 
    color:#fff;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}
.plan-btn.btn-primary-custom:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
}

/* Paket Tanımlanmamış Mesajı */
.no-plans-message {
    text-align:center; 
    padding:50px; 
    background:#fff; 
    border-radius:12px; 
    border:1px solid #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobil */
@media (max-width: 768px) {
    .pricing-grid {
        /* Mobilde zorunlu olarak tek sütun olsun */
        grid-template-columns: 1fr;
    }
    .price-card.premium {
        /* Mobil görünümde büyütme efektini kaldır */
        transform: scale(1.0);
    }
}

/* =========================================
   FİYATLANDIRMA SAYFASI STİLLERİ (pricing.php)
   ========================================= */

/* ... (Genel Konteyner ve Başlık stilleri aynı kalıyor) ... */

/* --- KRİTİK: YAN YANA SIRALAMA (FLEXBOX İLE GARANTİ) --- */
.pricing-grid {
    display: flex; /* Flexbox etkinleştirildi */
    flex-wrap: wrap; /* Kartlar sığmazsa alt satıra geçsin */
    justify-content: center; /* Ortada hizalama */
    gap: 30px; /* Kartlar arası boşluk */
    align-items: stretch; /* Kartların yüksekliklerini eşitler */
    
    /* Gerekli olabilecek max genişliği kaldırıyoruz */
    width: 100%; 
    box-sizing: border-box; 
    padding: 0 20px; 
}

/* --- TEKİL FİYAT KARTI BOYUTLANDIRMASI --- */
.price-card {
    /* Flexbox içinde kart genişliği ayarı */
    flex: 0 0 calc(33.33% - 20px); /* 3 kart yan yana (gap'i çıkarıyoruz) */
    max-width: 380px; /* Kartın maksimum genişliğini koru */
    min-width: 300px; /* Kartın minimum genişliğini koru */

    background: #fff; 
    border: 1px solid #e2e8f0; 
    border-radius: 16px; 
    padding: 40px; 
    position: relative; 
    transition: all 0.3s ease;
    height: 100%; 
    
    /* İçeriği dikeyde düzenle */
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Premium Vurgusu */
.price-card.premium {
    border-color: #3b82f6; 
    box-shadow: 0 20px 40px rgba(59,130,246,0.25); 
    transform: scale(1.05); 
    z-index: 2; 
}

/* ... (Diğer tüm başlık, fiyat, buton ve badge stilleri aynı kalıyor) ... */

/* Mobil */
@media (max-width: 1024px) {
    /* 1024px altında ikişerli sırala */
    .price-card {
        flex: 0 0 calc(50% - 15px); /* İki kart yan yana */
        max-width: 450px;
    }
}
@media (max-width: 768px) {
    .pricing-grid {
        /* Mobilde tek sütun olsun */
        flex-direction: column;
        align-items: center;
    }
    .price-card {
        flex: 0 0 100%; /* Tam genişlik */
        max-width: 450px; /* Merkezdeki maksimum genişlik */
    }
    .price-card.premium {
        transform: scale(1.0);
    }
}

/* =========================================
   MARKET MODAL (AÇILIR PENCERE) STİLLERİ
   ========================================= */

.modal {
    display: none; /* Varsayılan olarak gizli */
    position: fixed; 
    z-index: 1000; /* Her şeyin üstünde */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* İçerik taşarsa kaydırma çubuğu */
    background-color: rgba(0,0,0,0.7); /* Yarı saydam siyah arka plan */
    justify-content: center; /* Yatayda ortala */
    align-items: center; /* Dikeyde ortala */
    padding: 20px;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    width: 95%; 
    max-width: 1200px; /* Pricing kartlarına uygun genişlik */
    position: relative;
    max-height: 90vh; /* Ekranın %90'ından fazla olmasın */
    overflow-y: auto; /* İçerik taşarsa modalı kaydır */
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 36px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover,
.close-btn:focus {
    color: #333;
    text-decoration: none;
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

/* Modal içindeki Pricing Grid'i daha kompakt hale getirebiliriz */
.modal-pricing-grid {
    /* Bu kural, pricing.php'deki yan yana sıralamayı modal içinde de garanti eder. */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; /* Modalda biraz daha az boşluk */
    align-items: stretch;
}

/* Mobil için Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 20px;
        max-width: 98%;
        /* Mobil: Kartlar alt alta sıralansın (Grid'in doğal tepkisi) */
    }
    .close-btn {
        font-size: 30px;
        right: 15px;
    }
}
:root {
    /* --- DARK THEME RENK PALETİ --- */
    --primary-color: #3b82f6; /* Daha parlak bir mavi (koyu zeminde okunsun diye) */
    --primary-hover: #2563eb;
    
    /* Zemin Renkleri */
    --bg-body: #0f172a;   /* Çok koyu lacivert (Slate 900) - Ana Arka Plan */
    --bg-card: #1e293b;   /* Kart rengi (Slate 800) - Kutular */
    --bg-input: #334155;  /* Input rengi (Slate 700) */
    
    /* Yazı Renkleri */
    --dark-text: #f1f5f9;  /* Ana başlıklar (Neredeyse beyaz) */
    --light-text: #94a3b8; /* Açıklamalar (Gri) */
    --white: #1e293b;      /* Eski white değişkenini kart rengine çektik */
    
    /* Kenarlıklar ve Gölgeler */
    --border-color: #334155; /* Koyu gri kenarlık */
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3); /* Daha belirgin koyu gölge */
    --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body { 
    color: var(--dark-text); 
    background-color: var(--bg-body); 
    line-height: 1.6; 
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; 
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
a:hover { color: var(--primary-color); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6, strong { color: #ffffff !important; }
p, span, li, label { color: var(--light-text); }

/* --- BUTTONS --- */
.btn { display: inline-block; padding: 10px 24px; border-radius: var(--radius); font-weight: 600; cursor: pointer; font-size: 0.95rem; border: none; transition: 0.3s; }
.btn-primary { background-color: var(--primary-color); color: #ffffff; border: 1px solid var(--primary-color); }
.btn-primary:hover { background-color: var(--primary-hover); box-shadow: 0 0 15px rgba(59, 130, 246, 0.4); }
.btn-outline { background-color: transparent; color: var(--dark-text); border: 1px solid var(--border-color); }
.btn-outline:hover { border-color: var(--primary-color); background-color: var(--bg-card); color: #fff; }
.full-width { width: 100%; text-align: center; }

/* --- NAVBAR --- */
.navbar { padding: 15px 0; background-color: var(--bg-body); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; color: #fff; }
.nav-links { display: flex; gap: 25px; }
.nav-links a { color: var(--light-text); }
.nav-links a:hover, .nav-links a.active { color: var(--primary-color); font-weight: 600; }
.nav-auth { display: flex; align-items: center; gap: 15px; }
.mobile-menu-btn { display: none; color: #fff; }

/* --- HERO & PAGE HEADER --- */
.hero { padding: 80px 0; background: var(--bg-body); } /* Gradient kaldırıldı, düz renk */
.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; color: #fff; }
.page-header { background: var(--bg-body); padding: 60px 0; text-align: center; margin-bottom: 40px; border-bottom: 1px solid var(--border-color); }
.page-header h1 { font-size: 2.5rem; margin-bottom: 10px; color: #fff; }

/* --- FORMS (Dark Inputlar) --- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--light-text); }
.form-control { 
    width: 100%; padding: 12px; 
    background-color: var(--bg-input); 
    border: 1px solid var(--border-color); 
    color: #fff; 
    border-radius: var(--radius); 
    outline: none; transition: 0.3s; 
}
.form-control:focus { border-color: var(--primary-color); box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* --- CARDS GLOBAL (Tüm Kartlar İçin Ortak Dark Stil) --- */
.service-card, .price-card, .feature-card, .shop-card, .auth-box, 
.contact-form-box, .info-card, .stat-card, .content-box, 
.testimonial-card, .message-card, .reply-section, .plan-card, .product-card {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--dark-text);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

/* Hover Efektleri */
.service-card:hover, .price-card:hover, .shop-card:hover, .feature-card:hover, .plan-card:hover, .product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color) !important;
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.6);
}

/* --- ICONS --- */
.service-card i, .contact-info-item i, .market-icon-box, .prod-icon, .shop-icon {
    background-color: var(--bg-body) !important; /* İkon arkası daha koyu */
    color: var(--primary-color) !important;
    border: 1px solid var(--border-color);
}

/* --- AUTH PAGES --- */
.auth-wrapper { display: flex; justify-content: center; align-items: center; padding: 80px 0; background-color: var(--bg-body); flex: 1; }
.auth-footer a { color: var(--primary-color); }

/* --- FOOTER --- */
footer, .site-footer { 
    background-color: #020617 !important; /* En koyu ton */
    color: var(--light-text); 
    border-top: 1px solid var(--border-color); 
    margin-top: auto; 
    padding-top: 50px;
}
.footer-bottom { border-top: 1px solid var(--border-color); padding: 20px 0; }

/* --- SERVICES GRID --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-bottom: 40px; }
.service-card { padding: 40px 30px; text-align: center; height: 100%; display: flex; flex-direction: column; align-items: center; }

/* --- PRICING GRID --- */
.pricing-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; align-items: stretch; width: 100%; padding: 0 20px; }
.price-card { flex: 0 0 calc(33.33% - 20px); max-width: 380px; min-width: 300px; padding: 40px; text-align: center; display: flex; flex-direction: column; }
.price-card.premium { border: 2px solid var(--primary-color) !important; transform: scale(1.05); z-index: 2; background-color: #1e293b !important; }
.price-value { color: #fff; font-size: 3rem; font-weight: 800; }
.features li { color: var(--light-text); }
.features li i { color: #34d399; } /* Yeşil tik */

/* --- MARKET & SHOP --- */
.market-section { background-color: var(--bg-body); padding: 80px 0; }
.filter-btn { background: var(--bg-card); color: var(--light-text); border: 1px solid var(--border-color); }
.filter-btn.active, .filter-btn:hover { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.market-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.market-title, .shop-header h3, .prod-title h3 { color: #fff; }
.market-price strong, .shop-price { color: #fff; }

/* --- FEATURE & PROJECTS (STICKY) --- */
.project-showcase-section { background-color: var(--bg-body); padding: 60px 0 120px 0; }
.feature-header h1 { color: #fff; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border-color); padding: 40px; position: sticky; top: 110px; z-index: 1; margin-bottom: 20px; display: flex; gap: 50px; border-radius: 24px; }
.feature-content h3 { color: #fff; }
.feature-list li { color: var(--light-text); }
.icon-check { background-color: var(--primary-color); color: #fff; }
.feature-image-wrapper .main-img { border: 1px solid var(--border-color); background: var(--bg-body); }

/* --- DASHBOARD SPECIFIC --- */
.dash-sidebar { background: var(--bg-card); border: 1px solid var(--border-color); }
.user-profile-summary { border-bottom: 1px solid var(--border-color); }
.user-profile-summary h4 { color: #fff; }
.dash-menu li a { color: var(--light-text); }
.dash-menu li a:hover, .dash-menu li a.active { background-color: var(--bg-body); color: #fff; }
.dash-table th { background-color: #0f172a; color: #fff; border-bottom: 1px solid var(--border-color); }
.dash-table td { border-bottom: 1px solid var(--border-color); color: var(--light-text); }

/* --- MODAL --- */
.modal { background-color: rgba(0,0,0,0.8); }
.modal-content { background-color: var(--bg-card); color: var(--dark-text); border: 1px solid var(--border-color); }
.modal-title { color: #fff; border-bottom: 1px solid var(--border-color); }
.close-btn { color: var(--light-text); }
.close-btn:hover { color: #fff; }

/* --- MISC SECTIONS --- */
.brands-section { background-color: var(--bg-body); border-bottom: 1px solid var(--border-color); }
.cta-section { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); }
.stats-section { background: var(--bg-card); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.testimonials-section { background-color: var(--bg-body); }
.testimonial-user h4 { color: #fff; }

/* --- TICKET & SUPPORT --- */
.ticket-header-content .ticket-id { color: var(--light-text); }
.staff-message { background-color: rgba(59, 130, 246, 0.1) !important; border-color: var(--primary-color) !important; }
.file-drop-zone { background-color: var(--bg-body); border-color: var(--border-color); color: var(--light-text); }
.file-drop-zone:hover { background-color: var(--bg-card); border-color: var(--primary-color); }

/* --- CKEDITOR DARK MODE FIX --- */
.ck.ck-toolbar { background-color: var(--bg-card) !important; border-color: var(--border-color) !important; }
.ck.ck-content { background-color: var(--bg-input) !important; color: #fff !important; border-color: var(--border-color) !important; }
.ck.ck-button { color: var(--light-text) !important; }
.ck.ck-button:hover { background-color: var(--primary-color) !important; color: #fff !important; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .pricing-grid, .services-grid, .contact-wrapper { grid-template-columns: 1fr; }
    .feature-card { position: relative; top: 0 !important; flex-direction: column; }
    .dash-sidebar { position: static; margin-bottom: 30px; }
    .dashboard-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { 
        background-color: var(--bg-card); 
        border-top: 1px solid var(--border-color); 
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    .mobile-menu-btn { display: block; color: #fff; }
    .nav-links li a { color: #fff; }
    .nav-auth .login-btn { background-color: var(--bg-body); color: #fff; border: 1px solid var(--border-color); }
    .footer-grid { grid-template-columns: 1fr; }
}
/* ======================================================
   DARK THEME ZORLAYICI DÜZELTMELER (FORCE OVERRIDE)
   ====================================================== */

/* 1. Market ve Ürün Kartlarını Zorla Koyu Yap */
.market-card, 
.product-card, 
.service-card, 
.price-card,
.feature-card {
    background-color: #1e293b !important; /* Koyu Gri/Mavi (Slate 800) */
    border: 1px solid #334155 !important; /* Kenarlık */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5) !important;
    color: #f1f5f9 !important; /* Genel yazı rengi */
}

/* 2. Kart İçindeki Başlıkları Beyaz Yap */
.market-title,
.market-card h3,
.product-card h3,
.service-card h3,
.price-card h3,
.feature-content h3,
.shop-header h3 {
    color: #ffffff !important;
}

/* 3. Kart İçindeki Açıklamaları ve Listeleri Gümüş Rengi Yap */
.market-desc,
.market-features li,
.shop-features li,
.feature-content p,
.feature-list li,
.price-card p,
.service-card p,
.product-card p {
    color: #cbd5e1 !important; /* Açık Gümüş */
}

/* 4. Fiyatları Belirginleştir */
.market-price, 
.market-price strong, 
.shop-price, 
.price-value {
    color: #ffffff !important;
}

/* 5. İkon Kutularını Düzenle (Beyaz kutu olmasın) */
.market-icon-box, 
.shop-icon, 
.prod-icon, 
.service-card i {
    background-color: rgba(59, 130, 246, 0.15) !important; /* Şeffaf Mavi Arka Plan */
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    color: #60a5fa !important; /* Parlak Mavi İkon */
}

/* 6. Butonları Koyu Temaya Uydur */
.btn-buy-card, 
.plan-btn {
    background-color: #3b82f6 !important;
    color: white !important;
    border: none !important;
}
.btn-buy-card:hover, 
.plan-btn:hover {
    background-color: #2563eb !important;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.5) !important;
}

/* 7. Genel Sayfa Başlıkları (Section Headers) */
.section-header h2, 
.box-header h2, 
.page-header h1,
.features-hero h1 {
    color: #ffffff !important;
}
.section-header p, 
.box-header p, 
.page-header p,
.features-hero p {
    color: #94a3b8 !important;
}

/* 8. Filtre Butonları (Market Sayfası) */
.filter-btn {
    background-color: #1e293b !important;
    color: #cbd5e1 !important;
    border: 1px solid #334155 !important;
}
.filter-btn.active, .filter-btn:hover {
    background-color: #3b82f6 !important;
    color: #ffffff !important;
    border-color: #3b82f6 !important;
}
/* ======================================================
   İLETİŞİM SAYFASI DARK MODE DÜZELTMESİ (ÖZEL)
   ====================================================== */

/* 1. Büyük Beyaz Form Kutusunu ve Sol Mavi Kutuyu Koyu Yap */
.contact-form-box-wide,
.contact-info-box-wide {
    background-color: #1e293b !important; /* Koyu Lacivert (Slate 800) */
    border: 1px solid #334155 !important; /* Çerçeve */
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5) !important;
    color: #f1f5f9 !important; /* Yazı Rengi */
}

/* 2. Sol Taraftaki Bilgi İkonlarını Düzenle */
.contact-item .icon-box {
    background-color: rgba(59, 130, 246, 0.15) !important; /* Şeffaf Mavi */
    color: #60a5fa !important; /* İkon Rengi */
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
}

/* 3. Form İçindeki Yazı Alanlarını (Input/Textarea) Koyu Yap */
.contact-form-box-wide input,
.contact-form-box-wide textarea,
.contact-form-box-wide select {
    background-color: #0f172a !important; /* En Koyu Zemin */
    border: 1px solid #334155 !important;
    color: #ffffff !important; /* Yazı Rengi Beyaz */
}

/* Inputlara tıklayınca (Focus) */
.contact-form-box-wide input:focus,
.contact-form-box-wide textarea:focus,
.contact-form-box-wide select:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3) !important;
}

/* 4. Sol Taraftaki Sosyal Medya İkonları */
.social-links-row a {
    background-color: #0f172a !important;
    border-color: #334155 !important;
    color: #94a3b8 !important;
}
.social-links-row a:hover {
    background-color: #3b82f6 !important;
    color: #ffffff !important;
}

/* 5. Harita Alanı */
.map-section-wide {
    border: 1px solid #334155 !important;
    filter: grayscale(20%) contrast(1.1); /* Haritayı biraz koyu temaya uydur */
}
/* =================================================================
   🔥 FORCE DARK MODE (TÜM AYARLARI EZEN KODLAR) 🔥
   ================================================================= */

/* 1. TÜM KARTLARI ZORLA KOYU YAP (Market, Hizmet, Proje, Fiyat vb.) */
body .market-card,
body .service-card,
body .feature-card,
body .price-card,
body .shop-card,
body .product-card,
body .testimonial-card,
body .info-card,
body .stat-card,
body .auth-box,
body .contact-form-box,
body .contact-form-box-wide, 
body .contact-info-box-wide {
    background-color: #1e293b !important; /* Koyu Slate Rengi */
    background: #1e293b !important;       /* Gradient varsa onu da ez */
    border: 1px solid #334155 !important; /* Kenarlık Rengi */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.6) !important; /* Koyu Gölge */
    color: #f1f5f9 !important;            /* Yazı Rengi */
}

/* 2. KART İÇİNDEKİ BAŞLIKLARI ZORLA BEYAZ YAP */
body .market-card h3,
body .service-card h3,
body .feature-card h2, 
body .feature-card h3,
body .price-card h3,
body .shop-card h3,
body .product-card h3,
body .testimonial-card h4,
body .market-title,
body .shop-header h3,
body .prod-title h3,
body .section-header h2,
body .box-header h2,
body .box-header h3 {
    color: #ffffff !important;
}

/* 3. AÇIKLAMALARI VE LİSTELERİ ZORLA GÜMÜŞ YAP */
body .market-desc,
body .market-features li,
body .shop-features li,
body .feature-list li,
body .features li,
body .price-card p,
body .service-card p,
body .product-card p,
body .testimonial-text,
body .contact-item p {
    color: #cbd5e1 !important; /* Okunabilir Açık Gri */
}

/* 4. FİYAT ETİKETLERİNİ BELİRGİNLEŞTİR */
body .market-price, 
body .market-price strong, 
body .shop-price, 
body .price-value {
    color: #ffffff !important;
}

/* 5. İKON KUTULARINI KOYU TEMAYA UYDUR (Beyaz kutu olmasın) */
body .market-icon-box, 
body .shop-icon, 
body .prod-icon, 
body .service-card i,
body .contact-item .icon-box {
    background-color: rgba(59, 130, 246, 0.15) !important; /* Şeffaf Mavi */
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    color: #60a5fa !important; /* Parlak Mavi İkon */
}

/* 6. BUTONLARI DÜZELT */
body .btn-buy-card, 
body .plan-btn,
body .btn-feature {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3) !important;
}

/* 7. ADMİNDEN GELEN ARKA PLANLARI SİL (Section bg-white vb.) */
body section[style*="background-color: #fff"],
body section[style*="background-color: white"],
body div[style*="background-color: #fff"],
body .features-page-section,
body .market-section,
body .pricing-container,
body .page-header {
    background-color: #0f172a !important; /* Ana Sayfa Arka Planı (Çok Koyu) */
}

/* 8. ÖZEL DÜZELTMELER (Features Sayfası Numaralar ve Yazılar) */
body .feature-number {
    color: rgba(255, 255, 255, 0.05) !important; /* Numaraları silik beyaz yap */
}
body .features-hero h1 {
    color: #ffffff !important;
}
body .features-hero p {
    color: #94a3b8 !important;
}
/* ======================================================
   İLETİŞİM İKONLARI KURTARMA OPERASYONU
   ====================================================== */

/* 1. İkon Kutusunu Sabitle */
.contact-item .icon-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 50px !important;
    background-color: rgba(59, 130, 246, 0.2) !important; /* Hafif Mavi Zemin */
    border: 1px solid rgba(59, 130, 246, 0.4) !important; /* Çerçeve */
    border-radius: 12px !important;
    color: #60a5fa !important; /* İkon Rengi */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2) !important;
}

/* 2. İkonun Kendisini (<i> etiketi) Zorla Görünür Yap */
.contact-item .icon-box i {
    color: #60a5fa !important; /* Parlak Mavi */
    background: transparent !important; /* Arka planı şeffaf olsun */
    border: none !important;
    font-size: 1.4rem !important; /* Boyutu biraz büyüt */
    opacity: 1 !important;
    visibility: visible !important;
}

/* 3. Sosyal Medya İkonlarını da Düzelt */
.social-links-row a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #1e293b !important;
    border: 1px solid #334155 !important;
    color: #94a3b8 !important;
}

.social-links-row a i {
    background: transparent !important;
    color: inherit !important;
}

.social-links-row a:hover {
    background-color: #3b82f6 !important;
    color: #ffffff !important;
    border-color: #3b82f6 !important;
}
/* ==========================================================
   KAYIP İKONLARI GERİ GETİRME KODU (KESİN ÇÖZÜM)
   ========================================================== */

/* 1. İKON KAPSAYICI KUTUSUNU RESETLE */
.contact-info-box-wide .contact-item .icon-box,
.contact-item .icon-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important; /* Ezilmemesi için */
    background-color: rgba(59, 130, 246, 0.2) !important; /* Şeffaf Mavi Zemin */
    border: 1px solid rgba(59, 130, 246, 0.5) !important;
    border-radius: 12px !important;
    margin-right: 20px !important;
}

/* 2. İKONUN KENDİSİNİ (SİMGE) ZORLA GÖRÜNÜR YAP */
.contact-info-box-wide .contact-item .icon-box i,
.contact-item .icon-box i {
    /* FontAwesome'ı zorla tanımla */
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    
    /* Renk ve Görünürlük */
    color: #ffffff !important; /* İkon Rengi BEYAZ olsun ki mavi üstünde parlasın */
    -webkit-text-fill-color: #ffffff !important;
    font-size: 24px !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1 !important;
    background: none !important; /* Arka planı temizle */
}

/* 3. SOSYAL MEDYA İKONLARINI DÜZELT */
.social-links-row a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 45px !important;
    height: 45px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    text-decoration: none !important;
}

.social-links-row a i {
    color: #ffffff !important;
    font-size: 18px !important;
    display: block !important;
    visibility: visible !important;
}

.social-links-row a:hover {
    background-color: #3b82f6 !important; /* Maviye dön */
    border-color: #3b82f6 !important;
}