
        :root {
            --primary-color: #0A2647;
            /* Koyu Mavi */
            --secondary-color: #FFD700;
            /* Altın Sarısı */
            --light-gold-color: #ffeca7;
            --text-color: #FFFFFF;
            --background-color: #f8f9fa;
            --dark-text: #333;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--background-color);
            color: var(--dark-text);
        }

        /* Navigasyon Menüsü */
        .navbar {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-color);
            text-decoration: none;
        }

        .nav-logo span {
            color: var(--secondary-color);
        }

        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1rem;
            margin-left: 2rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--secondary-color);
        }

        /* Sayfa Başlığı */
        .page-header {
            text-align: center;
            padding: 4rem 5%;
            background-color: #fff;
        }

        .page-title {
            font-size: 3rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        .page-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 1rem auto 0;
        }

        /* Hizmet Detay Bölümleri */
        .service-detail-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            padding: 4rem 5%;
            max-width: 1200px;
            margin: 2rem auto;
            background: #fff;
            border-radius: 15px;
            box-shadow: 4px 6px 9px black;
        }

        /* Ters yerleşim için */
        .service-detail-section.reverse {
            direction: rtl;
        }

        .service-detail-section.reverse>* {
            direction: ltr;
        }

        .service-image-container img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .service-content h3 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .service-content p {
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .service-features li svg {
            width: 22px;
            height: 22px;
            margin-right: 1rem;
            flex-shrink: 0;
            color: var(--secondary-color);
        }

        /* CTA Bölümü */
        .cta-section {
            text-align: center;
            background: var(--primary-color);
            color: var(--text-color);
            padding: 4rem 5%;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            padding: 15px 35px;
            text-decoration: none;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
            font-size: 1.1rem;
            display: inline-block;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
        }

        /* Scroll Animasyonları */
        .hidden {
            opacity: 0;
            transition: opacity 1s, transform 1s;
        }

        .hidden-left {
            transform: translateX(-50px);
        }

        .hidden-right {
            transform: translateX(50px);
        }

        .show {
            opacity: 1;
            transform: translateX(0);
        }

        @media(max-width: 992px) {

            .service-detail-section,
            .service-detail-section.reverse {
                grid-template-columns: 1fr;
                direction: ltr;
            }

            .service-image-container {
                margin-bottom: 2rem;
            }
        }

        @media(max-width: 768px) {
            .nav-links {
                display: none;
            }

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

            .service-content h3 {
                font-size: 1.8rem;
            }
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
        }

        .logo-img {
            height: 60px;
            /* Sabit yükseklik */
            width: auto;
        }

        /* --- MOBİL UYUMLULUK EKLEMELERİ --- */

        /* Yatay taşmayı engelle (Kamyon animasyonu için kritik) */
        html,
        body {
            overflow-x: hidden;
            width: 100%;
        }

        /* Hamburger Menü Stili (Varsayılan olarak gizli) */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle .bar {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 3px 0;
            transition: 0.4s;
        }

        /* Tablet ve Mobil Ekranlar İçin (992px ve altı) */
        @media screen and (max-width: 992px) {
            .page-title {
                font-size: 2.2rem;
                /* Başlığı küçült */
            }

            .contact-section {
                grid-template-columns: 1fr;
                /* Yan yana olan kutuları alt alta al */
                gap: 2rem;
                padding: 2rem 5%;
            }

            .page-header {
                padding: 3rem 5%;
            }
        }

        /* Mobil Ekranlar İçin (768px ve altı) */
        @media screen and (max-width: 768px) {

            /* Menü İkonunu Göster */
            .menu-toggle {
                display: flex;
                z-index: 1001;
                /* En üstte olsun */
            }

            /* Linkleri Mobilde Düzenle */
            .nav-links {
                display: flex;
                flex-direction: column;
                position: fixed;
                /* Sayfadan bağımsız */
                top: 0;
                right: -100%;
                /* Başlangıçta ekran dışında sağda */
                width: 70%;
                height: 100vh;
                background-color: var(--primary-color);
                justify-content: center;
                align-items: center;
                transition: right 0.4s ease-in-out;
                box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
            }

            .nav-links.active {
                right: 0;
                /* JS ile active sınıfı eklenince ekrana gelir */
            }

            .nav-links a {
                margin: 1.5rem 0;
                font-size: 1.2rem;
                color: #fff;
            }

            /* Hamburger İkon Animasyonu (Çarpı işareti olur) */
            .menu-toggle.is-active .bar:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

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

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

            /* Mobilde Kamyon Biraz Daha Küçük */
            .animated-truck {
                width: 80px;
            }

            /* Form elemanları mobilde daha rahat tıklansın */
            .submit-btn {
                width: 100%;
                text-align: center;
            }
        }
                
/* --- 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 */
    }


   