/* ==========================================================================
   1. FONTS & ROOT VARIABLES
   ========================================================================== */
/* Normal (Regular) Font */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Kalın (Bold) Font */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
:root {
    --primary-green: #4AAF47;
    --nav-bg: rgba(13, 66, 11, 0.5);
    --text-dark: #333333;
    --bg-light: #F6F6F6;
    --transition-smooth: 0.4s ease-in-out;
}

/* ==========================================================================
   2. GLOBAL RESET & MOBİL AYARLAR
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif !important; color: var(--text-dark); overflow-x: hidden; line-height: 1.6; background-color: #fff; }

.section-spacer { padding: 30px 0; }

/* Mobilde yazıların kenara yapışmaması için */
@media (max-width: 991px) {
    .container, .container-fluid { padding-left: 20px !important; padding-right: 20px !important; }
    .section-spacer { padding-top: 40px 0; }
    .p2, .p, p { text-align: left !important; padding: 0 10px !important; text-indent: 0 !important; }
}

/* Reveal Animasyonu */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   3. HEADER & NAVBAR (18px Shrift + Click Fix)
   ========================================================================== */
.main-header {
    background-color: var(--nav-bg);
    backdrop-filter: blur(3px);
    padding: 10px 0;
    transition: var(--transition-smooth);
    z-index: 9999 !important;
    width: 100%;
    
}
/* 🔥 ORTALAMA */
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    position: relative;
    display: inline-block !important;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 500;
    padding: 10px 15px !important;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
    z-index: 10000;
}

.nav-link.active::after, .nav-link:hover::after { width: calc(100% - 30px); }

@media (min-width: 992px) {
    .container-nav { display: flex !important; flex-wrap: nowrap !important; justify-content: space-between; align-items: center; }
    .navbar-collapse { display: flex !important; flex-basis: auto; order: 2; justify-content: center; flex: 1; }
    .navbar-brand { order: 1; margin-right: auto; }
    .nav-right-group { order: 3; margin-left: auto; }
    .navbar-nav { flex-direction: row !important; margin: 0 auto;}
}



.navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* linkler yatay */
.nav-links {
    display: flex;
    gap: 30px;
}

/* ==========================================================================
   NAVBAR MOBİL MENÜ - BEYAZ, UFACIK VE SAĞA YASLI (KESİN ÇÖZÜM)
   ========================================================================== */

@media (max-width: 991px) {
    
    /* 1. ANA NAVBAR: İnce ve Sabit */
    .main-header {
        height: 55px !important;
        padding: 0 !important;
        display: flex;
        align-items: center;
        background-color: var(--nav-bg) !important;
        position: fixed !important;
        top: 0;
        width: 100%;
        z-index: 9999 !important;
    }

    .navbar { padding: 0 15px !important; width: 100%; }


    /* 3. MENÜ LİNKLERİ: Alt alta, asla üst üste binmez! */
    .navbar-nav {
        position: relative;
        display: flex !important;
        flex-direction: column !important; /* YAZILARI ZORLA ALT ALTA DİZER */
        align-items: flex-start !important; /* Sağa yaslar */
        width: 100% !important;
        gap: 5px !important; /* Kelimelerin arasını açar */
    }

    .nav-item {
        width: 100% !important;
        display: block !important;
        position: relative !important; /* Absolute olan her şeyi bozduk */
    }

    .nav-link { 
        color: #1a1a1a !important; 
        font-size: 15px !important; 
        padding: 5px 5px !important; /* Tıklama alanını genişlettik */
        font-weight: 600;
        text-align: right;
        display: block !important;
        width: 100% !important;
    }

    /* 5. HAMBURGER VE ARAMA */
    .navbar-toggler-icon { filter: brightness(0) invert(1) !important; width: 22px; }
}
/* Arama ve Dil */
.search-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: 0.3s;
}

/* hover veya focus efekti */
.search-wrapper:hover,
.search-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid var(--primary-green);
}

/* 🔥 ARTIK GİZLİ DEĞİL */
.search-input {
    width: 160px;
    opacity: 1;
    border: none;
    outline: none;
    background: transparent;
    color: white;
    font-size: 14px;
}

