   /* --- Temel Renkler ve Genel Ayarlar --- */
        :root {
            --primary-red: #e60000;
            --dark-red: #c00000;
            --dark-grey: #1a1a1a;
            --light-grey: #f8f8f8;
            --text-color: #333;
            --white: #fff;
        }

        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            background: var(--light-grey);
            color: var(--text-color);
            padding-top: 120px; /* Top-bar (40px) + Navbar (min-height 80px) = 120px */
            overflow-x: hidden; /* Yatay kaydırmayı engelle */
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--dark-grey);
        }

        a {
            color: var(--primary-red);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--dark-red);
            text-decoration: none;
        }

        /* --- Üst Bilgi Barı (Top Bar) --- */
        .top-bar {
            background-color: var(--dark-grey);
            color: var(--white);
            font-size: 0.9rem;
            padding: 0.4rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1050;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between; /* İçeriği iki yana yasla */
            box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Hafif gölge */
        }
        .top-bar .container {
            height: 100%; /* İçerik dikeyde ortalanacak */
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .top-bar a {
            color: var(--white);
            font-size: 0.9rem;
        }
        .top-bar a:hover {
            color: var(--primary-red);
        }
        .social-icon {
            color: var(--primary-red); /* Kırmızı renk */
            font-size: 1.1rem;
            margin-left: 15px; /* İkonlar arası boşluk */
            transition: transform 0.2s, color 0.2s;
        }
        .social-icon:hover {
            color: var(--white);
            transform: scale(1.1);
        }

        /* --- Navbar --- */
        .navbar {
            min-height: 80px;
            position: fixed;
            top: 40px; /* Top-bar'ın hemen altında başlasın */
            width: 100%;
            z-index: 1040;
            background-color: var(--white);
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease-in-out; /* Yumuşak geçişler */
        }
        .navbar-brand img {
            height: 70px;
            transition: all 0.3s ease-in-out;
        }

        /* Navbar kaydığında */
        .navbar-scrolled {
            top: 0;
            min-height: 60px; /* Kayınca daha kompakt olsun */
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        .navbar-scrolled .navbar-brand img {
            height: 50px;
        }
        .navbar-scrolled .nav-link {
            padding: 15px 25px !important; /* Kayınca padding azalsın */
        }

        .navbar-nav .nav-item {
            margin-right: 10;
        }
        .navbar-nav .nav-link {
            font-weight: 600;
            color: var(--text-color);
            padding: 25px 25px; /* Menü öğeleri arasındaki boşluğu artırdık */
            transition: all 0.3s ease-in-out;
            position: relative;
            display: flex;
            align-items: center;
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-red);
            background-color: var(--light-grey);
        }
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background-color: var(--primary-red);
            transition: width 0.3s ease-in-out;
        }
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 100%;
        }
       
        /* Dropdown öğeleri arasına ayraç koyma */
        .navbar-nav .nav-item.dropdown .nav-link::before {
            content: none;
        }
        .navbar-nav .nav-item.dropdown:not(:last-child) .nav-link::before {
            content: ''; /* Dropdown item sonuncusu değilse ayraç koy */
        }
        .navbar-nav .nav-item:last-child .nav-link::before {
            content: none; /* Son öğede ayraç olmasın */
        }


        /* Dropdown menüler (masaüstü) */
        @media (min-width: 992px) {
            .hover-dropdown:hover > .dropdown-menu {
                display: block;
                margin-top: 0;
                animation: fadeIn 0.3s ease-in-out;
                border-top: 3px solid var(--primary-red);
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                padding: 10px 0;
                border-radius: 0 0 8px 8px;
            }
            .dropdown-menu {
                border: none;
            }
            .dropdown-item {
                padding: 10px 20px;
                transition: background-color 0.2s ease, color 0.2s ease;
            }
            .dropdown-item:hover {
                background-color: var(--primary-red);
                color: var(--white);
            }
        }
        
        /* Animasyon Keyframes */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- SIDEBAR (Mobil Menü) --- */
        .sidebar {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100%;
            background-color: var(--white);
            box-shadow: 2px 0 15px rgba(0,0,0,0.3);
            transition: left 0.3s ease-in-out;
            z-index: 1050;
            display: flex;
            flex-direction: column;
        }
        .sidebar.open {
            left: 0;
        }
        .menu-header {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eee;
        }
        .menu-links {
            list-style: none;
            padding: 20px 0;
            flex-grow: 1;
        }
        .menu-links li {
            margin-bottom: 0;
            border-bottom: 1px solid #eee;
            padding-bottom: 0;
        }
        .menu-links li:last-child {
            border-bottom: none;
        }
        .menu-links a, .submenu-toggle {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            display: block;
            padding: 18px 20px; /* Üstten ve alttan boşluk */
            cursor: pointer;
            transition: background-color 0.2s ease, color 0.2s ease;
        }
        .menu-links a:hover, .submenu-toggle:hover {
            color: var(--primary-red);
            background-color: var(--light-grey);
        }
        .submenu {
            list-style: none;
            padding-left: 0;
            max-height: 0; /* Animasyon için */
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: #f9f9f9;
            border-top: 1px solid #eee;
        }
        .submenu li {
            border-bottom: none;
        }
        .submenu li a {
            padding-left: 40px;
            font-weight: 400;
            font-size: 0.95rem;
            padding-top: 10px;
            padding-bottom: 10px;
        }
        .submenu-toggle i {
            float: right;
            transition: transform 0.3s ease-in-out;
        }
        .submenu-toggle.active i {
            transform: rotate(180deg);
        }
        .close-button {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-color);
        }
        .contact-info {
            padding: 15px;
            border-top: 1px solid #ddd;
            font-size: 0.9rem;
            background-color: var(--light-grey);
        }
        .contact-info p i {
            color: var(--primary-red);
        }
        .contact-info a {
            color: var(--text-color);
            text-decoration: none;
        }
        .contact-info a:hover {
            color: var(--primary-red);
        }
        body.menu-open {
            overflow: hidden;
        }
        .menu-button-black i {
            color: var(--dark-grey);
            font-weight: 900;
            font-size: 1.8rem;
        }

        /* --- Genel İçerik Bölüm Ayarları --- */
        .section-gap {
            padding: 80px 0; /* Bölümler arası boşluk */
        }
        .section-heading {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-heading h2 {
            color: var(--primary-red);
            font-size: 2.8rem;
            margin-bottom: 15px;
        }
        .section-heading p {
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* --- Kart Stilleri (Feature Box, Detail Box) --- */
        .feature-box, .detail-box, .contact-card {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            padding: 35px;
            height: 100%;
            transition: all 0.3s ease-in-out;
            display: flex;
            flex-direction: column;
            align-items: center; /* İçeriği ortala */
            text-align: center;
        }
        .feature-box:hover, .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }
        .feature-box i {
            color: var(--primary-red);
            font-size: 4rem;
            margin-bottom: 25px;
        }
        .feature-box h5 {
            color: var(--dark-grey);
            font-weight: 700;
            margin-bottom: 15px;
        }
        .feature-box p {
            color: #555;
            flex-grow: 1;
        }
        .feature-box .btn-link-more {
            color: var(--primary-red);
            font-weight: 600;
            margin-top: 15px;
            display: inline-block;
            text-decoration: none;
        }
        .feature-box .btn-link-more:hover {
            color: var(--dark-red);
            text-decoration: underline;
        }

        .detail-box {
            border-left: 5px solid var(--primary-red);
            text-align: left;
            align-items: flex-start;
        }
        .detail-box i {
            color: var(--primary-red);
            font-size: 2.5rem;
            margin-right: 20px;
            flex-shrink: 0;
        }
        .detail-box h4 {
            color: var(--dark-grey);
            font-weight: 600;
        }
        .detail-box p {
            color: #555;
        }

        /* --- Hakkımızda Bölümü --- */
        .about-us-content {
            padding: 40px;
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            text-align: center;
        }
        .about-us-content h2 {
            color: var(--primary-red);
            margin-bottom: 20px;
        }
        .about-us-content p {
            color: #555;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
        }
        .about-us-content .btn-about {
            background-color: var(--primary-red);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            margin-top: 30px;
        }
        .about-us-content .btn-about:hover {
            background-color: var(--dark-red);
            transform: translateY(-2px);
        }

        /* --- Slider Ayarları (Kapsamlı) --- */
        .carousel-item {
            height: 600px; /* Masaüstü yüksekliği */
        }

        .hero {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center center;
            position: relative;
            display: flex;
            align-items: center; /* İçeriği dikeyde ortala */
            justify-content: center; /* İçeriği yatayda ortala */
            text-align: center;
        }

        .overlay-dark { /* Yazıların okunurluğu için koyu overlay */
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.4); /* %40 siyahlık */
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 2; /* Yazılar overlay'in üzerinde kalsın */
            padding-bottom: 0 !important; /* Dikeyde ortaladığımız için pb-5'i sıfırla */
        }

        .hero h1 {
            font-size: 3.5rem; /* Büyük başlık */
            font-weight: 800; /* Daha kalın */
            margin-bottom: 15px;
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Okunurluğu artırmak için gölge */
        }

        .hero p.lead {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .btn-brand {
            background-color: var(--primary-red);
            color: var(--white);
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.3s ease;
            display: inline-block; /* Margin-top için gerekli */
        }

        .btn-brand:hover {
            background-color: var(--dark-red);
            color: var(--white);
            transform: translateY(-2px);
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 5%; /* Daha ince kontrol alanı */
        }
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: var(--primary-red); /* Okların rengi kırmızı */
            border-radius: 50%;
            padding: 15px; /* Boyutunu büyütmek için */
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }
        .carousel-control-prev-icon:hover,
        .carousel-control-next-icon:hover {
            opacity: 1;
        }
