/* =======================================================
   1. GENEL AYARLAR (RESET)
   ======================================================= */
:root {
    --gold: #D4AF37;
    --black: #0a0a0a;
    --white: #ffffff;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding-top: 80px; /* Header yüksekliği kadar boşluk */
}

/* Admin Bar Düzeltmesi */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* =======================================================
   2. HEADER İSKELETİ (ORTAK)
   ======================================================= */
.site-header {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--gold);
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo a {
    color: var(--gold);
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
}

/* Randevu Butonu (Genel Stil) */
.cta-btn {
    background-color: var(--gold);
    color: #000;
    padding: 12px 25px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
}

/* Mobil Menü Butonu (Varsayılan Gizli - Sadece Mobilde Çıkacak) */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
}

/* =======================================================
   3. MASAÜSTÜ MENÜ YAPISI (769px ve Üzeri)
   ======================================================= */
@media (min-width: 769px) {
    
    /* Menü Yan Yana */
    .main-navigation .menu-list {
        display: flex;
        gap: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .main-navigation .menu-list > li {
        position: relative; /* Alt menü buna tutunacak */
        padding: 20px 0;
    }

    .main-navigation .menu-list > li > a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
    }

    /* --- AÇILIR MENÜ (DROPDOWN) --- */
    .main-navigation .sub-menu {
        display: none; /* Gizle */
        position: absolute;
        top: 100%; /* Tam altına */
        left: 0;
        width: 220px;
        background-color: #000;
        border-top: 3px solid var(--gold);
        padding: 0;
        list-style: none;
        flex-direction: column;
        box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    }

    /* Hover Olunca Aç */
    .main-navigation li:hover > .sub-menu {
        display: flex;
    }

    .main-navigation .sub-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .main-navigation .sub-menu li a {
        display: block;
        padding: 12px 20px;
        color: #ccc;
        font-size: 13px;
    }

    .main-navigation .sub-menu li a:hover {
        background-color: var(--gold);
        color: #000;
    }
}

/* =======================================================
   4. MOBİL MENÜ YAPISI (768px ve Altı)
   ======================================================= */
@media (max-width: 768px) {

    /* Hamburger Butonunu Göster */
    .menu-toggle {
        display: block;
    }

    /* Masaüstü Randevu Butonunu Gizle */
    .desktop-cta {
        display: none;
    }

    /* Menü Konteynırı (Varsayılan Gizli) */
    .main-navigation {
        display: none; /* JS ile açılacak */
        position: absolute;
        top: 80px; /* Header'ın altı */
        left: 0;
        width: 100%;
        background-color: #000;
        border-top: 1px solid var(--gold);
        padding: 0;
    }

    /* JS ile 'toggled' classı gelince GÖRÜNÜR yap */
    .main-navigation.toggled {
        display: block;
    }

    /* Linkleri Alt Alta Diz */
    .main-navigation .menu-list {
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .main-navigation .menu-list > li {
        border-bottom: 1px solid #222;
        width: 100%;
        text-align: center;
    }

    .main-navigation .menu-list > li > a {
        display: block;
        padding: 15px;
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
    }

    /* Mobil Alt Menü (Hep Açık Dursun - Kullanım Kolaylığı İçin) */
    .main-navigation .sub-menu {
        display: block; 
        background-color: #111;
        padding: 0;
        list-style: none;
    }

    .main-navigation .sub-menu li a {
        color: #aaa;
        font-size: 14px;
        padding: 10px;
    }
}
/* =======================================================
   FULL PAKET ANA SAYFA STİLLERİ (YENİ)
   ======================================================= */

/* GENEL TİPOGRAFİ */
h1, h2, h3 { font-weight: 700; text-transform: uppercase; margin: 0; }
.gold-text, .gold-sub-title { color: var(--gold); }
.gold-sub-title { font-size: 14px; letter-spacing: 2px; font-weight: 600; margin-bottom: 10px; display: block; }
.gold-line { width: 60px; height: 3px; background: var(--gold); margin: 20px auto; }
.section-header.center { text-align: center; margin-bottom: 60px; }

/* 1. HERO SLIDER */
.hero-slider {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: -80px; /* Header arkası */
    padding-top: 80px;
}

.video-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.bg-video {
    width: 100%; height: 100%; object-fit: cover;
}

.overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); /* Daha koyu perde */
}