/* placeholder rengi */
.search-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.lang-dropdown .btn-light { background-color: #fff !important; border-radius: 50px; padding: 6px 15px; font-weight: 700; border: 1px solid #dee2e6 !important; font-size: 14px; color: #333; }
.lang-dropdown .dropdown-toggle::after { display: none !important; }


.hero-banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #fff;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.hero-banner::after{
    content:"";

    position:absolute;
    inset:0;

}

@media(max-width:991px){

    .hero-banner{

        height: auto;
    }

    .hero-banner img{

        width: 100%;
        height: auto;

        object-fit: contain;

        animation: none;

        transform: none;

        display: block;
    }

}

/* ==========================================================================
   6. SERVICES SECTION (DESKTOP: 3 KART | MOBİL: 2 KART - SLIDER)
   ========================================================================== */
.services-section { 
    background-color: var(--bg-light); 
    position: relative; 
    overflow: hidden; 
    padding: 80px 0; 
}

/* Yapraklar her zaman asilce arkada dursun */
.leaf-decor { 
    position: absolute; top: 50%; height: 100%; opacity: 0.30; z-index: 0; pointer-events: none; 
}
.leaf-left { left: -20px; transform: translateY(-50%); }
.leaf-right { right: -20px; transform: translateY(-50%) scaleX(-1); }

.services-slider-viewport { 
    overflow: hidden; /* Dışarı taşanları gizle */
    width: 100%; 
    padding: 20px 0; 
    position: relative;
    z-index: 2;
}

.services-slider-track { 
    display: flex; 
    transition: transform 0.5s ease-in-out; 
    gap: 19px; /* Kartlar arası jilet boşluk */
}

/* --- KART TASARIMI (GENEL) --- */
.service-card { 
    background: #fff; 
    padding: 40px 30px; 
    border-radius: 30px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.04); 
    height: 100%; 
    width: 100%;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s ease;
    transform-origin: center;
}

.service-card:hover { transform: scale(0.95); border-color: var(--primary-green); }

/* --- MASAÜSTÜ (DESKTOP - 3 KARTLI SİSTEM) --- */
@media (min-width: 992px) {
    
    .service-card img { width: 60px; margin-bottom: 20px; }
    .service-card h5 { font-size: 1.2rem; font-weight: 700; margin-bottom: 15px; }
    .service-card p { font-size: 0.95rem; flex-grow: 1; margin-bottom: 25px; }

    .slider-arrow-btn { 
        position: absolute;
        top: 60%;
        transform: translateY(-50%);

        width: 42px;
        height: 42px;
        border-radius: 50%;

        background: rgb(255, 255, 255); /* 🔥 hafif şeffaf */
        backdrop-filter: blur(6px); /* 🔥 cam efekti */
        
        display: flex;
        align-items: center;
        justify-content: center;

        color: var(--primary-green);
        border: 1px solid rgba(255,255,255,0.2);

        box-shadow: 0 4px 15px rgba(5, 5, 5, 0.238);
        cursor: pointer;
        transition: all 0.3s ease;

        z-index: 1000;
    }

    /* 🔥 HOVER */
    .slider-arrow-btn:hover {
        background: var(--primary-green);
        color: white;

        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.051);
    }

    /* ikon */
    .slider-arrow-btn i {
        font-size: 18px;
    }
    .slider-arrow-btn.prev { left: -70px; } 
    .slider-arrow-btn.next { right: -70px; }
}

/* ==========================================================================
   6. SERVICES SECTION - MOBİL JİLET REVİZE (TEK TEK - 1'Lİ DÜZEN)
   ========================================================================== */
