
        /* --- 1. TEMEL AYARLAR VE DEĞİŞKENLER --- */
        :root {
            --primary-dark: #0A2647;
            /* Ana Lacivert */
            --primary-light: #144272;
            /* Açık Lacivert */
            --accent-gold: #FFD700;
            /* Altın */
            --accent-gold-hover: #e6c200;
            --text-dark: #2C3E50;
            /* Koyu Gri Yazı */
            --text-light: #7F8C8D;
            /* Açık Gri Yazı */
            --white: #ffffff;
            --bg-light: #f9fbfd;
            /* Çok açık mavi-gri arka plan */
            --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        /* --- 2. NAVBAR (NAVİGASYON) --- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 38, 71, 0.95);
            /* Hafif şeffaf lacivert */
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-logo img {
            height: 70px;
            width: auto;
        }

        .nav-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 1px;
        }

        .nav-logo-text span {
            color: var(--accent-gold);
        }

        /* Masaüstü Linkler */
        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--white);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: var(--transition);
        }

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

        /* Hamburger Butonu */
        .menu-toggle {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .bar {
            width: 28px;
            height: 3px;
            background-color: var(--white);
            border-radius: 2px;
            transition: var(--transition);
        }

        /* --- 3. HERO SECTION (SAYFA BAŞLIĞI) --- */
        .page-header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
            padding: 140px 5% 80px;
            /* Navbar payı bırakıldı */
            text-align: center;
            color: var(--white);
            clip-path: ellipse(150% 100% at 50% 0%);
            /* Alt kısıma hafif kavis */
        }

        .page-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .page-subtitle {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 300;
        }

        /* --- 4. İÇERİK BÖLÜMLERİ (Izgara Yapısı) --- */
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 5%;
        }

        .split-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        .split-content h3 {
            font-size: 2.2rem;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .split-content h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: -10px;
            width: 50px;
            height: 4px;
            background: var(--accent-gold);
            border-radius: 2px;
        }

        .split-content p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .split-image {
            position: relative;
        }

        .split-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow-card);
            transition: var(--transition);
        }

        .split-image::after {
            /* Resim arkası dekor */
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--accent-gold);
            border-radius: 20px;
            z-index: -1;
        }

        /* Özellik Listesi */
        .feature-list li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .feature-list i {
            color: var(--accent-gold);
            margin-right: 12px;
            font-size: 1.1rem;
            background: rgba(10, 38, 71, 0.1);
            padding: 8px;
            border-radius: 50%;
        }

        /* --- 5. BLOG KARTLARI --- */
        .blog-section {
            background-color: var(--white);
            padding: 5rem 5%;
        }

        .section-title-center {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title-center h2 {
            font-size: 2.5rem;
            color: var(--primary-dark);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .blog-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #eee;
            transition: var(--transition);
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .blog-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-content h4 {
            font-size: 1.2rem;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
        }

        .blog-content p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .read-more {
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 0.9rem;
            margin-top: 1rem;
            display: inline-block;
        }

        /* Açılan İçerik */
        .full-content {
            display: none;
            padding: 0 1.5rem 1.5rem;
            color: var(--text-dark);
            border-top: 1px solid #eee;
        }

        .full-content h5 {
            margin: 1rem 0 0.5rem;
            color: var(--primary-dark);
        }

        .full-content p,
        .full-content li {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }

        /* --- 6. SEO ALANI (Kurumsal Görünüm) --- */
        .seo-box {
            background: var(--primary-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 3rem 5%;
            margin: 4rem auto;
            max-width: 1200px;
            border-radius: 15px;
            text-align: center;
        }

        .seo-box h4 {
            color: var(--white);
            margin-bottom: 1rem;
        }

        .seo-box p {
            font-size: 0.85rem;
            line-height: 1.6;
        }

        /* --- 7. CTA (Çağrı) --- */
        .cta-section {
            background: url('./image/cta-bg.jpg') center/cover no-repeat fixed, linear-gradient(rgba(10, 38, 71, 0.9), rgba(10, 38, 71, 0.9));
            background-blend-mode: overlay;
            color: var(--white);
            text-align: center;
            padding: 6rem 5%;
        }

        .cta-btn {
            background: var(--accent-gold);
            color: var(--primary-dark);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            margin-top: 2rem;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        .cta-btn:hover {
            background: var(--white);
            transform: scale(1.05);
        }

        /* --- 8. FOOTER --- */
        footer {
            background: #051a30;
            color: #aab2bd;
            padding: 4rem 5% 1rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer ul li {
            margin-bottom: 0.8rem;
        }

        .footer a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 3rem;
            padding-top: 1.5rem;
            font-size: 0.9rem;
        }

        /* --- 9. MOBİL UYUMLULUK (RESPONSIVE) --- */
        @media (max-width: 992px) {
            .navbar {
                padding: 1rem 5%;
            }

            .menu-toggle {
                display: flex;
                z-index: 1001;
            }

            /* Mobil Menü Çekmecesi */
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background: var(--primary-dark);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: 0.4s ease-in-out;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 1.5rem;
                margin: 1rem 0;
                color: var(--white);
            }

            .page-title {
                font-size: 2rem;
            }

            .split-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .split-image {
                order: -1;
                /* Resim mobilde üste gelsin */
            }

            .split-image::after {
                display: none;
                /* Mobilde dekoru gizle */
            }

            /* Hamburger Animasyonu */
            .menu-toggle.active .bar:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .menu-toggle.active .bar:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active .bar:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }
        }

                
/* --- CTA & FOOTER --- */
.cta-footer { padding: 100px 5%; text-align: center; background: linear-gradient(to top, #000, var(--bg-color)); }
.big-btn { display: inline-block; margin-top: 30px; font-size: 1.1rem; padding: 20px 60px; }

footer { background: #000; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 80px; }
.footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; padding: 0 10% 80px; gap: 40px; }
.footer-col h3 { font-family: var(--font-heading); font-size: 2rem; color: #fff; margin-bottom: 20px; }
.footer-col h4 { color: var(--primary); margin-bottom: 20px; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 2px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #888; transition: 0.3s; }
.footer-col ul li a:hover { color: #fff; padding-left: 5px; }
.footer-col p { color: #888; margin-bottom: 10px; }
.copyright { text-align: center; padding: 20px; border-top: 1px solid rgba(255,255,255,0.05); color: #555; font-size: 0.8rem; }
@media (max-width: 768px) {
    .footer-container { flex-direction: column; align-items: center; }
    .footer-col { width: 100%; max-width: 400px; text-align: center; }
}

/* --- MOBİL SABİT BUTONLAR --- */

/* Masaüstünde gizle */
.mobile-action-bar {
    display: none;
}

/* Sadece Mobil (768px altı) Ekranlarda Göster */
@media screen and (max-width: 768px) {
    
    /* 1. Alt Barın Kendisi */
    .mobile-action-bar {
        display: flex;
        position: fixed; /* Ekrana sabitler */
        bottom: 0;
        left: 0;
        width: 100%;
        background: #050a10ab;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1); /* Hafif gölge */
        z-index: 999; /* Her şeyin üstünde dursun */
        padding: 10px;
        gap: 10px; /* Butonlar arası boşluk */
    }

    /* 2. Butonların Ortak Özellikleri */
    .action-btn {
        flex: 1; /* Alanı eşit paylaşsınlar */
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        font-family: 'Manrope', sans-serif;
        font-size: 15px;
        transition: transform 0.2s;
    }

    /* 3. Arama Butonu Rengi (Koyu Mavi/Siyah - Markana uygun) */
    .call-btn {
        background-color: orangered; 
        color: white;
    }

    /* 4. WhatsApp Butonu Rengi (Yeşil) */
    .wp-btn {
        background-color: #25D366;
        color: white;
    }
     .insta-btn {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        color: white;
    }

    /* Tıklayınca ufak efekt */
    .action-btn:active {
        transform: scale(0.95);
    }

    /* Alt barın üzerine gelmemesi için sayfanın altına boşluk bırak */
    body {
        padding-bottom: 70px;
    }
    
    /* İstersen üst menüdeki "Hemen Ara" butonunu mobilde tamamen gizleyebilirsin */
    .navbar .cta-nav {
        display: none; 
    }

    /* Swiper Slide İçindeki Resim Ayarı */
.swiper-slide {
    height: 300px; /* Mobilde ideal yükseklik (İstersen artırabilirsin) */
}

/* Masaüstünde daha yüksek olsun */
@media (min-width: 768px) {
    .swiper-slide {
        height: 400px; 
    }
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* SİHİRLİ KOD: Resmi kutuya sığdırır ama asla yamultmaz (kırpar) */
    object-position: center;
    border-radius: 8px; /* Köşeleri yumuşatır */
}
}

#scrollTopBtn {
    display: none; /* Başlangıçta gizli */
    position: fixed;
    bottom: 80px; /* Mobildeki yapışkan menünün üstünde kalsın diye 80px */
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #d4af37; /* Senin altın rengin */
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

#scrollTopBtn:hover { background-color: #333; }
/* 1. Alt Barın Kendisi */
    .mobile-action-bar {
        display: flex;  
        position: fixed; /* Ekrana sabitler */
        bottom: 0;
        left: 0;
        width: 100%;
        background: #050a10ab;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1); /* Hafif gölge */
        z-index: 999; /* Her şeyin üstünde dursun */
        padding: 10px;
        gap: 10px; /* Butonlar arası boşluk */
    }


/* Masaüstünde (769px ve üzeri) alt barı tamamen kapat */
@media screen and (min-width: 769px) {
    .mobile-action-bar {
        display: none !important;
    }
}

/* Sadece mobilde görünmesi için mevcut medya sorgunu şu şekilde netleştir */
@media screen and (max-width: 768px) {
    .mobile-action-bar {
        display: flex !important;
        /* Diğer mevcut flex ve stil ayarların burada kalabilir */
    }
}   