/* --- 1. DEĞİŞKENLER VE RENKLER --- */
:root {
    --bg-main: #050505;        /* Sinematik Koyu Siyah (Arka plan ızgarasını kaldırdık) */
    --bg-surface: #101010;     /* Kart Rengi */
    --accent-color: #00D1FF;   /* Neon Mavi */
    --text-primary: #ffffff;   /* Beyaz Metin */
    --text-secondary: #9CA3AF; /* Gri Metin */
    --font-heading: 'Space Grotesk', sans-serif; 
    --font-body: 'Inter', sans-serif;
}

/* --- 2. TEMEL AYARLAR --- */
body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: 0.3s; 
}

/* --- 3. SİNEMATİK NAVBAR --- */
.cinematic-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Alanı */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px; 
}

.logo-icon {
    height: 32px; 
    width: auto;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
}

.logo-text .dot {
    color: var(--accent-color); 
}

/* Orta Menü (Kategoriler) */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-menu a:hover {
    color: #ffffff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Sağ Menü (Arama ve Dil) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s;
    padding: 0;
    display: flex;
}

.search-btn:hover {
    color: #ffffff;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.lang-switch a { color: var(--text-secondary); }
.lang-switch a.active { color: #ffffff; }
.lang-switch .divider {
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* --- 4. DEV SİNEMA AFİŞİ (HERO) --- */
.cinematic-hero {
    position: relative;
    width: 100%;
    height: 85vh; /* Ekranın %85'ini kaplar */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end; /* İçeriği aşağı yaslar */
    padding-bottom: 5rem;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Netflix tarzı alttan yukarı siyaha geçiş */
    background: linear-gradient(to top, #050505 0%, rgba(5,5,5,0.7) 40%, rgba(5,5,5,0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

.hero-category {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin: 0 0 2rem 0;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
}

.btn-read-story {
    display: inline-block;
    background-color: var(--text-primary);
    color: var(--bg-main);
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-read-story:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: scale(1.05);
}

/* --- 5. OTOMASYON BİLGİ BANDI --- */
.automation-banner {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    margin-bottom: 4rem;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item { text-align: center; }
.stat-value { display: block; font-size: 2.5rem; font-weight: 700; font-family: 'Cinzel', serif; }
.text-accent { color: var(--accent-color); }
.stat-label { font-size: 0.85rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; display: block;}
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }

/* --- 6. İÇERİK IZGARASI (GRID) --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* --- 7. CAMSIMSI İÇERİK KARTLARI --- */
.cinematic-card {
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cinematic-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 209, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.card-image { 
    position: relative; 
    width: 100%; 
    height: 200px; /* Görseller 16:9 oranına daha uygun olsun diye */
    overflow: hidden; 
    background-color: #000;
}

.card-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease; 
}

.cinematic-card:hover .card-image img { 
    transform: scale(1.05); 
}

.ai-badge {
    position: absolute; 
    top: 12px; 
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--accent-color);
    border: 1px solid rgba(0, 209, 255, 0.3);
    font-size: 0.65rem;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 209, 255, 0.1);
}

.card-content { 
    padding: 1.5rem; 
}

.category-tag {
    font-size: 0.75rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.5rem;
    display: block;
}

.card-content h2 { 
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    color: var(--text-primary);
}

.cinematic-card::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    margin-top: auto; /* Çizgiyi en alta iter */
}

.cinematic-card:hover::after {
    width: 100%;
}

.empty-state {
    color: #888; 
    text-align: center; 
    grid-column: 1/-1;
}

/* Reklam Konteyneri */
.ads-container.top-banner {
    width: 100%;
    max-width: 1200px;
    margin: 1rem auto;
    text-align: center;
}
/* --- AÇILIR MENÜ (DROPDOWN) TASARIMI --- */
.dropdown {
    position: relative;
}

.dropdown .arrow {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    min-width: 240px;
    padding: 0.5rem 0;
    
    /* Animasyon için başlangıç durumu */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
}

/* Farenin üzerine gelince menü açılsın */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(20px); /* Navbarın biraz altından çıksın */
}

/* Alt linklerin tasarımı */
.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    text-transform: capitalize !important;
    font-size: 0.95rem !important;
    color: var(--text-secondary);
}

.dropdown-menu a::after {
    display: none; /* Açılır menüdeki linklerde alt çizgi olmasın */
}

.dropdown-menu a:hover {
    background: rgba(0, 209, 255, 0.08); /* Hover durumunda hafif mavi arka plan */
    color: var(--text-primary);
    padding-left: 2rem; /* Üzerine gelince metin hafif sağa kaysın (Hoş bir efekt) */
}