@media (max-width: 991px) {

    /* 🔥 YAPRAKLARI KÜÇÜLT + DIŞARI İT */
    .leaf-decor { 
        height: 100% !important;
        width: 100% !important;
        opacity: 0.3 !important;
    }

    .leaf-left {
        left: -60px;
    }

    .leaf-right {
        right: -60px;
    }

    /* 🔥 SLIDER ALANINI GENİŞLET */
    .services-slider-viewport { 
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
        overflow: hidden;
    }

    /* 🔥 SLIDE DÜZENİ */
    .service-track {
        display: flex;
    }

    .service-slide { 
        flex: 0 0 100%;
        display: flex;
    }

    /* 🔥 KART TEMİZ HAL */
    .service-card { 
        width: 82%;
        margin: 0 auto;
        padding: 20px 15px !important;
        min-height: 180px !important;
        border-radius: 25px !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important;
        justify-content: center;
    }

    /* 🔥 İÇERİK */
    .service-card img { 
        width: 50px !important;
        margin-bottom: 15px !important; 
    }

    .service-card h5 { 
        font-size: 1.1rem !important; 
        font-weight: 700;
        margin-bottom: 10px;
        text-align: center;
    }

    .service-card p { 
        font-size: 0.9rem !important; 
        line-height: 1.5;
        margin-bottom: 15px !important;
        text-align: center;
        display: -webkit-box;
        -webkit-line-clamp: 3; 
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .service-card .btn-sweep { 
        padding: 10px 20px !important; 
        font-size: 14px !important;  
        min-width: 140px;
        margin-top: auto; 
    }
}

@media (max-width: 768px) {

        .slider-arrow-btn { 
            position: absolute;
            top: 50%;
            transform: translateY(-50%);

            width: 38px;
            height: 38px;
            border-radius: 50%;

            background: rgb(255, 255, 255); /* 🔥 hafif görünür */
            backdrop-filter: blur(5px);

            display: flex;
            align-items: center;
            justify-content: center;

            color: var(--primary-green) !important;
            border: 1px solid rgba(255,255,255,0.3);

            z-index: 1000;
        }

        .slider-arrow-btn.prev { left: 12px; }
        .slider-arrow-btn.next { right: 12px; }

        .slider-arrow-btn i { 
            font-size: 22px !important;
        }

        /* 🔥 basınca efekt (mobil için hover yok) */
        .slider-arrow-btn:active {
            transform: translateY(-50%) scale(0.9);
            background: var(--primary-green);
            color: white !important;
        }
    }

/* ==========================================================================
   7. TEAM, NEWS & DETAIL PAGES
   ========================================================================== */
.detail-page-wrapper { padding-top: 120px; }
.header-line { margin: 10px 0 20px; opacity: 0.1; }

.member-img-box, .team-img-box {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #D9D9D9;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 5px;
}

.member-img-box img, .team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card {
    width: 100%;
    max-width: 300px;
    text-align: center;
}

/* MOBİL */
@media (max-width: 768px) {
    .team-card {
        max-width: 100%;
    }
}

/* GENEL */
.team-name {
    font-weight: 700;
    font-size: 20px;
}

.team-role {
    font-size: 15px;
    color: #666;
    line-height: 1.4;
}

/* 📱 MOBİL FULL FIX */
@media (max-width: 768px) {

    .team-name {
        font-size: 17px;
        line-height: 1.3;
        text-align: center !important;
    }

    .team-role {
        font-size: 13px;
        line-height: 1.5;
        max-width: 220px;
        text-align: center !important;
        margin: 0 auto !important; /* max-width olduğu için bu şart */
    }

}
/* NEWS */
.news-horizontal-card { display: flex; align-items: center; background: #fff; margin-bottom: 25px; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.234); transition: 0.3s; }
.news-text-content { padding: 17px; flex-grow: 1; }

.news-image-container {
    width: 220px;
    height: 160px;
    overflow: hidden;
    border-radius: 14px;
    flex-shrink: 0;
}

.news-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MOBİLDE HABER RESMİ (KESİN KÜÇÜLTME) */
@media (max-width: 991px) {
    .news-horizontal-card { flex-direction: column !important; }
    .news-image-container { 
        width: 100% !important; 
        height: 320px !important; /* RESMİ KÜÇÜCÜK YAPTIM */
        flex: none !important;
        background-color: #D9D9D9;
    }
    .news-image-container img {
        height: 320px !important;
        width: 100% !important;
        object-fit: cover !important;
    }
    .news-text-content { padding: 15px !important; }
    .news-text-content h5 { font-size: 1rem !important; margin-bottom: 5px; }
    .news-text-content p { font-size: 0.8rem !important; line-height: 1.4; }
}

/* ==========================================================================
   8. BUTTONS & FOOTER
   ========================================================================== */
.btn-sweep {
    position: relative; padding: 14px 38px; background-color: var(--primary-green);
    color: white !important; font-size: 17px; font-weight: 600; border-radius: 50px;
    overflow: hidden; display: inline-block; text-decoration: none; text-align: center; border: none; cursor: pointer;
}
.btn-sweep::after { content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transition: 0.6s; }
.btn-sweep:hover::after { left: 100%; }
.btn-sweep:hover { background-color: #3e8e3c; box-shadow: 0 5px 15px rgba(19, 89, 17, 0.3); transform: translateY(-2px); }

.footer-section { background-color: var(--bg-light); border-top: 1px solid #eee; padding: 20px 0 !important; }
.footer-nav-links li { list-style: none; margin-bottom: 12px; }
.footer-nav-links a { color: #1a1a1a; font-weight: 500; text-decoration: none; transition: 0.3s; }
.footer-nav-links a:hover { color: var(--primary-green); padding-left: 5px; }

.footer-map-container img { width: 100%; max-width: 300px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); cursor: pointer; transition: 0.3s; }

.footer-social-icons a { font-size: 20px; color: #333; margin-right: 25px; display: inline-block; transition: 0.3s; }
.footer-social-icons a:hover { color: var(--primary-green); transform: translateY(-3px) scale(1.1); }

/* --- DESKTOP AYARI (ESKİ DÜZEN) --- */
@media (min-width: 992px) {
    .footer-contact-info p {
        display: block;
        margin-bottom: 20px;
    }
    .footer-social-icons {
        margin-top: 10px;
    }
}

/* --- MOBİL AYARI (2 SATIRLI JİLET DÜZEN) --- */
@media (max-width: 991px) {
    .footer-mobile-row {
        display: flex;
        justify-content: space-between; /* İki uca yaslar */
        align-items: center;
        padding: 5px 0;
    }

    .footer-mobile-row:last-child {
        border-bottom: none;
    }

    .footer-contact-info p, 
    .footer-contact-info strong, 
    .footer-contact-info span {
        font-size: 13px !important;
        margin-bottom: 0 !important;
    }

    .footer-social-icons {
        margin-bottom: 0 !important;
    }

    .footer-social-icons a {
        font-size: 16px;
        margin-left: 10px;
        margin-right: 0;
    }
}


/* Logo & Navbar Fix */
.navbar-brand { padding: 0 !important; margin: 0 !important; display: flex; align-items: center; }
.navbar-brand svg { display: block; vertical-align: middle; }
@media (max-width: 768px) { .navbar-brand svg { width: 40px; height: auto; margin-left: 0px; } }

.navbar { padding-top: 0 !important; padding-bottom: 0 !important; min-height: 60px; }
.footer-map-container img:hover { transform: scale(1.05); filter: brightness(1.1); box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important; }



/* Tab Başlıkları */
.tab-btn {
    transition: all 0.3s ease;
}

.active-tab {
    color: #000 !important;
    opacity: 1 !important;
}

.inactive-tab {
    color: #adb5bd !important; /* Sönük gri renk */
    opacity: 0.5 !important;
}

/* Mobilde başlıkların arası çok sıkışmasın */
@media (max-width: 768px) {
    .tab-btn {
        font-size: 1.4rem !important;
        margin-bottom: 10px !important;
    }
}

/* İndex dışındaki sayfalarda navbarın içeriği kapatmaması için */
body:not(.home-page) {
    padding-top: 80px;
}

body.home-page {
    padding-top: 0px !important;
}

/* Çizgi (HR) ile buton arasına mesafe */
.header-line {
    margin-top: 10px !important;
    border-top: 1px solid #eee;
    opacity: 1;
}

/* ==========================================================================
   HİZMET DETAY SAYFASI (SERVICE DETAIL)
   ========================================================================== */

/* Navbar'ın içeriği kapatmasını engeller */
.detail-page-wrapper {
    padding-top: 120px; /* Navbar yüksekliği + boşluk */
    padding-bottom: 60px;
}

/* Geri Dön Butonu (Az önce yaptığımız jilet tasarım) */
.breadcrumb-box a {
    display: inline-flex;
    align-items: center;
    color: rgb(78, 77, 77) !important;
    font-weight: 700;
    transition: 0.3s;
    font-size: 14px;
    text-decoration: none;
}
.breadcrumb-box a:hover {
    color: var(--primary-green) !important;
    transform: translateX(-5px);
}

/* Detay Resmi (Esnek ve Jilet gibi) */
.service-detail-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: 0px;
}

/* Üst Küçük Başlık (Tag) */
.service-tag {
    color: var(--primary-green);
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0px;
}

.main-title {
    font-weight: 800;
    line-height: 1.2;
}

/* Liste Maddeleri */
.components-list {
    list-style: none;
    margin-top: 30px;
}

.components-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.5;
}


.key-components-title {
    font-weight: 600;
}

/* Maddelerin yanına yeşil ikon koyar */
.components-list li::before {
    content: "\f00c"; /* FontAwesome Check ikonu */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-size: 18px;
}

/* MOBİL AYARLAR */
@media (max-width: 991px) {
    .main-title { font-size: 1.3rem; }
    .detail-page-wrapper { padding-top: 100px; }
    
    /* Mobilde resim ve metin arasındaki boşluk */
    .row.g-5 {
        flex-direction: column;
    }
    
    .service-detail-img {
        margin-bottom: 20px;
    }
}
.expertise-list li strong {
    font-weight: 700 !important; /* Montserrat-Bold'u zorla çalıştırır */
    color: #000; /* Daha belirgin siyah yapar */
}



@media (max-width: 991px) {
    /* Mobil menü içindeki dil butonu ayarı */
    .navbar-collapse .lang-dropdown {
        width: 100%;
        text-align: center;
    }
    
    .navbar-collapse .lang-dropdown .btn-light {
        width: 100% !important; /* Kutuyu tam kaplasın */
        justify-content: center !important;
        background-color: #f8f9fa !important;
        border: 1px solid #eee !important;
    }

    /* Mobilde açılan dil listesi ortalansın */
    .navbar-collapse .dropdown-menu {
        position: static !important; /* Kutu içinde kalsın, dışarı taşmasın */
        float: none;
        width: 100% !important;
        background: #fff;
    }
}

#serviceTrack {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.service-slide {
    flex: 0 0 calc((100% - 40px) / 3); /* 3 kart */
}

/* 📱 mobil */
@media (max-width: 991px) {
    .service-slide {
        flex: 0 0 100%; /* 1 kart */
    }
}


/* ==========================================================================
   LİSTE NOKTALARI VE HİZALAMA FIX
   ========================================================================== */
.components-list, .expertise-list, ul {
    /* 1. NOKTALARI LİSTENİN İÇİNE ÇEKER (DIŞARI TAŞMAZ) */
    list-style-position: inside !important; 
    padding-left: 0 !important;
    margin-left: 0 !important;
}


.content-area * {
    
    text-align: justify !important;
}

.content-area1 {
    text-align: justify !important;
}

section {
    scroll-margin-top: 100px;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 15px;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 30px);
}

/* MOBILE MENU FIX */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff !important;
        border-radius: 12px;
        padding: 15px;
        position: absolute;
        right: 15px;
        top: 55px;
        width: 220px;
        z-index: 10000 !important;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start !important;
    }

    .nav-link {
        color: #111 !important;
        font-size: 15px;
        text-align: left;
        width: 100%;
    }

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: var(--primary-green);
        transition: 0.3s ease;
    }

    .nav-link:active::after,
    .nav-link:focus::after,
    .nav-link.active::after {
        width: 50%;
    }
}