.slide-text h1 {
    font-size: 3.5rem; color: #fff; margin-bottom: 20px;
    line-height: 1.1;
}
.slide-text p {
    font-size: 1.2rem; color: #ddd; margin-bottom: 40px;
}

/* Butonlar */
.btn-group { display: flex; gap: 20px; justify-content: center; }
.btn-primary {
    background: var(--gold); color: #000; padding: 15px 35px;
    font-weight: bold; text-decoration: none; transition: 0.3s;
}
.btn-primary:hover { background: #fff; }

.btn-outline {
    border: 2px solid #fff; color: #fff; padding: 15px 35px;
    font-weight: bold; text-decoration: none; transition: 0.3s;
}
.btn-outline:hover { background: #fff; color: #000; }

/* Scroll Down Ok */
.scroll-down {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    color: var(--gold); font-size: 24px; animation: bounce 2s infinite;
}
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform:translate(-50%,0);} 40% {transform:translate(-50%,-10px);} 60% {transform:translate(-50%,-5px);} }

/* 2. ABOUT SECTION (YAN YANA) */
.about-section { padding: 100px 0; background: #0a0a0a; }
.split-layout { display: flex; align-items: center; gap: 50px; }
.text-col { flex: 1; }
.image-col { flex: 1; }
.image-col img { width: 100%; border: 1px solid var(--gold); padding: 10px; }
.about-section h2 { font-size: 2.5rem; margin-bottom: 20px; color: #fff; }
.about-section p { color: #ccc; margin-bottom: 30px; }
.check-list { list-style: none; padding: 0; margin-bottom: 30px; }
.check-list li { color: #fff; margin-bottom: 10px; font-size: 1.1rem; }
.btn-text { color: var(--gold); text-decoration: none; font-weight: bold; font-size: 1.1rem; }

/* 3. SERVICES GRID (IZGARA) */
.services-full { padding: 100px 0; background: #111; }
.services-full h2 { color: #fff; font-size: 2.5rem; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #1a1a1a; padding: 40px 30px;
    border: 1px solid #333; transition: 0.3s;
    text-align: center;
}
.service-card:hover { transform: translateY(-10px); border-color: var(--gold); }
.service-card .icon { font-size: 40px; margin-bottom: 20px; }
.service-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 15px; }
.service-card p { color: #999; margin-bottom: 25px; font-size: 0.95rem; }
.read-more { color: var(--gold); text-decoration: none; font-size: 0.9rem; font-weight: bold; border-bottom: 1px solid transparent; transition:0.3s; }
.read-more:hover { border-bottom-color: var(--gold); }

/* 4. STATS SECTION */
.stats-section { padding: 60px 0; background: var(--gold); color: #000; }
.stats-grid { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 30px; }
.stat-item .number { display: block; font-size: 3rem; font-weight: 800; line-height: 1; }
.stat-item .label { font-size: 1rem; font-weight: 600; text-transform: uppercase; }

/* 5. CTA BANNER */
.cta-banner { padding: 100px 0; background: url('https://via.placeholder.com/1920x600/000/333') center/cover fixed; text-align: center; position: relative; }
.cta-banner::before { content:''; position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.8); }
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; font-size: 2.5rem; margin-bottom: 20px; }
.cta-banner p { color: #ccc; font-size: 1.2rem; margin-bottom: 40px; }

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .slide-text h1 { font-size: 2rem; }
    .btn-group { flex-direction: column; }
    .split-layout { flex-direction: column; }
    .stats-grid { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
}