.large-service-carousel .item {
    padding: 10px; /* Kutu etrafında boşluk */
}

.service-card-large {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    position: relative;
    height: 450px; /* Büyük kart yüksekliği */
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease-in-out;
}
.service-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.service-card-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    transition: transform 0.4s ease-in-out;
}
.service-card-large:hover img {
    transform: scale(1.05);
}
.service-card-large .card-content {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.0) 100%); /* Metin altta daha belirgin olsun */
    color: var(--white);
    z-index: 2;
    text-align: left;
}
.service-card-large h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.service-card-large p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}
.service-card-large span {
    display: inline-block;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
}
.service-card-large span i {
    transition: margin-left 0.3s ease-in-out;
}
.service-card-large:hover span i {
    margin-left: 5px;
}

/* Owl Carousel özel nav stilizasyonu */
.owl-carousel .owl-nav button {
    background: var(--primary-red) !important;
    color: var(--white) !important;
    border-radius: 50% !important;
    width: 45px !important;
    height: 45px !important;
    line-height: 45px !important;
    font-size: 1.4rem !important;
    transition: background-color 0.3s ease !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 !important;
}
.owl-carousel .owl-nav button:hover {
    background: var(--dark-red) !important;
}
.owl-carousel .owl-nav .owl-prev {
    left: -60px;
}
.owl-carousel .owl-nav .owl-next {
    right: -60px;
}
.owl-carousel .owl-dots {
    margin-top: 25px;
}
.owl-carousel .owl-dot span {
    background: #ccc !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 6px !important;
    transition: background-color 0.3s ease !important;
}
.owl-carousel .owl-dot.active span {
    background: var(--primary-red) !important;
}