/* SEARCH */
.search-wrapper {
    position: relative;
}

.search-input {
    width: 160px;
    border: none;
    outline: none;
    background: transparent;
    color: white;
}

.search-suggestions {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: none;
    z-index: 9999;
}

.search-suggestions.active {
    display: block;
}

.search-item {
    padding: 10px 15px;
    cursor: pointer;
}

.search-item:hover {
    background: #f5f5f5;
}

.search-item.active {
    background: var(--primary-green);
    color: #fff;
}


.content {
    flex: 1;
}

.footer-section {
    margin-top: auto;
}


.partner-box {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-box img {
    object-fit: contain;
    transition: 0.3s;
}

/* =========================
   DESKTOP
   ========================= */
@media (min-width: 992px) {
    .logo-big { max-width: 45%; }
    .logo-normal { max-width: 75%; }
    .logo-small { max-width: 100%; }
}

/* =========================
   MOBİL
   ========================= */
@media (max-width: 991px) {
    .partner-box {
        height: 100px; /* biraz küçült */
    }

    .logo-big { max-width: 55%; }
    .logo-normal { max-width: 75%; }
    .logo-small { max-width: 110%; }
}

/* DESKTOP */
.about-img {
    height: 450px;
    width: auto;
}

/* MOBİL */
@media (max-width: 991px) {
    .about-img {
        height: 200px; /* istediğin gibi küçült */
    }
}

/* dropdown tıklama mavisini kaldır */
.dropdown-item:focus,
.dropdown-item:active {
    background-color: transparent !important;
    color: inherit !important;
    box-shadow: none !important;
    outline: none !important;
}

/* sadece bizim aktif dil görünsün */
.dropdown-item.active-lang {
    background-color: rgba(74, 175, 71, 0.15) !important;
    color: var(--primary-green) !important;
}


.team-slider-wrapper {
    position: relative;
}

.team-viewport {
    overflow: hidden;
}

.team-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

/* DESKTOP → 4 kişi */
.team-slide {
    flex: 0 0 calc((100% - 60px) / 4);
}


.team-track,
.services-slider-track {
    will-change: transform;
    transform: translateZ(0);
}


.member-img-box1, .team-img-box {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #D9D9D9;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 5px;
}

.member-img-box1 img, .team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 991px) {

    .team-track {
        display: flex;
    }

    .team-slide {
        flex: 0 0 100%; /* 🔥 artık 1-1 */
    }

    .team-card {
        display: flex;
        flex-direction: column;
        align-items: center ;
        text-align: center;
    }

    .member-img-box1 {
        width: 50%;
        height: 200px; /* biraz büyüttüm güzel dursun */
        margin: 0 auto; /* 🔥 ORTALAR */
    }

    .member-img-box1 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .team-name {
        margin-top: 10px;
        font-size: 16px;
        font-weight: 700;
    }
}


