/* ==========================================================================
   MÜKEMMEL NESLİ - PREMIUM ONLINE KOÇLUK SİTESİ CSS ÇEKİRDEĞİ
   TEMA: Dark Luxury + NEON EFEKTLER + S.S.S. (FAQ) ALANI EKLENDİ
   ========================================================================= */

/* --- DEĞİŞKENLER VE SIFIRLAMA --- */
:root {
    --bg-main: #0a0a0a;
    --bg-card: rgba(26, 26, 26, 0.7);
    --text-main: #e0e0e0;
    --text-muted: #999;
    --gold: #d4af37;
    --gold-hover: #f1c40f;
    --red-accent: #c92a2a;
    --border: rgba(255, 255, 255, 0.1);
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.3s ease-in-out;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* SAĞA SOLA KAYMA KİLİDİ */
html, body { overflow-x: hidden; width: 100%; max-width: 100vw; }

body { background-color: var(--bg-main); color: var(--text-main); font-family: var(--font-main); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* --- TİPOGRAFİ & YARDIMCILAR --- */
h1, h2, h3, h4 { color: #fff; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.highlight { color: var(--gold); }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mb-2 { margin-bottom: 1rem; }
.section-pad { padding: 5rem 0; }
.bg-darker { background-color: #050505; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-title { margin-bottom: 3rem; }
.section-title p { color: var(--text-muted); font-size: 1.1rem; margin-top: 0.5rem; }

/* --- NEON EFEKT SINIFLARI --- */
.neon-text { text-shadow: 0 0 10px rgba(255,255,255,0.5), 0 0 20px rgba(255,255,255,0.3); }
.neon-gold { text-shadow: 0 0 10px rgba(212,175,55,0.6), 0 0 20px rgba(212,175,55,0.3); color: var(--gold); }
.neon-text-green { color: #0f0; text-shadow: 0 0 10px rgba(0,255,0,0.8), 0 0 20px rgba(0,255,0,0.4); font-size: 1.5rem; letter-spacing: 2px; display: inline-block; margin: 10px 0; }

.neon-card {
    border: 1px solid rgba(212,175,55,0.3);
    box-shadow: 0 0 15px rgba(212,175,55,0.1), inset 0 0 10px rgba(212,175,55,0.05);
    transition: var(--transition);
}
.neon-card:hover {
    border-color: rgba(212,175,55,0.8);
    box-shadow: 0 0 25px rgba(212,175,55,0.4), inset 0 0 15px rgba(212,175,55,0.2);
    transform: translateY(-5px);
}

.neon-card-hover:hover {
    box-shadow: 0 0 20px rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

.discount-code-box { background: rgba(0,0,0,0.6); padding: 15px; border-radius: 8px; margin-top: 15px; border: 1px dashed rgba(255,255,255,0.2); text-align: center; }
.badge-discount { display: inline-block; background: #0f0; color: #000; padding: 4px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: 800; margin-left: 10px; box-shadow: 0 0 10px rgba(0,255,0,0.5); vertical-align: middle; }

/* --- GRID SİSTEMİ --- */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.gap-4 { gap: 4rem; }

/* --- BUTONLAR --- */
.btn { display: inline-block; padding: 12px 28px; font-weight: 700; border-radius: 4px; text-transform: uppercase; font-size: 0.9rem; cursor: pointer; border: 2px solid transparent; text-align: center; transition: var(--transition); }
.btn-primary { background-color: var(--text-main); color: var(--bg-main); box-shadow: 0 0 10px rgba(255,255,255,0.2); }
.btn-primary:hover { background-color: #fff; box-shadow: 0 0 20px rgba(255,255,255,0.5); }
.btn-outline { border-color: var(--border); color: #fff; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 15px rgba(212,175,55,0.3); }
.btn-gold { background: linear-gradient(45deg, #b8860b, #d4af37); color: #000; border: none; box-shadow: 0 0 15px rgba(212,175,55,0.4); }
.btn-gold:hover { background: linear-gradient(45deg, #d4af37, #f1c40f); box-shadow: 0 0 25px rgba(212,175,55,0.7); transform: translateY(-2px); }
.full-width { width: 100%; }
.link-arrow { color: var(--gold); font-weight: 700; font-size: 1.1rem; }
.link-arrow:hover { text-shadow: 0 0 10px rgba(212,175,55,0.5); margin-left: 5px; }

/* --- HEADER / NAVBAR --- */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 1.5rem 0; transition: background 0.4s, padding 0.4s; }
.navbar.scrolled { background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); padding: 1rem 0; border-bottom: 1px solid var(--border); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 900; letter-spacing: 2px; }
.logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; }
.nav-links a { margin-left: 2rem; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; position: relative; }
.nav-links a:hover { color: var(--gold); text-shadow: 0 0 10px rgba(212,175,55,0.5); }
.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: #fff; transition: var(--transition); }

/* --- PAGE HEADER --- */
.page-header { padding: 8rem 0 4rem; background: linear-gradient(to bottom, #111, var(--bg-main)); border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: 3rem; margin-bottom: 1rem; color: var(--gold); }
.page-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ==========================================================================
   --- HERO SECTION ---
   ========================================================================== */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background-color: var(--bg-main); z-index: 1; }
.hero::before { display: none; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(35,35,35,0.7) 0%, rgba(10,10,10,1) 85%); z-index: -1; }
.hero-images { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.hero-img { position: absolute; bottom: 0; height: 90vh; display: flex; align-items: flex-end; } 
.left-img { left: -5%; }
.right-img { right: -5%; }
.hero-img img { height: 100%; width: auto; max-width: none; object-fit: contain; filter: drop-shadow(0 0 30px rgba(0,0,0,0.8)) luminosity(105%); mix-blend-mode: hard-light; opacity: 0.95; }
.smoke-overlay { position: absolute; inset: -10%; z-index: 2; background: linear-gradient(to top, var(--bg-main) 12%, transparent 45%); pointer-events: none; }

.hero-content { position: relative; z-index: 5; text-align: center; max-width: 850px; padding: 0 25px; pointer-events: auto; }
.hero-title { font-size: 4rem; line-height: 1.1; margin-bottom: 1.8rem; font-weight: 900; }
.hero-subtitle { font-size: 1.25rem; color: #ddd; margin-bottom: 2.5rem; text-shadow: 0 2px 10px rgba(0,0,0,1); font-weight: 500; max-width: 700px; margin-left: auto; margin-right: auto; }

.hero-stats { display: flex; justify-content: center; gap: 2.5rem; margin-top: 4.5rem; background: rgba(15, 15, 15, 0.4); border-radius: 16px; padding: 2rem 3rem; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.stat-box { text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
.stat-box strong { color: var(--gold); font-size: 1.7rem; display: block; margin-bottom: 0.3rem; font-weight: 800; }

.hero-shape-divider { position: absolute; bottom: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 10; }
.hero-shape-divider svg { display: block; width: calc(100% + 1.3px); height: 60px; }
.hero-shape-divider .shape-fill { fill: var(--bg-main); }

/* --- GLASS CARDS --- */
.glass-card, .price-card, .glass-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 2.5rem 2rem; backdrop-filter: blur(10px); transition: transform 0.4s, box-shadow 0.4s; position: relative; overflow: hidden; }
.glass-card .icon { font-size: 2.5rem; margin-bottom: 1rem; text-shadow: 0 0 15px rgba(255,255,255,0.3); }

/* --- PRICE CARDS --- */
.price-card { text-align: center; display: flex; flex-direction: column; }
.price-card h3 { font-size: 1.8rem; margin-bottom: 0.5rem; color: #fff; }
.package-price { font-size: 2.2rem; font-weight: 900; color: var(--gold); margin: 0.5rem 0 1.5rem 0; text-shadow: 0 0 10px rgba(212,175,55,0.3); }
.package-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; text-transform: lowercase; text-shadow: none; }
.price-card .desc { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.9rem; }
.price-card ul { text-align: left; margin-bottom: 2rem; flex-grow: 1; }
.price-card ul li { padding: 10px 0; border-bottom: 1px solid var(--border); position: relative; padding-left: 25px; }
.price-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: bold; text-shadow: 0 0 5px rgba(212,175,55,0.5); }
.premium-card { border-color: var(--gold); z-index: 2; }
.badge { position: absolute; top: 15px; right: -35px; background: var(--gold); color: #000; padding: 5px 40px; transform: rotate(45deg); font-size: 0.7rem; font-weight: bold; box-shadow: 0 0 10px rgba(212,175,55,0.5); }

/* ==========================================================================
   --- SIKÇA SORULAN SORULAR (FAQ) ---
   ========================================================================== */
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: var(--transition); cursor: pointer; }
.faq-item summary { padding: 1.2rem 1.5rem; font-size: 1.1rem; font-weight: 700; color: #fff; list-style: none; display: flex; justify-content: space-between; align-items: center; outline: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--gold); font-size: 1.5rem; font-weight: 400; transition: transform 0.3s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); color: #fff; }
.faq-item[open] { border-color: var(--gold); box-shadow: 0 0 15px rgba(212,175,55,0.1); }
.faq-content { padding: 0 1.5rem 1.2rem; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; border-top: 1px solid transparent; }
.faq-item[open] .faq-content { border-top-color: rgba(255,255,255,0.05); margin-top: 10px; padding-top: 15px; animation: fadeInFAQ 0.3s ease-in-out; }

@keyframes fadeInFAQ { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   --- ABOUT PREVIEW ---
   ========================================================================== */
.about-image { position: relative; flex: 1; display: flex; justify-content: center; align-items: center; }
.about-image img { width: 100%; max-width: 300px; height: auto; border-radius: 12px; position: relative; z-index: 2; filter: drop-shadow(0 15px 30px rgba(0,0,0,0.8)); }
.glow-effect { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%); filter: blur(40px); z-index: 1; }
.about-text { flex: 1; max-width: 550px; }

/* --- TABLE & FORMS --- */
.table-responsive { overflow-x: auto; margin-top: 2rem; }
.compare-table { width: 100%; border-collapse: collapse; text-align: center; }
.compare-table th, .compare-table td { padding: 1.5rem; border-bottom: 1px solid var(--border); }
.highlight-col { background: rgba(212, 175, 55, 0.05); border-left: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.compare-table th.highlight-col { border-top: 1px solid var(--gold); color: var(--gold); }
.form-group { margin-bottom: 1.5rem; }
input, select, textarea { width: 100%; padding: 1rem; background: rgba(0,0,0,0.5); border: 1px solid var(--border); color: #fff; border-radius: 4px; outline: none; transition: border 0.3s; font-family: var(--font-main); }
input:focus, select:focus, textarea:focus { border-color: var(--gold); }

/* --- FLOATING BUTTONS --- */
.floating-actions { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 999; }
.float-btn { width: 55px; height: 55px; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: white; transition: transform 0.3s; }
.float-btn:hover { transform: scale(1.1); }
.wa-btn { background-color: #25D366; box-shadow: 0 0 15px rgba(37,211,102,0.5); }
.wa-btn:hover { box-shadow: 0 0 25px rgba(37,211,102,0.8); }
.ig-btn { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); box-shadow: 0 0 15px rgba(220,39,67,0.4); }

/* --- FOOTER --- */
.footer { background-color: #050505; padding: 4rem 0 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer h3 span { color: var(--gold); }
.footer h4 { margin-bottom: 1.5rem; color: #fff; }
.footer-links a, .footer-contact a { display: block; color: var(--text-muted); margin-bottom: 0.8rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom { background: #000; padding: 1.5rem 0; font-size: 0.8rem; color: #666; border-top: 1px solid var(--border); }
.legal-links a { margin-left: 1rem; transition: color 0.3s; }
.legal-links a:hover { color: var(--gold); }

/* --- LOADER --- */
.loader-wrapper { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg-main); display: flex; justify-content: center; align-items: center; z-index: 9999; transition: opacity 0.5s; }
.loader { width: 50px; height: 50px; border: 3px solid rgba(255,255,255,0.1); border-top-color: var(--gold); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   --- RESPONSIVE AYARLAR (TABLET) ---
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.2rem; }
}

@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .premium-card { transform: scale(1); z-index: 1; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-links a:hover, .footer-contact a:hover { padding-left: 0; }
    .about-preview .flex-center { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   --- MOBİL GÖRÜNÜM (<= 768px) KİLİTLİ ---
   ========================================================================== */
@media (max-width: 768px) {
    .nav-links { position: fixed; right: -100%; top: 70px; background: rgba(10,10,10,0.98); flex-direction: column; width: 100%; height: calc(100vh - 70px); align-items: center; justify-content: center; transition: 0.4s; z-index: 999; }
    .nav-links.active { right: 0; }
    .nav-links a { margin: 1.5rem 0; font-size: 1.2rem; }
    .menu-toggle { display: block; z-index: 1000; }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .hero::before { display: none; }
    .hero { display: block; height: auto; padding-top: 70px; padding-bottom: 90px; }
    .hero-bg { background: linear-gradient(to bottom, #050505 0%, #151515 100%); z-index: -2; }

    .hero-images { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
    .right-img { display: block !important; right: -20%; } 
    .left-img { left: -20%; } 
    .hero-img { position: absolute; top: 70px; height: 48vh; opacity: 0.65; filter: drop-shadow(0 0 10px rgba(0,0,0,0.9)); }
    
    .smoke-overlay { background: linear-gradient(to top, rgba(10,10,10,1) 25%, rgba(10,10,10,0.95) 48%, transparent 75%); z-index: 2; }

    .hero-content { margin-top: 36vh; position: relative; z-index: 5; text-align: center; max-width: 850px; padding: 0 20px; pointer-events: auto; }
    .hero-title { font-size: 1.7rem; margin-bottom: 0.6rem; line-height: 1.2; }
    .hero-subtitle { font-size: 0.85rem; margin-bottom: 1.2rem; color: #ddd; padding: 0 15px; line-height: 1.4; }
    
    .hero-buttons { display: flex; flex-direction: column; gap: 12px; max-width: 300px; margin: 0 auto; position: relative; z-index: 10;}
    .hero-buttons .btn { width: 100%; padding: 14px 20px; font-size: 0.85rem; }

    .hero-stats { display: flex; justify-content: center; gap: 5px; padding: 1rem 0.5rem; margin-top: 2.2rem; border-radius: 12px; background: rgba(10,10,10,0.6); border: 1px solid rgba(255,255,255,0.05); width: 100%; }
    .stat-box { flex: 1; font-size: 0.65rem; line-height: 1.2; text-align: center; padding: 0 2px; }
    .stat-box strong { font-size: 1rem; margin-bottom: 3px; display: block; }

    /* FAQ (S.S.S) Mobil Ufak Ayar */
    .faq-item summary { padding: 1rem; font-size: 1rem; }
    .faq-content { padding: 0 1rem 1rem; font-size: 0.85rem; }

    .about-image img { max-width: 300px; margin-bottom: 20px; }

    .section-pad { padding: 4rem 0; }
    .page-header h1 { font-size: 2.2rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    
    .floating-actions { bottom: 15px; right: 15px; }
    .float-btn { width: 45px; height: 45px; }
    .ig-btn { width: 40px; height: 40px; }
    .wa-btn svg { width: 22px; height: 22px; }
    
    .footer-bottom .flex-between { flex-direction: column; text-align: center; gap: 1rem; }
    .legal-links a { margin: 0 0.5rem; }
}