/* Responsive Ayarlamalar (Kapsamlı Hizmetler Carousel için) */
@media (max-width: 991.98px) {
    .service-card-large {
        height: 380px; /* Mobilde kart yüksekliği */
        margin-bottom: 20px; /* Owl Carousel dışındaki boşluk */
    }
    .large-service-carousel .item {
        padding: 0; /* Boşluğu kaldır */
    }
    .service-card-large h3 {
        font-size: 1.7rem;
    }
    .service-card-large p {
        font-size: 1rem;
    }
    .owl-carousel .owl-nav button {
        width: 35px !important;
        height: 35px !important;
        line-height: 35px !important;
        font-size: 1rem !important;
        margin: 0 5px !important;
        position: static;
        transform: none;
    }
    .owl-carousel .owl-nav {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
        margin: 0 10px !important;
    }
    .owl-carousel .owl-dots {
        margin-top: 15px !important;
    }
}

@media (max-width: 767.98px) {
    .service-card-large {
        height: 320px;
    }
    .service-card-large h3 {
        font-size: 1.4rem;
    }
    .service-card-large p {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .service-card-large {
        height: 280px;
    }
    .service-card-large h3 {
        font-size: 1.2rem;
    }
    .service-card-large p {
        font-size: 0.8rem;
    }
}
        /* --- Kapsamlı Hizmet Alanları (Yeni büyük kutular) --- */
        .large-service-carousel .item {
            padding: 10px; /* Kutu etrafında boşluk */
        }
        .service-card-large {
            display: block;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            position: relative;
            height: 400px; /* Büyük kart yüksekliği */
            text-decoration: none;
            color: var(--text-color);
            transition: transform 0.3s ease-in-out;
        }
        .service-card-large:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        .service-card-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0; left: 0;
            transition: transform 0.4s ease-in-out;
        }
        .service-card-large:hover img {
            transform: scale(1.05);
        }
        .service-card-large .card-content {
            position: absolute;
            bottom: 0; left: 0;
            width: 100%;
            padding: 25px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.0) 100%); /* Metin altta daha belirgin olsun */
            color: var(--white);
            z-index: 2;
            text-align: left;
        }
        .service-card-large h3 {
            color: var(--white);
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .service-card-large p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        .service-card-large span {
            display: inline-block;
            color: var(--primary-red);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
        }
        .service-card-large span i {
            transition: margin-left 0.3s ease-in-out;
        }
        .service-card-large:hover span i {
            margin-left: 5px;
        }

        /* --- Faaliyet Alanlarımız (Home Page Accordion yerine Feature Box) --- */
        .activity-accordion .card-header { /* Bu kural artık kullanılmıyor olabilir, kaldırılabilir */
            /* ... */
        }

        /* --- İletişim Bölümü (Home Page) --- */
        .contact-section-home {
            padding: 80px 0;
            background-color: var(--light-grey);
        }
        .contact-section-home h2 {
            color: var(--primary-red);
            text-align: center;
            margin-bottom: 50px;
        }
        .contact-card {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            padding: 35px;
            height: 100%;
            transition: all 0.3s ease-in-out;
        }
        .contact-card h3 {
            color: var(--primary-red);
            margin-bottom: 25px;
            font-weight: 700;
            text-align: center;
        }
        .contact-info-list .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color: #555;
            font-size: 1rem;
            line-height: 1.4;
        }
        .contact-info-list .info-item i {
            font-size: 1.8rem;
            color: var(--primary-red);
            margin-right: 15px;
            width: 30px;
            text-align: center;
            flex-shrink: 0;
        }
        .contact-form .form-label {
            color: var(--dark-grey);
            font-weight: 600;
            margin-bottom: 8px;
        }
        .contact-form .form-control {
            border-radius: 5px;
            border: 1px solid #ddd;
            padding: 10px 15px;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .contact-form .form-control:focus {
            border-color: var(--primary-red);
            box-shadow: 0 0 0 0.25rem rgba(230, 0, 0, 0.25);
        }
        .contact-form .btn-submit {
            background-color: var(--primary-red);
            color: var(--white);
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s ease, transform 0.3s ease;
            width: 100%;
            margin-top: 20px;
        }
        .contact-form .btn-submit:hover {
            background-color: var(--dark-red);
            transform: translateY(-2px);
        }
.footer-map-container { /* Bu class'ı haritanızı içeren div'e verebilirsiniz */
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
        .map-container {
            margin-top: 40px;
        }
   .map-responsive {
    position: relative;
    overflow: hidden;
    width: 100%;
    
    /* Mobil cihazlar için yükseklik */
    height: 350px; 
    
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
       .map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
@media (min-width: 992px) {
    .map-responsive {
        /* Masaüstünde haritanın çok yüksek olmasını engellemek için 
           oranı düşürüyoruz. %40 ideal bir başlangıç noktasıdır. */
        padding-bottom: 40%; 
    }
}
        /* --- Footer --- */
        footer {
            background-color: var(--dark-grey);
            color: var(--white);
            padding: 40px 0;
            font-size: 0.9rem;
        }
        footer h5 {
            color: var(--primary-red);
            font-weight: 700;
            margin-bottom: 20px;
        }
        footer ul {
            list-style: none;
            padding: 0;
        }
        footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer ul li a:hover {
            color: var(--primary-red);
        }
        .footer-social-icons a {
            color: var(--white);
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s ease;
        }
        .footer-social-icons a:hover {
            color: var(--primary-red);
        }

        /* --- Responsive Ayarlamalar --- */
        @media (max-width: 991.98px) { /* Bootstrap'ın lg breakpoint'i (992px öncesi) */
            body {
                padding-top: 110px; /* Mobil: Top-bar (40px) + Navbar (min-height 70px) = 110px */
            }
            .navbar {
                min-height: 70px;
                top: 40px;
            }
            .navbar-brand img {
                height: 55px;
            }
            .navbar-scrolled .navbar-brand img {
                height: 45px; /* Mobilde kayınca daha da küçülsün */
            }
            .navbar-nav .nav-link {
                padding: 18px 20px !important;
            }
            .top-bar {
                height: 40px;
            }
            /* Slider */
            .carousel-item {
                height: 400px; /* Mobilde slider yüksekliği */
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p.lead {
                font-size: 1.2rem;
                display: block !important; /* Mobilde lead paragrafı tekrar göster */
            }
            .btn-brand {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            .carousel-control-prev,
            .carousel-control-next {
                width: 8%; /* Mobilde okların genişliği */
            }
            .carousel-control-prev-icon,
            .carousel-control-next-icon {
                padding: 10px; /* Mobilde okların boyutu */
            }

            /* Section padding */
            .section-gap {
                padding: 50px 0;
            }
            .section-heading h2 {
                font-size: 2.2rem;
            }
            .section-heading p {
                font-size: 1rem;
            }
            /* Kapsamlı Hizmetler Carousel (mobil) */
            .large-service-carousel .item {
                padding: 0; /* Boşluğu kaldır */
            }
            .service-card-large {
                height: 350px;
                margin-bottom: 20px; /* Owl Carousel dışındaki boşluk */
            }
            .service-card-large h3 {
                font-size: 1.5rem;
            }
            .service-card-large p {
                font-size: 0.9rem;
            }
            .owl-carousel .owl-nav button {
                width: 35px !important;
                height: 35px !important;
                line-height: 35px !important;
                font-size: 1rem !important;
                margin: 0 5px !important;
                position: static;
                transform: none;
            }
            .owl-carousel .owl-nav {
                display: flex;
                justify-content: center;
                margin-top: 20px;
            }
            .owl-carousel .owl-nav .owl-prev,
            .owl-carousel .owl-nav .owl-next {
                margin: 0 10px !important;
            }
            .owl-carousel .owl-dots {
                margin-top: 15px !important;
            }
            /* Contact */
            .contact-card {
                padding: 25px;
            }
            .contact-card h3 {
                font-size: 1.5rem;
            }
            .map-container {
                margin-top: 30px;
            }
        }

        @media (max-width: 575.98px) { /* Bootstrap'ın sm breakpoint'i */
            .carousel-item {
                height: 300px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero p.lead {
                display: none !important; /* En küçük ekranda lead'i gizle */
            }
            .btn-brand {
                padding: 6px 15px;
                font-size: 0.8rem;
            }
            .navbar-brand img {
                height: 50px;
            }
            .navbar-scrolled .navbar-brand img {
                height: 45px;
            }
            .navbar {
                min-height: 60px;
            }
            .navbar-scrolled {
                min-height: 55px;
            }
            body {
                padding-top: 100px; /* Top-bar(40) + Navbar(60) */
            }
            .mobile-only-contact-info {
                font-size: 0.8rem;
            }
            .section-gap {
                padding: 40px 0;
            }
            .section-heading h2 {
                font-size: 1.8rem;
            }
            .section-heading p {
                font-size: 0.9rem;
            }
            .feature-box i {
                font-size: 3rem;
            }
            .service-card-large {
                height: 280px;
            }
            .service-card-large h3 {
                font-size: 1.2rem;
            }
            .service-card-large p {
                font-size: 0.8rem;
            }
      .footer {  
    display: block;  
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
		 