:root {
            --logo-yesil: #2D5A3F;
            --logo-turuncu: #E67E22;
            --logo-turuncu-koyu: #d35400;
            --gri-acik: #f8f9fa;
            --gri-koyu: #2c3e2f;
            --shadow-yumusak: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            --transition-hiz: 0.25s ease;
        }

        body {
            font-family: 'Inter', 'Segoe UI', sans-serif;
            background-color: #ffffff;
           
            overflow-x: hidden;
        }

        /* Tipografi iyileştirmeler */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        /* Navbar gelişmiş */
        .navbar {
            background-color: rgba(255, 255, 255, 0.98) !important;
            backdrop-filter: blur(12px);
            border-bottom: 2px solid rgba(230, 126, 34, 0.2);
            padding: 0.6rem 2rem;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.4rem 2rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }

        .navbar-brand {
            font-size: 1.6rem;
            font-weight: 800;
        }
        .navbar-brand i {
            font-size: 1.8rem;
        }

        .nav-link {
            font-weight: 600;
            color: var(--logo-yesil) !important;
            margin: 0 0.2rem;
            padding: 0.6rem 1rem;
            border-radius: 40px;
            transition: all 0.2s;
        }
        .nav-link:hover, .nav-link.active {
            background-color: rgba(230, 126, 34, 0.1);
            color: var(--logo-turuncu) !important;
        }

        .btn-turuncu {
            background: linear-gradient(135deg, var(--logo-turuncu) 0%, var(--logo-turuncu-koyu) 100%);
            color: white;
            border-radius: 50px;
            padding: 10px 28px;
            font-weight: 600;
            border: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn-turuncu:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 20px -12px rgba(230, 126, 34, 0.5);
            color: white;
        }
        .btn-outline-turuncu {
            border: 2px solid var(--logo-turuncu);
            background: transparent;
            color: var(--logo-turuncu);
            border-radius: 50px;
            padding: 8px 24px;
            font-weight: 600;
            transition: all 0.2s;
        }
        .btn-outline-turuncu:hover {
            background: var(--logo-turuncu);
            color: white;
        }

        /* Hero slider */
        .carousel-item {
            height: 600px;
            background-size: cover;
            background-position: center 30%;
            position: relative;
        }
        .carousel-item::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
        }
        .carousel-caption {
            background: transparent;
            backdrop-filter: none;
            bottom: 25%;
            text-align: left;
            left: 8%;
            right: auto;
            max-width: 550px;
            padding: 0;
        }
        .carousel-caption h1 {
            font-size: 3.3rem;
            font-weight: 800;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        @media (max-width: 768px) {
            .carousel-item { height: 480px; }
            .carousel-caption h1 { font-size: 2rem; }
            .carousel-caption { bottom: 20%; left: 5%; }
        }

        /* Hizmet kartları */
        .service-card {
            background: white;
            border-radius: 28px;
            padding: 2rem 1.2rem;
            text-align: center;
            transition: all 0.3s;
            box-shadow: var(--shadow-yumusak);
            border: 1px solid rgba(0,0,0,0.03);
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 35px -12px rgba(46, 87, 62, 0.2);
            border-color: rgba(230,126,34,0.2);
        }
        .service-icon {
            background: rgba(230,126,34,0.12);
            width: 80px;
            height: 80px;
            line-height: 80px;
            text-align: center;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: var(--logo-turuncu);
            transition: 0.2s;
        }
        .service-card:hover .service-icon {
            background: var(--logo-turuncu);
            color: white;
        }

        /* Neden Biz bölümü */
        .whyus-item {
            padding: 0.8rem 0;
            border-bottom: 1px dashed rgba(0,0,0,0.05);
        }
        .whyus-item i {
            font-size: 1.8rem;
            color: var(--logo-turuncu);
            min-width: 48px;
        }

        /* Müşteri yorumları */
        .testimonial-card {
            background: #ffffff;
            border-radius: 30px;
            padding: 2rem;
            box-shadow: var(--shadow-yumusak);
            margin: 0.5rem;
            height: 100%;
            transition: 0.2s;
            border: 1px solid #f0ede8;
        }
        .testimonial-card i.bi-quote {
            font-size: 2.5rem;
            color: var(--logo-turuncu);
            opacity: 0.3;
        }

        /* Blog kartları */
        .blog-card {
            border: none;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: var(--shadow-yumusak);
        }
        .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.12);
        }
        .blog-card img {
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .blog-card:hover img {
            transform: scale(1.03);
        }

        /* Yukarı çık butonu */
        .go-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--logo-turuncu);
            width: 48px;
            height: 48px;
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.6rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 99;
            border: none;
        }
        .go-top.show {
            opacity: 1;
            visibility: visible;
        }
        .go-top:hover {
            background: var(--logo-turuncu-koyu);
            transform: scale(1.05);
        }

        footer {
            background-color: #0f1f17;
        }
        footer a {
            transition: all 0.2s;
        }
        
        .beyaz{
            color: white;
        }

         /* Blog Detay Sayfası İçin Ek Dokunuşlar (Senin stiline uygun) */
        .blog-content-wrapper { padding: 60px 0; }
        .article-main {
            background: white;
            border-radius: 28px;
            padding: 30px;
            box-shadow: var(--shadow-yumusak);
            border: 1px solid rgba(0,0,0,0.03);
        }
        .article-image {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 24px;
            margin-bottom: 30px;
        }
        .sidebar-item {
            background: var(--gri-acik);
            border-radius: 24px;
            padding: 25px;
            margin-bottom: 30px;
        }

        
        /* --- HABER İÇERİK --- */
        .article-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 25px rgba(0,0,0,0.05); }
        .article-content { padding: 40px; }
        .article-title { color: var(--primary-dark); font-weight: 800; font-size: 2.2rem; line-height: 1.2; }
        .article-meta { font-size: 14px; color: #777; border-bottom: 1px solid #eee; padding-bottom: 20px; margin-bottom: 25px; }
        .content-text { line-height: 1.8; color: #333; font-size: 1.1rem; }
        .content-text h3 { color: var(--primary-dark); font-weight: 700; margin: 35px 0 15px; border-left: 5px solid var(--accent-orange); padding-left: 15px; }
        
        

        /* İLETİŞİM ALANI */
        .contact-container { padding: 60px 0; }
        .info-box { background: var(--primary-dark); color:#000; border-radius: 10px; padding: 40px; height: 100%; }
        .form-box { background: white; border-radius: 10px; padding: 40px; border-top: 5px solid var(--accent-orange); box-shadow: 0 5px 15px rgba(0,0,0,0.05); height: 100%; }
        .form-control { background: #f8f9fa; border: 1px solid #ddd; padding: 12px; }


   @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* WhatsApp Sabit Buton Stili */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background-color: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .whatsapp-float:hover {
            background-color: #20ba5a;
            color: white;
            transform: scale(1.05);
        }

        


        /* BLOG DETAY İÇİN EK ÖZEL STİLLER */
        .blog-wrapper { background: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); overflow: hidden; }
        .blog-main-img { width: 100%; height: 400px; object-fit: cover; }
        .blog-inner-content { padding: 40px; }
        .blog-inner-content h1 { color: var(--primary-dark); font-weight: 700; margin-bottom: 20px; }
        .blog-meta-info { font-size: 14px; color: #888; border-bottom: 1px solid #eee; padding-bottom: 20px; margin-bottom: 30px; }
        .blog-text { line-height: 1.9; color: #444; font-size: 17px; }
        
        .sidebar-card { background: white; padding: 25px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin-bottom: 30px; border-top: 4px solid var(--accent-orange); }
        .sidebar-title { color: var(--primary-dark); font-weight: 700; margin-bottom: 20px; font-size: 18px; }

        /* FOOTER STİLLERİNİZ */
        footer { background: #1a252f; color: #ecf0f1; padding-top: 50px; border-top: 6px solid var(--accent-orange); margin-top: 60px; }
        .footer-title { color: var(--accent-orange); font-weight: bold; margin-bottom: 25px; border-left: 4px solid var(--accent-orange); padding-left: 15px; }
        footer a { color: #bdc3c7; text-decoration: none; transition: 0.3s; }
        footer a:hover { color: var(--accent-orange); padding-left: 5px; }

        @media (max-width: 768px) {
            .blog-main-img { height: 250px; }
            .logo-text { text-align: center; }
        }

/***********************************************/
/* Galeri Kartları */
    .gallery-card {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        height: 280px;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        margin-bottom: 20px;
    }

    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .gallery-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    
    .gallery-card:hover img {
        transform: scale(1.08);
    }
    
    .image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        color: white;
        padding: 20px;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .gallery-card:hover .image-overlay {
        transform: translateY(0);
        opacity: 1;
    }



.category-btn {
    background: none;
    border: 2px solid #ddd;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    color: #555;
    transition: all 0.3s;
    cursor: pointer;
    min-height: 44px;
    /* Metnin taşmasını engelle, otomatik kır */
    white-space: normal;
    word-break: keep-all; /* Türkçe için kelimeleri bölme, istenirse break-word */
    text-align: center;
    /* Butonların esnek büyümesine izin ver ama çok küçülmesini engelle */
    flex: 0 0 auto;
}

/* Küçük ekranlarda butonlar daha rahat okunsun */
@media (max-width: 768px) {
    .category-btn {
        padding: 6px 14px;
        font-size: 0.9rem;
        /* Metin uzunsa satır kırılsın */
        white-space: normal;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .category-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        /* İsterseniz butonların tam genişlik olmasını sağlayabilirsiniz */
        /* flex: 1 0 auto; */
        /* veya minimum genişlik vererek çok küçülmelerini engelleyin */
        min-width: 80px;
    }
}

.main-logo {
width: 370px;

}
@media (max-width: 768px) {

.main-logo{

width:100% ;
margin-bottom:3px;

}
}