/* --- 1. Değişkenler ve Global Sıfırlama --- */
        :root {
            --primary-color: #00C2C7;
            --primary-hover: #00E5D4;
            --bg-dark: #0A0F14;
            --bg-card: rgba(15, 23, 30, 0.65);
            --bg-lighter: #111821;
            --text-main: #a2aab7;
            --text-light: #ffffff;
            --font-primary: 'Manrope', sans-serif;
            --font-heading: 'Play', sans-serif;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --container-width: 1200px;
        }

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

        body {
            font-family: var(--font-primary);
            color: var(--text-main);
            background-color: var(--bg-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* --- 2. Yükleniyor (Loader) --- */
        .loader-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--bg-dark);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loader-container.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        .spinner {
            display: flex;
            gap: 6px;
        }

        .spinner > div {
            width: 15px;
            height: 15px;
            background-color: var(--primary-color);
            border-radius: 50%;
            animation: bounce 1.4s infinite ease-in-out both;
        }

        .spinner .bounce1 { animation-delay: -0.32s; }
        .spinner .bounce2 { animation-delay: -0.16s; }

        @keyframes bounce {
            0%, 80%, 100% { transform: scale(0); }
            40% { transform: scale(1.0); }
        }

        /* --- 3. Header & Navigasyon --- */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #0A0F14;
            z-index: 1000;
        }

        .header-container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 18px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            max-height: 42px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            align-items: center;
        }

        .menu-list {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .menu-item {
            position: relative;
        }

        .menu-item > a {
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 600;
            color: var(--text-light);
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 6px;
            letter-spacing: 0.5px;
        }

        .menu-item > a i {
            font-size: 10px;
            transition: transform 0.3s ease;
        }

        @media (min-width: 992px) {
            .menu-item:hover > a {
                color: var(--primary-color);
            }

            .menu-item:hover > a i {
                transform: rotate(180deg);
            }

            .menu-item:hover .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) translateY(0);
            }
        }

        /* Dropdown */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(15px);
            background-color: var(--bg-lighter);
            min-width: 260px;
            border-radius: 6px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            padding: 12px 0;
            z-index: 100;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .dropdown-menu li a {
            display: block;
            padding: 10px 24px;
            color: var(--text-main);
            font-size: 14px;
            font-weight: 500;
        }

        .dropdown-menu li:hover > a {
            background-color: var(--primary-color);
            color: var(--bg-dark);
            padding-left: 28px;
        }

        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 26px;
            cursor: pointer;
            z-index: 1100;
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            transition: var(--transition);
        }

        .menu-overlay.show {
            opacity: 1;
            visibility: visible;
        }
 /* --- Modern Dil Değiştirici (Language Switcher) Tasarımı --- */
.language-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 50px;
    gap: 4px;
    margin-left: 35px;
    backdrop-filter: blur(8px);
}

.language-switcher .lang {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 40px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.5px;
}

/* Üzerine gelindiğinde (Hover) */
.language-switcher .lang:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.08);
}

/* Aktif (Seçili) Olan Dilin Şık Görünümü */
.language-switcher .lang.active {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 4px 12px rgba(0, 194, 199, 0.3);
}

/* Mobildeki Konumu */
@media(max-width: 991px) {
    .language-switcher {
        margin: 25px auto 0 auto;
        padding: 5px;
        width: fit-content;
        border-top: 1px solid rgba(255,255,255,0.08);
        border-left: 1px solid rgba(255,255,255,0.1);
        padding-top: 5px;
    }
}
/* Hero Bölümü İçin Nihai Responsive Ayarı */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 50vh; /* Yüksekliği biraz daha artırdık */
    display: flex;
    align-items: center;
    background-image: linear-gradient(to bottom, rgba(10, 15, 20, 0.7) 0%, rgba(10, 15, 20, 0.3) 60%, rgba(10, 15, 20, 0.95) 100%), 
                      url('../../../images/3b_arazi_bg.webp');
    background-repeat: no-repeat;
    background-position: center center; /* Fotoğrafı merkezle */
    background-size: cover; /* Alanı tamamen doldur */
    padding: 60px 20px; 
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 35vh; /* Mobilde oranları korumak için */
        background-position: 50% 30%; /* Görseli yukarı değil, biraz daha aşağıdan keserek ortala */
    }
}   


/* Hero Bölümü Düzenlemesi */
.hero-section-new {
    position: relative;
    width: 100%;
    height: 50vh; /* İhtiyaca göre 40vh-60vh arası yapabilirsin */
    overflow: hidden;
}

.hero-img-container {
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradyan: Görselin üzerine hafif koyu bir tül atar */
    background: linear-gradient(to bottom, rgba(10, 15, 20, 0.4) 0%, rgba(10, 15, 20, 0.9) 100%);
    pointer-events: none; /* Tıklamaları engellememesi için */
}

