/* =========================================
   GYMLIFE PREMIUM MODERN CSS - FULL REVIZE
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

:root {
    --primary-neon: #ff003c;
    --primary-dim: rgba(255, 0, 60, 0.3);
    --bg-dark-900: #050505;
    --bg-dark-800: #0d0d0d;
    --text-main: #e0e0e0;
    --glass: rgba(255, 255, 255, 0.03);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark-900);
    color: var(--text-main);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- Preloader Düzeltmesi --- */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #000; z-index: 9999; display: flex; justify-content: center; align-items: center;
    transition: opacity 0.5s ease;
}
.loader-box { text-align: center; }
.loader-text { color: #fff; font-size: 24px; font-weight: 800; letter-spacing: 5px; margin-bottom: 10px; }
.loader-line { width: 0; height: 3px; background: #ff003c; animation: load 2s infinite; }
@keyframes load { 0% { width: 0; } 100% { width: 100%; } }

/* --- Programlar Bölümü Düzenlemesi --- */
.classes-modern { padding: 100px 10%; background: var(--bg-dark-900); text-align: center; }
.expert-note { color: #888; margin-bottom: 50px; font-size: 18px; }
.expert-note strong { color: var(--primary-neon); }

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 sütun yan yana */
    gap: 30px;
}
/* --- Hero Bölümü Temeli --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* --- Video Ayarları ve Puslaştırma (Blur) --- */
.back-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* Hafif puslaştırma efekti */
    filter: blur(4px) brightness(0.8); 
}

/* --- Video Üzerindeki Karartma Katmanı --- */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Degrade geçişli karartma: yazının altında daha koyu olur */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(5,5,5,0.9));
    z-index: -1;
}

/* --- Slogan ve Yazı Tasarımı --- */
.hero-content {
    z-index: 10;
    padding: 0 5%;
}

.hero-badge {
    color: var(--primary-neon);
    letter-spacing: 5px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 2px solid var(--primary-neon);
    padding-bottom: 5px;
}

.hero h1 {
    font-size: clamp(35px, 7vw, 75px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.5px #fff; /* İçi boş, dışı beyaz yazı */
    letter-spacing: 2px;
}

.hero p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* --- Scroll Mouse İkonu --- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}
.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: #ff003c;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollMove 2s infinite;
}
@keyframes scrollMove {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}
.program-card {
    background: var(--bg-dark-800);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.program-card:hover {
    border-color: var(--primary-neon);
    transform: translateY(-10px);
    background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
}

.program-icon { font-size: 40px; color: var(--primary-neon); margin-bottom: 20px; }
.program-card h3 { color: #fff; margin-bottom: 15px; letter-spacing: 1px; }
.program-card p { color: #888; font-size: 14px; line-height: 1.6; }

@media (max-width: 992px) {
    .program-grid { grid-template-columns: 1fr; } /* Mobilde alt alta */
}

/* --- Ultra Modern Navigasyon (Tam Revize) --- */
.navbar {
    position: fixed; top: 0; width: 100%; padding: 25px 10%; display: flex; justify-content: space-between; align-items: center; z-index: 1000;
    transition: 0.5s; background: transparent;
}
.navbar.scrolled { padding: 15px 10%; background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.05); }

.logo { font-size: 26px; font-weight: 800; color: white; text-transform: uppercase; line-height: 1; }
.logo span { color: var(--primary-neon); text-shadow: 0 0 10px var(--primary-neon); }
.logo small { font-size: 10px; display: block; opacity: 0.7; font-weight: 300; letter-spacing: 2px; }

.nav-links { display: flex; list-style: none; gap: 30px; margin: 0; padding: 0; }
.nav-links a { 
    text-decoration: none; color: white; font-size: 14px; font-weight: 500; 
    text-transform: uppercase; transition: 0.3s; opacity: 0.8; 
}
.nav-links a:hover { opacity: 1; color: var(--primary-neon); }

.btn-neon {
    padding: 10px 25px; border: 2px solid var(--primary-neon); color: var(--primary-neon); text-decoration: none; border-radius: 50px;
    font-weight: 600; text-transform: uppercase; font-size: 12px; transition: 0.3s; box-shadow: 0 0 10px var(--primary-dim);
}
.btn-neon:hover { background: var(--primary-neon); color: white; box-shadow: 0 0 20px var(--primary-neon); }

/* --- Hero Bölümü --- */
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.back-video { position: absolute; right: 0; bottom: 0; min-width: 100%; min-height: 100%; z-index: -1; object-fit: cover; }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, var(--bg-dark-900) 90%); z-index: 1; }