.team-arrow-btn { 
        position: absolute;
        top: 40%;
        transform: translateY(-50%);

        width: 42px;
        height: 42px;
        border-radius: 50%;

        background: rgb(255, 255, 255); /* 🔥 hafif şeffaf */
        backdrop-filter: blur(6px); /* 🔥 cam efekti */
        
        display: flex;
        align-items: center;
        justify-content: center;

        color: var(--primary-green);
        border: 1px solid rgba(255,255,255,0.2);

        box-shadow: 0 4px 15px rgba(5, 5, 5, 0.238);
        cursor: pointer;
        transition: all 0.3s ease;

        z-index: 1000;
    }

    /* 🔥 HOVER */
    .team-arrow-btn:hover {
        background: var(--primary-green);
        color: white;

        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.051);
    }

    /* ikon */
    .team-arrow-btn i {
        font-size: 18px;
    }
    .team-arrow-btn.prev { left: -70px; } 
    .team-arrow-btn.next { right: -70px; }


@media (max-width: 768px) {

        .team-arrow-btn { 
            position: absolute;
            top: 30%;
            transform: translateY(-50%);

            width: 38px;
            height: 38px;
            border-radius: 50%;

            background: rgb(255, 255, 255); /* 🔥 hafif görünür */
            backdrop-filter: blur(5px);

            display: flex;
            align-items: center;
            justify-content: center;

            color: var(--primary-green) !important;
            border: 1px solid rgba(255,255,255,0.3);

            z-index: 1000;
        }

        .team-arrow-btn.prev { left: 12px; }
        .team-arrow-btn.next { right: 12px; }

        .team-arrow-btn i { 
            font-size: 22px !important;
        }

        /* 🔥 basınca efekt (mobil için hover yok) */
        .team-arrow-btn:active {
            transform: translateY(-50%) scale(0.9);
            background: var(--primary-green);
            color: white !important;
        }
    }

    @media (max-width: 991px) {

    .search-wrapper {
        padding: 4px 10px; /* küçült */
    }

    .search-input {
        width: 95px; /* 🔥 küçüldü */
        font-size: 13px;
    }

}

@media (max-width: 991px) {
    .lang-icon {
        display: none;
    }
}

/* NAVBAR TAM GENISLIK */
.navbar .container,
.navbar .container-fluid{

    max-width: 100% !important;

    padding-left: 10px !important;
    padding-right: 10px !important;
}


/* FOOTER'I EN ALTA İTME (STICKY FOOTER) KODLARI */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ekranın %100'ü kadar yüksekliği zorunlu kıl */
    margin: 0;
}

/* Sitenin gövdesi (header ile footer arası) boşlukları doldursun */
main {
    flex-grow: 1; 
}

/* Footer kendi boyutunda kalsın, esnemesin */
footer {
    flex-shrink: 0;
}