/* --- MOBİL MENÜ BUTONU --- */
.mobile-menu-btn {
    display: none; /* Masaüstünde gizli */
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0;
}

/* --- MOBİL YAN MENÜ (OVERLAY) --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    
    /* Başlangıçta sağda gizli kalsın */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0; right: -300px; /* Ekran dışından gelecek */
    width: 300px; height: 100%;
    background: #0a0a0a;
    border-left: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu-overlay.active .mobile-menu-content {
    right: 0; /* İçeri kaysın */
}

.close-menu-btn {
    align-self: flex-end;
    background: none; border: none;
    color: #fff; font-size: 1.5rem;
    cursor: pointer; margin-bottom: 2rem;
}

.mobile-nav-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 1rem;
}

.mobile-nav-list a {
    color: #fff; font-size: 1.2rem; font-weight: 500;
}

.mobile-cat-title {
    color: var(--accent-color);
    font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 2px; margin-top: 1rem; margin-bottom: 0.5rem;
}

.mobile-cat-link {
    color: var(--text-secondary) !important;
    font-size: 1rem !important;
}

.mobile-lang-switch {
    margin-top: auto; /* En alta iter */
    display: flex; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
}
.mobile-lang-switch a { font-size: 1rem; color: var(--text-secondary); }
.mobile-lang-switch a.active { color: var(--accent-color); }

/* --- RESPONSIVE AYARLARI (MOBİL EKRANLAR) --- */
@media (max-width: 992px) {
    .desktop-only {
        display: none !important; /* Masaüstü menüsünü ve dil seçiciyi gizle */
    }
    .mobile-menu-btn {
        display: block; /* Hamburger ikonu çıksın */
    }
}

/* --- 9. SİNEMATİK FOOTER --- */
.cinematic-footer {
    background-color: #080808; /* Ana siyah arka plandan hafifçe ayrışması için */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 0 0;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; /* Sol sütun geniş, diğerleri eşit */
    gap: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-about {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-heading {
    font-family: 'Cinzel', serif; /* Menü ve afişle uyumlu sinematik font */
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Hover Efekti: Üzerine gelince neon renk alır ve zarifçe sağa kayar */
.footer-links a:hover {
    color: var(--text-primary);
    transform: translateX(6px); 
}

/* Dikkat Çeken Satış Linki */
.footer-links a.highlight-link {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-bottom {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Mobil ve Tablet Uyumluluğu */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; /* Tablete inince 2 sütun */
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr; /* Telefona inince alt alta tek sütun */
        gap: 2.5rem;
    }
}

/* --- 10. DETAY SAYFASI (İÇERİK OKUMA) --- */
.story-detail {
    width: 100%;
    background-color: var(--bg-main);
}

.story-hero {
    position: relative;
    width: 100%;
    height: 60vh; 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    padding-bottom: 6rem; 
}

.hero-overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, var(--bg-main) 0%, rgba(5,5,5,0.6) 50%, rgba(5,5,5,0.2) 100%);
}

.story-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    text-align: center;
}

.story-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 5px 20px rgba(0,0,0,0.8);
}

/* İçerik Konteyneri */
.story-container {
    max-width: 800px;
    margin: -6rem auto 0; 
    padding: 2rem;
    position: relative;
    z-index: 3;
    background: var(--bg-main);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -15px 40px rgba(0,0,0,0.8); 
}

/* Video Oynatıcı */
.story-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Oranı */
    height: 0;
    overflow: hidden;
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.05);
}

.story-video-wrapper iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

/* Metin Stilleri */
.story-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #D1D5DB; /* Göz yormayan açık gri */
}

.story-content h2, .story-content h3 {
    color: #fff;
    font-family: var(--font-heading);
    margin-top: 2.5rem;
}

.story-content p {
    margin-bottom: 1.5rem;
}

/* --- THE MONEY SECTION (SATIŞ HUNİSİ VE TABLO) --- */
.pitch-section {
    margin-top: 5rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 209, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(0, 209, 255, 0.05);
}

.pitch-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #fff;
    text-align: center;
    margin-top: 0;
}