.hero-content { z-index: 2; color: white; max-width: 900px; padding: 0 20px; }
.hero h1 { font-size: clamp(40px, 8vw, 80px); font-weight: 800; line-height: 1.1; letter-spacing: -2px; text-transform: uppercase; margin-bottom: 20px; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1.5px white; }

.hero-btns { display: flex; gap: 20px; justify-content: center; margin-top: 40px; }
.btn-primary-modern {
    padding: 18px 40px; background: var(--primary-neon); color: white; text-decoration: none; border-radius: 5px; font-weight: 700;
    text-transform: uppercase; transition: 0.3s; box-shadow: 0 5px 15px rgba(255, 0, 60, 0.4);
}
.btn-primary-modern:hover { transform: translateY(-3px); box-shadow: 0 8px 25px var(--primary-neon); }

.btn-secondary-modern {
    padding: 18px 40px; background: rgba(255,255,255,0.05); color: white; text-decoration: none; border-radius: 5px; font-weight: 700;
    text-transform: uppercase; transition: 0.3s; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.1);
}
.btn-secondary-modern:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

/* --- Bölüm Başlıkları --- */
.section-title {
    font-size: clamp(30px, 5vw, 60px); text-align: center; margin-bottom: 60px; font-weight: 800;
    letter-spacing: 3px; -webkit-text-stroke: 1px rgba(255,255,255,0.1); color: white; text-transform: uppercase;
}

/* --- Fiyatlandırma (3'lü Yan Yana Satır) --- */
.pricing { padding: 100px 10%; background: var(--bg-dark-800); }
.pricing-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    align-items: center;
}

.price-card {
    background: var(--bg-dark-900); padding: 60px 40px; border-radius: 20px; text-align: center; transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.03); position: relative;
}
.price-card:hover { border-color: var(--primary-neon); transform: translateY(-15px); box-shadow: 0 20px 40px rgba(0,0,0,0.6); }

.price-card h3 { font-size: 22px; margin-bottom: 15px; letter-spacing: 1px; }
.price { font-size: 45px; font-weight: 800; color: var(--primary-neon); margin-bottom: 30px; }
.price span { font-size: 14px; color: #888; font-weight: 400; }

.price-card ul { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; }
.price-card ul li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 14px; color: #bbb; }
.price-card ul li i { color: var(--primary-neon); margin-right: 10px; }

.btn-card {
    display: block; padding: 15px; border: 2px solid rgba(255,255,255,0.1); color: white;
    text-decoration: none; border-radius: 5px; font-weight: 700; transition: 0.3s; text-transform: uppercase;
}
.price-card:hover .btn-card { background: var(--primary-neon); border-color: var(--primary-neon); box-shadow: 0 0 20px var(--primary-neon); }

/* --- İletişim ve Form --- */
.contact-modern {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Harita ve Form yan yana */
    gap: 40px;
    padding: 100px 10%;
    background: var(--bg-dark-900);
    align-items: start;
}

@media (max-width: 992px) {
    .contact-modern {
        grid-template-columns: 1fr; /* Mobilde alt alta */
    }
    .map-container {
        height: 350px;
    }
}
.map-container { border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); min-height: 400px; }

