        :root {
            --primary-blue: #1e5aa8;
            --secondary-blue: #2c7bd4;
            --light-blue: #e8f2fb;
            --dark-blue: #0d3b66;
            --white: #ffffff;
            --accent-orange: #ff9f1c;
            --dark-gray: #343a40;
            --nav-height: 80px;
        }

        html,
        body {
            width: 100%;
            margin: 0;
            padding: 0;
            overflow-x: hidden !important;
            position: relative;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
            padding-top: 40px;
        }

        * {
            box-sizing: border-box;
        }

        @media (max-width: 991px) {
            body {
                padding-top: 0;
                /* Mobilde topbar gizlendiği için */
            }

            /* Konteynırın dışına taşan her şeyi budar ve ortalar */
            .container,
            .container-fluid {
                padding-left: 15px !important;
                padding-right: 15px !important;
                width: 100% !important;
                overflow: hidden;
            }

            /* Satırların (row) sağa sola taşmasını engeller */
            .row {
                margin-left: 0 !important;
                margin-right: 0 !important;
                display: flex;
                flex-wrap: wrap;
            }

            /* Hero bölümündeki metinleri ortalar */
            .hero-title,
            .hero-subtitle {
                text-align: center;
                width: 100%;
            }
        }

        /* Top Bar */
        .top-bar {
            background-color: var(--dark-blue);
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1040;
            transition: transform 0.3s ease;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
            font-weight: 700;
        }

        .top-bar a:hover {
            color: var(--accent-orange);
        }

        /* Navbar */
        .navbar {
            background-color: var(--white) !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            padding: 1rem 0;
            top: 40px;
            height: var(--nav-height);
            transition: top 0.3s ease;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.6rem;
            color: var(--primary-blue) !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-link {
            color: var(--dark-gray) !important;
            font-weight: 600;
            padding: 10px 15px !important;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-blue) !important;
        }

        .btn-emergency {
            background-color: var(--accent-orange);
            color: white;
            border: none;
            font-weight: 700;
            transition: all 0.3s;
            animation: pulse-border 2s infinite;
        }

        .btn-emergency:hover {
            background-color: #e88a00;
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Section - Yukarı Kaydırma Düzenlemesi */
        #anasayfa {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            /* Padding-top değerini 140px'den 100px'e çektik */
            padding: 100px 0 80px 0;
            color: var(--white);
            min-height: 80vh;
            /* Ekranı tam kaplayıp içeriği çok aşağı itmemesi için düşürüldü */
            display: flex;
            align-items: flex-start;
            /* İçeriği en üste yaslar */
        }

        /* Başlık satırı üzerindeki ekstra boşluğu sıfırlayalım */
        #anasayfa .row.text-center.mb-1 {
            margin-top: 0 !important;
            padding-top: 0 !important;
        }

        .hero-title {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 500;
            margin-bottom: 0.5rem;
            /* Altındaki boşluğu da daralttık */
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.95;
            margin-bottom: 1.5rem;
            /* Altındaki kartlarla mesafeyi daralttık */
        }

        /* Mobil Düzenleme */
        @media (max-width: 991px) {
            #anasayfa {
                padding-top: 85px;
                /* Mobilde navbar yüksekliğine göre ideal mesafe */
            }
        }

        /* Hero Service Cards */
        .hero-service-card {
            display: flex;
            flex-direction: column;
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: var(--dark-gray);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            height: 100%;
        }

        .hero-service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .hero-service-img {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .hero-service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        @media (min-width: 992px) {
            .hero-service-img {
                height: 280px;
            }

            .hero-service-card {
                min-height: 450px;
            }

            .hero-service-content {
                padding: 1.5rem;
            }

            .hero-service-content h3 {
                font-size: 1.3rem;
                margin-top: 10px;
            }
        }

        .hero-service-card:hover .hero-service-img img {
            transform: scale(1.1);
        }

        .hero-service-content {
            padding: 1.2rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .hero-service-content i {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .hero-service-content h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark-blue);
        }

        .hero-service-content p {
            font-size: 0.9rem;
            color: #666;
            flex-grow: 1;
        }

        /* Buton Hizalama Düzeltmesi */
        .hero-card-btn {
            background: var(--accent-orange);
            color: white;
            padding: 10px 24px;
            border-radius: 50px;
            /* Tam oval olması için artırıldı */
            font-size: 0.9rem;
            font-weight: 700;
            text-decoration: none;
            margin-top: 10px;

            /* İkon ve yazıyı hizalayan sihirli kodlar: */
            display: inline-flex;
            /* İçeriği esnek kutu yapar */
            align-items: center;
            /* Dikeyde tam ortalar (ikon yukarı kaymaz) */
            justify-content: center;
            /* Yatayda ortalar */
            gap: 8px;
            /* İkon ile yazı arasına boşluk koyar */
            white-space: nowrap;
            /* Yazının alt satıra düşmesini engeller */

            transition: all 0.3s ease;
        }

        .hero-card-btn:hover {
            background: #e88a00;
            color: white;
            transform: scale(1.05);
        }

        /* İkonun kendi ayarı (varsa sıfırlayalım) */
        .hero-card-btn i {
            margin: 0;
            /* Gap kullandığımız için margin'e gerek yok */
            font-size: 1rem;
        }

        .hero-main-cta {
            display: inline-block;
            background: var(--accent-orange);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            margin-top: 2rem;
        }

        .hero-main-cta:hover {
            transform: scale(1.05);
            color: white;
            background: #e88a00;
        }

        /* Animations */
        @keyframes pulse-border {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(255, 159, 28, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
            }
        }

        /* Sections */
        section {
            padding: 80px 0;
        }

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

        .section-title h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark-blue);
        }

        /* Service Cards (Main) */
        .service-card {
            padding: 2rem;
            border-radius: 15px;
            background: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: 0.3s;
            border: 1px solid #eee;
            text-align: center;
        }

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

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--light-blue);
            color: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 1.5rem auto;
        }

        /* CTA Strip */
        .cta-strip {
            background-color: var(--accent-orange);
            color: white;
            padding: 40px 0;
        }

        /* Testimonials */
        .testimonial-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            position: relative;
        }

        .stars {
            color: var(--accent-orange);
            margin-bottom: 10px;
        }

        /* Contact & Map */
        #iletisim {
            background: var(--dark-blue);
            color: white;
        }

        .contact-form {
            background: white;
            padding: 30px;
            border-radius: 15px;
            color: var(--dark-gray);
        }

        .btn-submit {
            background: var(--primary-blue);
            color: white;
            width: 100%;
            padding: 12px;
            font-weight: 700;
            border: none;
            border-radius: 8px;
        }

        .btn-submit:hover {
            background: var(--secondary-blue);
        }

        .contact-map {
            width: 100%;
            height: 350px;
            border-radius: 15px;
            border: 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .sticky-call-container {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            display: none;
            z-index: 9999;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        }

        .sticky-call-btn {
            flex: 1;
            color: white;
            text-align: center;
            padding: 15px 5px;
            font-size: 1.1rem;
            font-weight: 800;
            text-decoration: none;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            transition: background 0.3s;
        }

        .btn-left {
            background-color: #28a745;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-right {
            background-color: #218838;
        }

        @media (max-width: 991px) {
            .sticky-call-container {
                display: flex;
            }
        }

        @media (max-width: 991px) {
            body {
                padding-top: 0;
            }

            .top-bar {
                display: none;
            }

            .navbar {
                top: 0;
                padding: 0.5rem 0;
                height: auto;
            }

            .sticky-call-btn {
                display: flex;
                justify-content: center;
                align-items: center;
            }

            #iletisim {
                padding-bottom: 80px;
            }

            /* Butonun altında kalmasın */
            .hero-title {
                margin-top: 20px;
            }
        }

        /* WhatsApp Sabit Buton Tasarımı */
        .whatsapp-sticky {
            position: fixed;
            right: 20px;
            bottom: 30px;
            /* Masaüstü için varsayılan konum */
            width: 60px;
            height: 60px;
            background-color: #25d366;
            color: #fff;
            border-radius: 50px;
            text-align: center;
            font-size: 35px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-sticky:hover {
            background-color: #128c7e;
            color: #fff;
            transform: scale(1.1);
        }

        /* Mobil Cihazlar İçin Ayar */
        @media (max-width: 768px) {
            .whatsapp-sticky {
                /* Sitenizdeki .sticky-call-container yüksekliğine göre (yaklaşık 50-60px) 
           onun 20px üzerinde durması için bottom değerini artırdık */
                bottom: 80px;
                right: 15px;
                width: 50px;
                height: 50px;
                font-size: 30px;
            }
        }

        .custom-video-badge {
            white-space: normal !important;
            /* Metnin alt satıra geçmesine izin ver */
            line-height: 1.2;
            padding: 8px 12px;
            font-size: 0.85rem;
            /* Masaüstü boyutu */
            display: inline-block;
            width: 100%;
            /* Kartın içine tam otursun */
        }

        @media (max-width: 767.98px) {
            .custom-video-badge {
                font-size: 0.70rem !important;
                /* Mobilde yazıyı iyice küçült */
                padding: 5px 5px !important;
                border-radius: 8px !important;
                /* Mobilde çok yuvarlak yerine hafif köşeli daha iyi sığar */
            }

            .card-footer {
                padding: 5px !important;
                /* Mobilde boşlukları daralt */
            }
        }