.pitch-desc {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.cost-table th, .cost-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cost-table th {
    text-align: left;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.cost-table th.text-right, .cost-table td.text-right { text-align: right; }
.cost-table th.highlight-col { color: var(--accent-color); background: rgba(0, 209, 255, 0.05); }
.cost-table td.highlight-col { background: rgba(0, 209, 255, 0.02); }

.text-success { color: #10B981 !important; }
.text-muted { color: #6B7280 !important; }
.fw-bold { font-weight: bold; }

/* Satış Butonları */
.pitch-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px dashed rgba(255,255,255,0.1);
}

.cta-title { color: #fff; font-size: 1.5rem; margin-bottom: 0.5rem; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }

.btn-buy-system {
    background: linear-gradient(135deg, #00D1FF 0%, #007AFF 100%);
    color: #fff; padding: 1rem 2rem; border-radius: 8px; font-weight: 600; font-size: 1.1rem;
}
.btn-buy-system:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 209, 255, 0.3); color: #fff; }

.btn-hosting {
    background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 2rem; border-radius: 8px; font-weight: 600; font-size: 1.1rem;
}
.btn-hosting:hover { background: rgba(255,255,255,0.05); border-color: #fff; }

@media (max-width: 768px) {
    .story-title { font-size: 2.2rem; }
    .story-hero { height: 60vh; }
    .pitch-section { padding: 1.5rem; }
    .cost-table th, .cost-table td { padding: 0.5rem; font-size: 0.8rem; }
}
/* --- SİNEMATİK SPOT METNİ --- */
.story-spot {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #ffffff;
    font-style: italic;
    font-weight: 300;
    text-align: center;
    margin: 1rem auto 3rem auto;
    padding: 0 1.5rem;
    position: relative;
}

.story-spot p {
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8); /* Metni arka plandan koparır */
}

/* Üst ve Alt Ayırıcı Çizgiler */
.story-spot::before, .story-spot::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 1.5rem auto;
    opacity: 0.7;
    box-shadow: 0 0 10px var(--accent-color);
}

/* --- KATEGORİ SAYFASI BAŞLIĞI --- */
/* --- KATEGORİ SAYFASI BAŞLIĞI (YENİ) --- */
.category-hero {
    position: relative;
    width: 100%;
    /* Ekranın bir kısmını kaplaması için paddingleri artırdık */
    padding: 10rem 2rem 6rem 2rem; 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax (Aşağı kaydırınca resmin sabit kalması) efekti */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Resmi silikleştiren / Zifiri karanlığa bulayan katman */
.category-hero .hero-overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Üstten hafif karanlık, aşağıya doğru sitenin ana rengine tam geçiş */
    background: linear-gradient(to bottom, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0.9) 70%, var(--bg-main) 100%);
}

.category-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px; /* SEO metninin çok yayılmasını engeller */
}

.category-subtitle {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.category-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    margin: 0;
    text-shadow: 0 0 30px rgba(0, 209, 255, 0.3);
}

/* SEO Açıklama Metni */
.category-description {
    margin-top: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #D1D5DB; /* Göz yormayan açık gri */
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    font-weight: 300;
}

@media (max-width: 768px) {
    .category-hero { padding: 8rem 1rem 4rem 1rem; }
    .category-title { font-size: 2.2rem; }
    .category-description { font-size: 1rem; }
}

/* --- 11. STATİK / YASAL SAYFALAR VE İLETİŞİM --- */

/* Yasal Metinler Okunabilirlik Ayarı */
.legal-text h3 {
    color: #fff;
    font-family: var(--font-heading);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.legal-text h4 {
    color: var(--text-secondary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.legal-text p, .legal-text ul {
    margin-bottom: 1.5rem;
    color: #C0C5CE;
    line-height: 1.8;
}

.legal-text ul {
    padding-left: 1.5rem;
}

.legal-text ul li {
    margin-bottom: 0.5rem;
}

/* İletişim Sayfası Izgarası */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
}

.contact-details li a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-details li a:hover {
    text-shadow: 0 0 10px var(--accent-color);
}

/* Sinematik Form Tasarımı */
.cinematic-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 209, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 209, 255, 0.03);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(0, 209, 255, 0.2);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .cinematic-form {
        padding: 1.5rem;
    }
}



/* --- 8. MOBİL UYUM (RESPONSIVE) --- */
@media (max-width: 768px) {
    .nav-menu { display: none; } /* Mobilde menüyü gizle (Hamburger menü eklenebilir) */
    .hero-title { font-size: 2.5rem; }
    .hero-content { padding-bottom: 2rem; }
    .banner-content { flex-direction: column; gap: 2rem; }
    .stat-divider { width: 50px; height: 1px; }
    .content-grid { grid-template-columns: 1fr; }
}

/* --- PAYLAŞIM BUTONLARI --- */
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.share-btn:hover {
    transform: translateY(-4px);
    color: #fff;
}

/* X (Twitter) Hover Rengi */
.share-btn.x:hover {
    background: #000000;
    border-color: #333333;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* WhatsApp Hover Rengi */
.share-btn.wa:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Facebook Hover Rengi */
.share-btn.fb:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}