.form-container-modern h2 { margin-bottom: 10px; font-size: 32px; }
.form-container-modern p { margin-bottom: 30px; color: #888; }

.input-group { margin-bottom: 25px; }
.input-group input, .input-group textarea {
    width: 100%; background: rgba(255,255,255,0.02); border: none; border-bottom: 2px solid #222;
    padding: 15px; color: white; font-family: inherit; transition: 0.3s;
}
.input-group input:focus, .input-group textarea:focus { 
    outline: none; border-bottom-color: var(--primary-neon); background: rgba(255,255,255,0.05); 
}

.btn-submit-modern {
    width: 100%; padding: 18px; background: var(--primary-neon); border: none; color: white;
    font-weight: 800; text-transform: uppercase; cursor: pointer; transition: 0.3s; border-radius: 5px;
}
.btn-submit-modern:hover { transform: scale(1.02); box-shadow: 0 10px 20px var(--primary-dim); }

/* --- Responsive (Mobil Uyumu) --- */
@media (max-width: 992px) {
    .pricing-grid, .contact-modern { grid-template-columns: 1fr; }
    .nav-links { display: none; } /* Mobil menü buraya eklenebilir */
    .hero h1 { font-size: 40px; }
}
/* --- Footer Tasarımı --- */
.footer-modern {
    background-color: var(--bg-dark-900);
    padding: 80px 10% 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    text-transform: uppercase;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--primary-neon);
}

/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary-neon);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--primary-dim);
}

/* Linkler ve Yazılar */
.footer-section p {
    color: #888;
    line-height: 1.8;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-neon);
    padding-left: 5px;
}

.footer-section i {
    margin-right: 10px;
    color: var(--primary-neon);
}

/* Alt Telif Hakkı Kısmı */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #555;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-icons {
        justify-content: center;
    }
}

/* Hediye Rozeti Ayarı */
.gift-badge {
    display: inline-block;
    background: rgba(255, 0, 60, 0.1);
    color: var(--primary-neon);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px; /* İstediğin gibi ufacık */
    font-weight: 700;
    margin-bottom: 15px;
    border: 1px solid var(--primary-neon);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Kart İçindeki Özellikler Listesi */
.price-card ul.features {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
    text-align: left; /* Özelliklerin düzgün okunması için sola yasladık */
}

.price-card ul.features li {
    color: #bbb;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.price-card ul.features li i {
    color: var(--primary-neon);
    margin-right: 12px;
    font-size: 14px;
}

/* En Çok Tercih Edilen Etiketi */
.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-neon);
    color: white;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 5px;
    white-space: nowrap;
}

.price-card.popular {
    border: 2px solid var(--primary-neon);
    transform: scale(1.05); /* Diğerlerinden hafif büyük dursun */
}

/* --- CTA Hesaplama Reklam Bölümü --- */
.cta-calculator {
    padding: 100px 10%;
    background: linear-gradient(90deg, #050505 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.cta-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.section-title.left {
    text-align: left;
    margin-bottom: 25px;
    font-size: 40px;
}

.cta-content p {
    color: #888;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 17px;
}

.cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.cta-feat-item {
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-feat-item i {
    color: var(--primary-neon);
}

/* Görsel Kart Tasarımı (Sağ Taraf) */
.cta-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.glass-stats-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 0, 60, 0.2);
    padding: 40px;
    border-radius: 30px;
    width: 300px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    transform: rotate(5deg);
    transition: 0.5s;
}

.glass-stats-card:hover {
    transform: rotate(0deg) scale(1.05);
    border-color: var(--primary-neon);
}

.stat-line {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stat-line span { color: #555; font-weight: 700; }
.stat-line strong { color: var(--primary-neon); font-size: 18px; }

.status-indicator {
    margin-top: 20px;
    text-align: center;
    background: var(--primary-neon);
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
}

/* Buton Nabız Animasyonu */
.pulse-btn {
    animation: shadow-pulse 2s infinite;
}

@keyframes shadow-pulse {
    0% { box-shadow: 0 0 0 0px rgba(255, 0, 60, 0.4); }
    100% { box-shadow: 0 0 0 20px rgba(255, 0, 60, 0); }
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .cta-container { grid-template-columns: 1fr; text-align: center; }
    .section-title.left { text-align: center; }
    .cta-features { justify-content: center; }
    .cta-visual { margin-top: 50px; }
}