/* Mobil için responsive ayarı */
@media (max-width: 991px) {
    .hero-section-new {
        height: 35vh;
    }
    .hero-img {
        object-position: 50% 20%; /* Mobilde odağı kaydırmak istersen */
    }
}
    .header-container {
        padding: 15px 20px;
    }

        .hero-content {
            max-width: var(--container-width);
            width: 100%;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(2.2rem, 5vw, 4.2rem);
            color: var(--text-light);
            line-height: 1.15;
            font-weight: 700;
            margin-bottom: 50px;
            letter-spacing: -0.5px;
        }

        .hero-title span {
            display: block;
        }

        /* Hero 3'lü Kart Yapısı */
        .hero-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            width: 100%;
            margin-top: 20px;
        }

        .hero-card {
            background-color: var(--bg-card);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            padding: 30px;
            text-align: left;
            transition: var(--transition);
        }

        .hero-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .card-icon {
            color: var(--primary-color);
            font-size: 24px;
            margin-bottom: 20px;
        }

        .card-title {
            font-family: var(--font-heading);
            color: var(--text-light);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .card-desc {
            font-size: 13.5px;
            color: var(--text-main);
            line-height: 1.6;
        }

        /* --- 5. İkinci Bölüm: Gerçek İhtiyaçlar --- */
        .section-padding {
            padding: 100px 20px;
            background-color: #ffffff;
            color: #333333;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
        }

        .split-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }

        .split-image img, 
        .split-image video {
            border-radius: 6px;
            width: 100%;
            height: auto;
            display: block;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .split-content h2 {
            font-family: var(--font-heading);
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            color: #111111;
            line-height: 1.25;
            margin-bottom: 24px;
            font-weight: 700;
        }

        .split-content p {
            font-size: 15px;
            color: #555555;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        /* --- 6. Ara Bant (Sonsuz Kayan Marquee) --- */
        .divider-banner {
            background: linear-gradient(90deg, #111111 0%, #1c2630 50%, #111111 100%);
            border-top: 2px solid var(--primary-color);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 24px 0;
            overflow: hidden;
            width: 100%;
            position: relative;
        }

        .divider-marquee {
            display: flex;
            width: 100%;
            overflow: hidden;
        }

        .divider-track {
            display: flex;
            align-items: center;
            gap: 30px;
            white-space: nowrap;
            width: max-content;
            animation: marquee 25s linear infinite;
        }

        .divider-item {
            color: var(--text-light);
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .divider-line {
            width: 30px;
            height: 2px;
            background-color: #8cc63f;
            flex-shrink: 0;
        }

        .divider-item.active {
            color: var(--primary-color);
        }

        @keyframes marquee {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-50%); }
        }

        /* --- 7. Koyu İkili Blok Alanı --- */
        .dark-sections {
            background-color: var(--bg-dark);
            padding: 100px 20px;
        }

        .dark-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 100px;
        }

        .dark-row:last-child {
            margin-bottom: 0;
        }

        .dark-row.reverse {
            direction: rtl;
        }

        .dark-row.reverse .dark-content {
            direction: ltr;
        }

        .dark-content h1,
        .dark-content h3 {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .dark-content h1 span,
        .dark-content h3 span {
            color: rgba(255,255,255,0.3);
        }

        .dark-content p {
            font-size: 14px;
            color: var(--text-main);
            line-height: 1.8;
        }

        .dark-image img,
        .dark-image video {
            border-radius: 5px;
            border: 1px solid rgba(255,255,255,0.05);
            width: 100%;
            height: auto;
            display: block;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        /* --- 8. Altılı Galeri Grid Alanı --- */
        .gallery-section {
            background-color: var(--bg-dark);
            padding: 40px 20px 80px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 6px;
            aspect-ratio: 2 / 3; 
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .gallery-item:hover img {
            transform: scale(1.06);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10, 15, 20, 0.95) 0%, rgba(10, 15, 20, 0.5) 45%, rgba(0, 0, 0, 0) 100%);
            display: flex;
            align-items: flex-end;
            padding: 24px;
            box-sizing: border-box;
        }

        .gallery-content {
            width: 100%;
        }

        .gallery-title {
            font-family: var(--font-heading);
            color: var(--text-light);
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 6px;
            letter-spacing: 0.5px;
        }

        .gallery-desc {
            font-size: 13px;
            color: var(--text-main);
            margin-bottom: 14px;
            line-height: 1.4;
        }

        .gallery-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-color);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 1px solid transparent;
            padding-bottom: 2px;
        }

        .gallery-link i {
            font-size: 11px;
            transition: transform 0.3s ease;
        }

        .gallery-link:hover {
            color: var(--primary-hover);
            border-color: var(--primary-hover);
        }

        .gallery-link:hover i {
            transform: translateX(4px);
        }

        /* --- 9. Call to Action --- */
        .cta-section {
            width: 100%;
            min-height: 480px;
            background: linear-gradient(to right, rgba(255, 255, 255, 0) 45%, #111111 70%, #050505 100%), 
                        url('../../../images/altbanner-2.png') no-repeat left center;
            background-size: cover; 
            background-color: #ffffff;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            position: relative;
            display: flex;
            align-items: center;
        }

        .cta-container {
            max-width: var(--container-width);
            margin: 0 auto;
            width: 100%;
            padding: 0 40px;
            display: flex;
            justify-content: flex-end;
        }

        .cta-box {
            width: 40%; 
            padding: 60px 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            box-sizing: border-box;
            position: relative;
            z-index: 2;
        }

        .cta-box h3 {
            font-family: var(--font-heading);
            font-size: 2.3rem;
            color: #ffffff;
            line-height: 1.3;
            margin-bottom: 35px;
            font-weight: 700;
            max-width: 450px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            border: 1px solid rgba(255, 255, 255, 0.35);
            color: #ffffff;
            padding: 10px 30px;
            border-radius: 50px;
            font-size: 13.5px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #ffffff;
            color: #000000;
            border-color: #ffffff;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
        }
        /* --- 10. Footer --- */
        .main-footer {
            background-color: #06090c;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 60px 20px 40px;
        }

        .footer-container {
            max-width: var(--container-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 40px;
        }

    .footer-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Yazı boyutunu küçülttük */
.footer-info p {
    font-size: 14px; 
    margin: 4px 0;
    line-height: 1.4;
    color: var(--text-main);
}

/* Telefon numarasını e-posta rengiyle (primary-color) eşitledik */
.footer-info .phone-number {
    color: var(--primary-color);
    font-weight: 600;
}

/* Logo boyutunu büyüttük */
.footer-logo img {
    max-width: 200px; /* Logoyu buradan dilediğin gibi daha da büyütebilirsin */
    height: auto;
}

        /* --- 11. Scroll To Top --- */
        .scroll-to-top {
            position: fixed;
            bottom: 25px;
            right: -100px;
            background-color: var(--primary-color);
            color: var(--bg-dark);
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 194, 199, 0.3);
            transition: var(--transition);
            z-index: 998;
        }

        .scroll-to-top.show {
            right: 25px;
        }

        .scroll-to-top:hover {
            background-color: var(--primary-hover);
            transform: translateY(-3px);
        }

        

        
        

        
        

        

        

        

        

        

        

        

        

        

        /* Mobil ve Tablet Tasarım Kuralları */
        @media (max-width: 991px) {
            .mobile-nav-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 70px);
                background-color: var(--bg-lighter);
                padding: 30px 24px 40px;
                transition: var(--transition);
                overflow-y: auto;
                box-shadow: 10px 0 40px rgba(0,0,0,0.6);
                display: block;
                z-index: 1050;
            }

            .nav-menu.open {
                left: 0;
            }

            .menu-list {
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
            }

            .menu-item {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            }

            .menu-item > a {
                padding: 16px 0;
                justify-content: space-between;
                font-size: 16px;
            }

            
            

            

            

            

            

            

            /* Mobilde Standart Alt Menü */
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: transparent;
                border: none;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-out, padding 0.3s ease-out;
            }

            .menu-item.dropdown-active .dropdown-menu {
                max-height: 500px;
                padding: 0 0 15px 15px;
            }

            .menu-item.dropdown-active > a i {
                transform: rotate(180deg);
            }

            .dropdown-menu li a {
                padding: 10px 0;
                color: rgba(255,255,255,0.6);
            }

            /* Kahraman Bölümü Mobilde */
            .hero-section {
                padding-top: 100px;
                min-height: auto;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            /* İki Kolonlu Yapılar */
            .split-grid, .dark-row {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .dark-row.reverse {
                direction: ltr;
            }

            /* Altılı Galeri */
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            /* Uçak Bölümü CTA */
            .cta-container {
                justify-content: center;
                padding: 0 20px;
            }

            .cta-box {
                width: 100%;
                text-align: center;
                align-items: center;
            }

            .cta-box h3 {
                font-size: 1.8rem;
                margin-bottom: 24px;
            }
            
            /* Footer */
            .footer-container {
                flex-direction: column !important;
                align-items: center !important;
                text-align: center;
            }

            .footer-info {
                text-align: center;
                align-items: center;
            }

            .footer-logo img {
                max-width: 160px;
                margin: 0 auto;
            }

            /* Header küçük ekranlarda daha kompakt */
            .header-container {
                padding: 14px 16px;
            }

            .logo img {
                max-height: 34px;
            }
        }

        @media (max-width: 576px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

@media (max-width: 768px) {
    .main-footer .footer-container {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .main-footer .footer-logo,
    .main-footer .footer-info {
        width: 100%;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .main-footer .footer-logo img {
        margin: 0 !important;
    }
}
