﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #ffffff;
}

.ismer-header-wrapper {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 10000;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* Üst Bar - Beyaz Tasarım */
.ismer-header-top {
    background: #ffffff;
    padding: 0 0;
    border-bottom: 1px solid #f1f5f9;
}

.ismer-header-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.ismer-header-brand img {
    height: 55px;
    margin-top:5px;
    padding:5px;
    /* Logo orijinal renklerinde kalıyor */
}

.ismer-header-top-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ismer-header-phone, .ismer-header-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    transition: 0.3s ease;
}

    .ismer-header-phone svg, .ismer-header-lang svg {
        color: #393188; /* Logodaki Mavi */
    }

    .ismer-header-phone:hover {
        color: #393188;
    }
.ismer-header-list-btn {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .ismer-header-list-btn .list-text {
        font-size: 12px;
        font-weight: 800;
        color: #334155;
        margin-right: 10px;
    }

    .ismer-header-list-btn .list-count {
        background: #f2801a; /* Logodaki Mercan */
        color: #ffffff;
        font-size: 11px;
        font-weight: 800;
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 3px 6px rgba(255, 90, 95, 0.2);
    }

    .ismer-header-list-btn:hover {
        background: #ffffff;
        border-color: #393188;
        transform: translateY(-2px);
    }

.ismer-header-btn-main {
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    background: #f2801a; /* Logodaki Mercan */
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .ismer-header-btn-main:hover {
        background: #e04f54;
        box-shadow: 0 5px 15px rgba(255, 90, 95, 0.3);
    }

/* Alt Navigasyon - Beyaz ve Simetrik */
.ismer-header-nav {
    background: #ffffff;
}

.ismer-header-menu-list {
    display: flex;
    list-style: none;
    width: 100%;
    margin: 0 auto;
}

    .ismer-header-menu-list > li {
        position: relative;
    }

        .ismer-header-menu-list > li:last-child {
            border-right: none;
        }

        .ismer-header-menu-list > li > a {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 55px;
            padding: 0 20px;
            color: #334155;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .ismer-header-menu-list > li:hover > a {
            color: #393188;
            background: #f8fafc;
        }

        /* Hover Çizgisi */
        .ismer-header-menu-list > li::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            transition: width 0.3s ease;
        }

        .ismer-header-menu-list > li:hover::after {
            width: 100%;
        }

/* Mega Menü - Beyaz ve Ferah Tasarım */
.ismer-has-mega {
    position: static !important;
}

.ismer-mega-drop {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 50px 0;
}

.ismer-header-menu-list > li:hover .ismer-mega-drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ismer-mega-container {
    width: 90%;
    max-width: 1425px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.ismer-mega-col h4 {
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ismer-mega-col a {
    display: block;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 3px 0;
    transition: 0.2s ease;
}

    .ismer-mega-col a:hover {
        color: #f2801a; /* Alt menü linklerinde mercan vurgusu */
        padding-left: 8px;
    }

/* Mobil Gizleme */
@media (max-width: 1024px) {
    .ismer-header-menu-list {
        display: none;
    }
}

.ismer-banner-section {
    padding: 20px;
    background-color: #fff;
}

.ismer-banner-container {
    width:100%;
    padding:0;
    border-radius: 15px; /* Modern yumuşak köşeler */
}

.ismer-home-slider-main {
    height: 600px; /* Kompakt yükseklik */
}

.ismer-home-slider-item {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end; /* İçeriği aşağıya yasla */
    padding: 60px;
    border-radius:16px;
}
.ismer-home-slider-main .swiper-slide{
    border-radius:16px;
}
.ismer-home-slider-main .swiper-wrapper {
    border-radius: 16px;
}
.ismer-home-slider-main .swiper {
    border-radius: 16px;
}
.slider-bg-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    border-radius:16px;
    background-position: center;
    z-index: 1;
}

/* Örnekteki gibi beyazdan şeffafa yumuşak geçiş maskesi */
.ismer-home-slider-item::before {
    border-radius:16px;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Yazıların olduğu sol ve alt kısımları daha gri/koyu yapan katman */
    background: linear-gradient( 110deg, rgba(30, 41, 59, 0.7) 0%, /* Yazıların altında daha koyu gri ton */
    rgba(30, 41, 59, 0.4) 40%, /* Orta alanda hafifleşen gri */
    rgba(255, 255, 255, 0) 100% /* Görselin geri kalanında tamamen şeffaf */
    );
    z-index: 2;
}

.ismer-home-slider-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
}

    .ismer-home-slider-content h2 {
        color: #fff;
        font-size: 27px;
        font-weight: 800;
        max-width:500px;
        line-height: 1.2;
        margin-bottom: 15px;
        opacity:0.8;
        text-transform: uppercase;
    }

        /* Başlığın ilk kelimesini veya vurguyu mercan yapalım */
     

    .ismer-home-slider-content p {
        color: #fff;
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 25px;
        opacity:0.8;
    }

.slider-btn {
    display: inline-block;
    background: #393188; /* Mavi Buton */
    color: #fff;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

    .slider-btn:hover {
        background: #1e293b;
        transform: translateY(-3px);
    }

/* Navigasyon Okları - Örnekteki gibi minimalist */
.ismer-home-slider-next, .ismer-home-slider-prev {
    color: #1e293b !important;
    background: rgba(255,255,255,0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

    .ismer-home-slider-next::after, .ismer-home-slider-prev::after {
        font-size: 18px !important;
        font-weight: bold;
    }

/* Pagination - Alt çizgili yapı */
.ismer-home-slider-dots {
    bottom: 20px !important;
}

    .ismer-home-slider-dots .swiper-pagination-bullet {
        width: 40px;
        height: 4px;
        border-radius: 2px;
        background: #cbd5e1;
        opacity: 1;
    }

    .ismer-home-slider-dots .swiper-pagination-bullet-active {
        background: #f2801a !important;
    }
.ismer-slider-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.4); /* Gri ton ve şeffaflık */
    z-index: 1; /* Görselin önünde, yazıların arkasında kalması için */
}
/* Mobil */
@media (max-width: 768px) {
    .ismer-banner-container {
        width: 100%;
        border-radius: 0;
    }

    .ismer-home-slider-item {
        padding: 30px;
    }

    .ismer-home-slider-content h2 {
        font-size: 24px;

    }
}
.ismer-banner-section .swiper-button-next, .ismer-banner-section .swiper-button-prev {
    width: calc(var(--swiper-navigation-size) / 44 * 44);
}
.ismer-home-referans-section {
    padding: 0 0 20px;
    background-color: #ffffff;
    overflow: hidden;
}

.ismer-home-referans-container {
    width: 100%;
    margin: 0 auto;
}

.ismer-home-referans-header {
    text-align: center;
    margin-bottom: 50px;
}

    .ismer-home-referans-header h3 {
        color: #1e293b;
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

        /* Başlık altındaki küçük çizgi (İsmer İş Güvenliği Mavisi) */
        .ismer-home-referans-header h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: #393188;
            border-radius: 2px;
        }

    .ismer-home-referans-header p {
        color: #64748b;
        font-size: 16px;
        font-weight: 500;
    }

/* Logo Kutuları */
.ismer-home-referans-item {
    background: #ffffff;
    padding: 5px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1; /* Normal durumda */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}

    .ismer-home-referans-item img {
        max-width: 95%;
        max-height: 95%;
        object-fit: contain;
    }

    /* Üzerine gelince canlanma efekti */
    .ismer-home-referans-item:hover {
        opacity: 1;
        transform: translateY(-8px); /* Üstten kesilmeyen hafif kayma */
        z-index: 5; /* Hover olan kutu her zaman üstte kalır */
    }

.ismer-home-referans-dots {
    position: relative !important;
    margin-top: 10px;
}

    .ismer-home-referans-dots .swiper-pagination-bullet-active {
        background: #393188 !important;
    }
.ismer-arackiralama-avantaj-slider {
    padding-top: 20px !important; /* Border'ın üstte gözükmesi için şart */
    overflow: visible !important;
}
.ismer-home-referans-slider .swiper-wrapper {
    padding-top: 15px; /* Kutu yukarı kayarken üstten kesilmemesi için boşluk */
    padding-bottom: 20px; /* Alttan gölge için boşluk */
    overflow: visible !important; /* Swiper'ın kesmesini engeller */
}
.ismer-arackiralama-avantaj-section {
    padding: 100px 0;
    background-color: #f2801a; /* Logodaki Mercan */
    color: #ffffff;
    overflow: hidden;
}
.ismer-arackiralama-avantaj-slider .swiper-slide-active .ismer-arackiralama-avantaj-card {
    border-radius: 24px; /* Köşelerin uyumu için */
    position: relative;
    top: -2px; /* Border eklenince kart aşağı kaymasın diye hafif yukarı çekiyoruz */
}
.ismer-arackiralama-avantaj-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

.ismer-arackiralama-avantaj-header h3 {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.ismer-arackiralama-avantaj-section {
    padding: 60px 0;
    background-color: #f8fafc; /* Yumuşak Gri Arka Plan */
    overflow: hidden;
}

.ismer-arackiralama-avantaj-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

.ismer-arackiralama-avantaj-header {
    text-align: center;
    margin-bottom: 70px;
}

    .ismer-arackiralama-avantaj-header h3 {
        color: #1e293b;
        font-size: 34px;
        font-weight: 900;
        margin-bottom: 10px;
    }

        .ismer-arackiralama-avantaj-header h3 span {
            color: #393188; /* Logodaki Mavi Vurgu */
        }

    .ismer-arackiralama-avantaj-header p {
        color: #64748b;
        font-size: 17px;
    }

/* 3D Kart Yapısı */
.ismer-arackiralama-avantaj-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    background-size: cover;
    background-position: center center; /* Standart: Tam merkez */
    background-repeat: no-repeat;
}

.avantaj-icon {
    width: 70px;
    height: 70px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 15px;
    transition: 0.5s ease;
}

    .avantaj-icon svg {
        width: 32px;
        height: 32px;
    }

.ismer-arackiralama-avantaj-card h4 {
    color: #fff;
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 15px;
}

.ismer-arackiralama-avantaj-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.1;
    opacity: 0.8;
}
.avantaj-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 5%, rgba(0,0,0,0.95) 100%);
    z-index: 1;
    border-radius:24px;
}

.avantaj-inner {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    align-items:center;
}



.ismer-arackiralama-avantaj-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.ismer-arackiralama-avantaj-card p {
    font-size: 15px;
    color: #fff;
}

.more-info-btn {
    font-size: 12px;
    font-weight: 700;
    color: #f2801a;
    text-transform: uppercase;
    margin-top: 20px;
    letter-spacing: 1px;
}

/* Modal Stilleri */
.df-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

    .df-modal.active {
        display: flex;
        opacity: 1;
    }

.df-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
}

.df-modal-container {
    position: relative;
    width: 90%;
    max-width: 950px;
    background: #fff;
    border-radius: 30px;
    display: flex;
    overflow: hidden;
    transform: translateY(30px);
    transition: 0.4s;
}

.df-modal.active .df-modal-container {
    transform: translateY(0);
}

.df-modal-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 450px;
}

.df-modal-content {
    flex: 1.2;
    padding: 60px;
    position: relative;
}

.df-modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 40px;
    border: none;
    background: none;
    color: #ccc;
    z-index:99;
    cursor: pointer;
}

.df-modal-badge {
    color: #f2801a;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.df-modal-line {
    width: 40px;
    height: 4px;
    background: #f2801a;
    margin: 25px 0;
}

#modalTitle {
    font-size: 36px;
    font-weight: 900;
    color: #000;
}

#modalDesc {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.df-modal-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 18px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

    .df-modal-btn:hover {
        background: #f2801a;
        transform: translateY(-3px);
    }

/* Responsive */
@media (max-width: 900px) {
    .df-modal-container {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }

    .df-modal-image {
        min-height: 250px;
        width: 100%;
    }
}
/* --- 3D & AKTİF DURUM EFEKTLERİ --- */

/* Merkeze Gelen Kartın Parlaması */
.swiper-slide-active .ismer-arackiralama-avantaj-card {
    transform: scale(1.15) translateY(-10px);
}

.swiper-slide-active .avantaj-icon {
    background: #f2801a; /* Aktif İkon Mercan */
    color: #ffffff;
    transform: rotateY(360deg);
    transition-duration: 1s;
    padding: 15px;
}

/* Navigasyon Okları - Gri Temaya Uygun */
.ismer-avantaj-next, .ismer-avantaj-prev {
    color: #1e293b !important;
    background: #ffffff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

    .ismer-avantaj-next:hover, .ismer-avantaj-prev:hover {
        background: #393188;
        color: #ffffff !important;
    }

    .ismer-avantaj-next:after, .ismer-avantaj-prev:after {
        font-size: 18px !important;
        font-weight: 900;
    }
/* Alt Alan Kapsayıcısı */
.ismer-arackiralama-avantaj-footer {
    text-align: center; /* Görseldeki gibi sola yaslı */
    margin-top: 40px;
    padding-left: 15px;
}

/* Tüm Avantajları Keşfedin Butonu */
.all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Metin ve ikon arası boşluk */
    color: #1e293b; /* Koyu antrasit kurumsal renk */
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

    /* Butonun Altındaki Şık Çizgi */
    .all-btn::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%; /* Görseldeki gibi tam genişlik */
        height: 2px;
        background-color: #393188; /* İsmer İş Güvenliği Mavisi */
        transition: all 0.3s ease;
    }

    /* SVG İkon Ayarları */
    .all-btn svg {
        color: #393188; /* İkon rengi mavi */
        transition: transform 0.3s ease;
    }

    /* --- HOVER (Üzerine Gelince) EFEKTLERİ --- */

    .all-btn:hover {
        color: #393188; /* Metin maviye döner */
    }

        .all-btn:hover::after {
            width: 60%; /* Çizgi kısalır/oynar (Kreatif dokunuş) */
            background-color: #f2801a; /* Çizgi mercan rengine döner */
        }

        .all-btn:hover svg {
            transform: translateX(5px); /* Ok işareti sağa doğru hafifçe fırlar */
        }

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .ismer-arackiralama-avantaj-footer {
        text-align: center; /* Mobilde daha iyi görünmesi için ortala */
        padding-left: 0;
    }

    .all-btn {
        font-size: 15px;
    }
}
.ismer-arackiralama-avantaj-section .swiper-button-next, .ismer-arackiralama-avantaj-section .swiper-button-prev {
    width: calc(var(--swiper-navigation-size) / 44 * 44);
}

.ismer-kriterler-section {
    padding: 50px 0;
    background-color: #f8fafc;
}

.ismer-kriterler-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding:0 30px;
}

.ismer-kriterler-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 25px;
}

/* Ana Satır Dizilimi */
.ismer-kriterler-row {
    display: flex;
    flex-wrap: nowrap; /* Zorunlu yan yana dizilim */
    gap: 12px;
    border-radius: 20px;
    align-items: flex-end;
}

/* Küçük Modern Kutucuklar */
.kriter-box {
    flex: 1;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 12px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    position: relative;
}
.kriter-field option {
    background-color: #ffffff;
    color: #1e293b;
    padding: 15px;
    font-weight: 600;
}
    .kriter-box:hover, .kriter-box:focus-within {
        background: #ffffff;
        border-color: #393188;
        box-shadow: 0 5px 15px rgba(51, 181, 213, 0.1);
    }
        .kriter-box:focus-within::after {
            transform: translateY(-50%) rotate(180deg);
            color: #f2801a; /* Mercan vurgusu */
        }
    /* Kutu İçindeki Küçük Etiket */
    .kriter-box label {
        display: block;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        color: #94a3b8;
        margin-bottom: 2px;
        letter-spacing: 0.5px;
    }

/* Dropdown (Select) Temizliği */
.kriter-field {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    appearance: none; /* Standart oku kaldır */
}

/* Özel Ok İkonu (Kutunun içine gömülü) */
.kriter-box::after {
    content: '▼';
    font-size: 8px;
    color: #393188;
    position: absolute;
    right: 12px;
    bottom: 12px;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Listele Butonu Kutusu */
.kriter-button-box {
    flex: 0 0 auto;
}

.kriter-main-btn {
    height: 52px;
    padding: 0 30px;
    background: #1e293b;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .kriter-main-btn:hover {
        background: #f2801a; /* Logondaki Mercan */
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(255, 90, 95, 0.2);
    }

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 1024px) {
    .ismer-kriterler-row {
        flex-wrap: wrap; /* Mobilde alt alta geçsin */
        background: transparent;
        padding: 0;
        box-shadow: none;
    }

    .kriter-box {
        flex: 0 0 calc(50% - 6px); /* Mobilde 2'li yan yana */
    }

    .kriter-button-box {
        flex: 0 0 100%;
    }

    .kriter-main-btn {
        width: 100%;
        justify-content: center;
    }
}
.ismer-onecikanurunler-section {
    padding: 80px 0;
    background-color: #f8fafc; /* Ferah Gri Arka Plan */
}

.ismer-onecikanurunler-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.ismer-onecikanurunler-header h3 {
    font-size: 32px;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 25px;
    text-align: left;
}

/* Kart Yapisi */
.ismer-onecikanurunler-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .ismer-onecikanurunler-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.06);
        border-color: #393188; /* Turkuaz Vurgu */
    }

/* Image */
.card-image {
    padding: 10px 30px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .card-image img {
        max-width: 90%;
        object-fit: contain;
    }

/* Content */
.card-content {
    padding: 25px;
    flex-grow: 1;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top:15px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* İkon Kapsayıcısı */
.spec-icon-box {
    width: 38px;
    height: 38px;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* SVG İkon Rengi ve Boyutu */
.icon-svg {
    width: 18px;
    height: 18px;
    color: #475569; /* Normalde Antrasit */
    transition: 0.3s;
}

/* Hover'da İkonun Canlanması */
.ismer-onecikanurunler-card:hover .spec-icon-box {
    background-color: #393188; /* Turkuaz */
    border-color: #393188;
}

.ismer-onecikanurunler-card:hover .icon-svg {
    color: #ffffff;
}

.spec-item span {
    font-size: 11px;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Footer & Price */
.card-footer {
    background: #f8fafc;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #f1f5f9;
}

/* Button */
.card-action-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444; /* Kirmizi ok */
    transition: 0.3s;
}

    .card-action-btn:hover {
        transform: translateX(6px);
    }
/* Badges */
.card-badges {
    padding: 15px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.badge-suv {
    background: #607d8b;
}

.badge-model {
    background: #1e293b;
}

.badge-promo {
    background: #ff8f00;
}
.price-label {
    display: block;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 5px;
}

.price-value {
    font-size: 28px;
    font-weight: 900;
    color: #1e293b;
}

    .price-value span {
        font-size: 16px;
    }

.price-sub {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 5px;
}
.ismer-onecikanurunler-slider {
    padding-bottom:50px;
    padding: 20px 0 !important; /* Butonlarin disari tasmasi icin alan birakiyoruz */
}
/* Ortak Buton Tasarimi */
.ismer-onecikanurunler-section .swiper-button-next,
.ismer-onecikanurunler-section .swiper-button-prev {
    width: 44px !important;
    height: 44px !important;
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 50% !important;
    color: #1e293b !important; /* Antrasit */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

    /* Ok ikonlarinin boyutu (Font-size ile ayarlanir) */
    .ismer-onecikanurunler-section .swiper-button-next:after,
    .ismer-onecikanurunler-section .swiper-button-prev:after {
        font-size: 18px !important;
        font-weight: 900 !important;
    }

    /* Hover Efekti (Turkuaz Vurgu) */
    .ismer-onecikanurunler-section .swiper-button-next:hover,
    .ismer-onecikanurunler-section .swiper-button-prev:hover {
        background-color: #393188 !important; /* Turkuaz */
        border-color: #393188 !important;
        color: #ffffff !important;
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(51, 181, 213, 0.25) !important;
    }

/* Buton Konumlari (Konteynirin disina tasirma) */
.ismer-onecikanurunler-section .swiper-button-prev {
    left: 0 !important;
}

.ismer-onecikanurunler-section .swiper-button-next {
    right: 0 !important;
}

/* Mobil Uyumluluk: Mobilde butonlari kucultelim veya gizleyelim */
@media (max-width: 768px) {
    .ismer-onecikanurunler-section .swiper-button-next,
    .ismer-onecikanurunler-section .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
        display: none; /* Mobilde genelde swipe (kaydirma) yettigi icin gizlemek temiz durur */
    }

    .ismer-onecikanurunler-slider {
        padding: 20px 10px !important;
    }
}
.ismer-hizliform-section {
    padding: 35px 0;
    background-color: #fcfcfc;
}

.ismer-hizliform-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ana Kutu Tasarımı */
.ismer-hizliform-wrapper {
    background: #f2801a; /* Screenshot_16'daki ana turuncu tonu */
    border-radius: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
}

/* Form İçerik Alanı */
.ismer-hizliform-content {
    flex: 1;
    min-width: 350px;
    padding: 50px;
}

    .ismer-hizliform-content .sub-title {
        color: rgba(255,255,255,0.8);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
        margin-bottom: 10px;
    }

    .ismer-hizliform-content .main-title {
        color: #fff;
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 30px;
        letter-spacing: -1px;
    }

/* Input ve Grid Yapısı */
.hizliform-grid {
    display: flex;
    gap: 15px;
}

.hizliform-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

    .hizliform-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .hizliform-input:focus {
        background: #fff;
        color: #333;
    }

.hizliform-submit {
    background: #1e293b; /* Antrasit kontrast */
    color: #fff;
    border: none;
    padding: 0 30px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

    .hizliform-submit:hover {
        background: #0f172a;
        transform: translateY(-2px);
    }

/* WhatsApp CTA Kartı */
.ismer-hizliform-cta {
    background: rgba(0, 0, 0, 0.1);
    padding: 50px;
    display: flex;
    justify-content: center;
}

.whatsapp-card {
    background: #fff;
    padding: 20px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.whatsapp-icon {
    width: 45px;
    height: 45px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .whatsapp-icon svg {
        width: 25px;
    }

.whatsapp-text strong {
    display: block;
    color: #1e293b;
    font-size: 16px;
}

.whatsapp-text span {
    color: #64748b;
    font-size: 13px;
}

.whatsapp-link {
    background: #f1f5f9;
    color: #25D366;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
}

    .whatsapp-link:hover {
        background: #25D366;
        color: #fff;
    }

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .hizliform-grid {
        flex-direction: column;
    }

    .ismer-hizliform-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-card {
        flex-direction: column;
        text-align: center;
    }
}
.ismer-home-yazilarimiz-section {
    background-color: #f8fafc;
    padding: 60px 0 80px 0;
    overflow: hidden;
}

.ismer-home-yazilarimiz-container {
    width:100;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.yazilar-title {
    color: #2a2a2a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: left;
}

/* Kart Tasarımı */
.yazilar-card {
    background: #e5e7eb; /* Boş görsel rengi */
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    position: relative;
    transition: transform 0.4s ease;
}

    .yazilar-card:hover {
        transform: translateY(-10px);
    }

.yazilar-card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

    .yazilar-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Kart İçeriği Overlay */
.yazilar-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

    .yazilar-card-overlay h3 {
        color: #ffffff;
        margin: 0 0 10px 0;
        font-size: 20px;
        max-width: 90%;
    }

    .yazilar-card-overlay p {
        color: rgba(255,255,255,0.8);
        font-size: 14px;
        margin: 0;
        max-width: 80%;
    }

/* Yuvarlak Buton */
.yazilar-go-btn {
    position: absolute;
    right: 20px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .yazilar-go-btn:hover {
        background: #1e293b;
        color: #ffffff;
    }

    .yazilar-go-btn svg {
        width: 20px;
    }

/* Swiper Dots (Noktalar) Tasarımı */
.ismer-home-yazilarimiz-slider .swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.ismer-home-yazilarimiz-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #2a2a2a !important;
    opacity: 0.4;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.ismer-home-yazilarimiz-slider .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px; /* Aktif noktayı uzun yaparak modern bir hava katıyoruz */
    border-radius: 10px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .yazilar-title {
        font-size: 22px;
        text-align: center;
    }

    .yazilar-card {
        height: 250px;
    }
}
.ismer-home-yazilarimiz-slider{
    padding:20px 0!important;
}
.ismer-footer-section {
    background-color: #444444; /* Antrasit zemin */
    padding: 60px 0 20px 0;
    color: #ffffff;
}

.ismer-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.ismer-footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ismer-footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #cecece;
}

.footer-text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Sosyal Medya İkonları */
.footer-social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background-color: #ffffff;
        color: #444444;
    }

/* Link Yapısı */
.footer-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
}

    .footer-links-grid a {
        color: #ffffff;
        text-decoration: none;
        font-size: 13px;
        white-space: nowrap;
    }

        .footer-links-grid a:after {
            content: "/";
            margin-left: 10px;
            color: rgba(255, 255, 255, 0.3);
        }

        .footer-links-grid a:hover {
            color: #f2801a;
        }

/* Sağ Kolon: İletişim & Sertifika */
.footer-col-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-contact-box {
    text-align: right;
}

.contact-label {
    display: block;
    font-size: 12px;
    color: #cecece;
}

.contact-number {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    display:block;
    text-decoration: none;
}

.footer-certification img {
    height: 45px;
    filter: grayscale(0); /* Sertifikanın orijinal renklerini koru */
}

/* Copyright Alanı */
.ismer-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .ismer-footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-links-grid {
        justify-content: center;
    }

    .footer-col-right {
        align-items: center;
    }

    .ismer-footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}
.ismer-onecikanurunler-section .swiper-wrapper{
    margin-bottom:20px;
}
/* Pagination Ana Konteynır Ayarı */
.ismer-onecikanurunler-slider .swiper-pagination {
    position: absolute !important;
    bottom: 0 !important; /* Konteynirin en altina sabitliyoruz */
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

/* Genel Nokta Tasarımı (Pasif Durum) */
.ismer-onecikanurunler-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #cbd5e1 !important; /* Pasif gri tonu */
    opacity: 1;
    margin: 0 6px !important;
}

    /* Hover Durumu */
    .ismer-onecikanurunler-section .swiper-pagination-bullet:hover {
        opacity: 0.5;
        background-color: #393188 !important; /* Turkuaz Vurgu */
    }

/* Aktif Nokta Tasarımı (Modern Çubuk Görünümü) */
.ismer-onecikanurunler-section .swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 30px !important; /* Aktif nokta yatay olarak genişler */
    background-color: #393188 !important; /* Turkuaz */
    border-radius: 10px !important;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .ismer-onecikanurunler-section .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .ismer-onecikanurunler-section .swiper-pagination-bullet-active {
        width: 20px !important;
    }
}
.ismer-iletisim-section {
    background-color: #f4f7f9;
    padding: 60px 0;
}

.ismer-iletisim-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.iletisim-main-title {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 30px;
    font-weight: 800;
}

.ismer-iletisim-grid {
    display: grid;
    grid-template-columns: 1fr 400px; /* Masaustu dizilimi */
    gap: 30px;
}

/* Kart Genel Yapısı */
.iletisim-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
}

.card-title {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Form Elemanları */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

    .form-group label span {
        color: #393188;
    }
/* Turuncu vurgu */

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fcfdfe;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

    .form-group input:focus {
        border-color: #393188;
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 90, 36, 0.1);
    }

/* Checkbox Alanı */
.form-checks {
    margin: 25px 0;
}

.check-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    cursor: pointer;
}

    .check-item input {
        margin-top: 3px;
    }

    .check-item span {
        font-size: 12px;
        color: #64748b;
        line-height: 1.4;
    }

.form-send-btn {
    width: 100%;
    padding: 15px;
    background: #f1f5f9; /* Pasif renk */
    color: #94a3b8;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

    .form-send-btn:hover {
        background: #1e293b;
        color: #fff;
    }

/* Yan Kolon Bilgi Kartları */
.iletisim-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom:15px;
}

.info-svg {
    width: 40px;
    height: 40px;
    background: rgb(40 175 208 / 6%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #393188;
}

    .info-svg svg {
        width: 20px;
    }

.info-details span {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.info-details a {
    color: #1e293b;
    text-decoration: none;
    font-size: 15px;
}

.map-link {
    color: #393188;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

/* MOBİL UYUM */
@media (max-width: 991px) {
    .ismer-iletisim-grid {
        grid-template-columns: 1fr;
    }

    .iletisim-sidebar {
        order: 2;
    }

    .form-card {
        order: 1;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .iletisim-card {
        padding: 25px;
    }

    .iletisim-main-title {
        text-align: center;
    }
}
.ismer-teklifal-kreatif-section {
    padding: 80px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

/* Kreatif Arka Plan SVG */
.kreatif-bg-svg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: 1;
}

.ismer-teklifal-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.teklifal-header-kreatif {
    text-align: center;
    margin-bottom: 50px;
}

.teklifal-main-title {
    font-size: 36px;
    color: #1e293b; /* Antrasit */
    font-weight: 800;
    margin-bottom: 10px;
}

.teklifal-sub-title {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Gelişmiş Adım Göstergesi (Vektörel) */
.teklifal-steps-kreatif {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 30px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    transition: all 0.4s ease;
}

    .step-item.active {
        color: #393188; /* Logo Mercan/Turuncu */
    }

.step-icon-svg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    background: #fff;
}

    .step-icon-svg svg {
        width: 22px;
        height: 22px;
    }

.step-item.active .step-icon-svg {
    border-color: #393188;
    background: rgb(40 175 208 / 5%);
    box-shadow: 0 0 0 5px rgb(40 175 208 / 9%);
}

.step-line-kreatif {
    width: 100px;
    height: 2px;
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
}

    .step-line-kreatif::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: #393188;
        transition: all 0.6s ease;
    }

.teklifal-steps-kreatif.step2-active .step-line-kreatif::after {
    left: 0;
}

/* Form Ana Kutusu */
.teklifal-wrapper-kreatif {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(30, 41, 59, 0.05); /* Ferah gÃ¶lge */
}

/* Form Icerik */
.form-grid-kreatif {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group-kreatif label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.form-group-kreatif input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: 0.3s;
    box-sizing: border-box;
}

    .form-group-kreatif input:focus {
        border-color: #393188; /* Logo Turkuaz */
        outline: none;
        background: rgba(51, 181, 213, 0.02);
    }

/* Checkboxes */
.form-permissions-kreatif {
    margin-bottom: 30px;
}

.check-container-kreatif {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    cursor: pointer;
}

    .check-container-kreatif .text-kreatif {
        font-size: 13px;
        color: #64748b;
        line-height: 1.4;
    }

    .check-container-kreatif a {
        color: #393188;
        text-decoration: underline;
    }

/* Butonlar Animasyonlu */
.btn-next-kreatif, .btn-submit-kreatif {
    width: 100%;
    background: #393188;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .btn-next-kreatif:hover, .btn-submit-kreatif:hover {
        background: #f2801a;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(251, 92, 83, 0.2);
    }

    .btn-next-kreatif svg {
        width: 20px;
        transition: transform 0.3s ease;
    }

    .btn-next-kreatif:hover svg {
        transform: translateX(5px);
    }

/* Asama Gecis Animasyonu */
.form-step-content-kreatif {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
}

    .form-step-content-kreatif.active {
        display: block;
        opacity: 1;
        transform: translateX(0);
    }

/* Geri Butonu */
.btn-group-kreatif {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 15px;
}

.btn-back-kreatif {
    background: #f1f5f9;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    color: #64748b;
    transition: 0.3s;
}

    .btn-back-kreatif:hover {
        background: #e2e8f0;
        color: #1e293b;
    }

@media (max-width: 600px) {
    .form-grid-kreatif {
        grid-template-columns: 1fr;
    }

    .teklifal-steps-kreatif span {
        display: none;
    }

    .teklifal-steps-kreatif {
        gap: 15px;
    }

    .teklifal-wrapper-kreatif {
        padding: 30px;
    }
}
/* Ana Konteynır ve Genel Stil */
.ismer-kurumsal-wrapper {
    background-color: #ffffff;
    padding-bottom: 100px;
}

.ismer-kurumsal-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.ismer-kurumsal-breadcrumb {
    padding: 20px 0;
    font-size: 13px;
    color: #6b7280;
}

    .ismer-kurumsal-breadcrumb a {
        text-decoration: none;
        color: #6b7280;
        transition: 0.3s;
    }

        .ismer-kurumsal-breadcrumb a:hover {
            color: #393188; /* Logo Turkuaz */
        }

    .ismer-kurumsal-breadcrumb span {
        margin: 0 8px;
    }

    .ismer-kurumsal-breadcrumb .active {
        color: #111827;
        font-weight: 500;
    }

/* Başlık */
.ismer-kurumsal-page-title {
    font-size: 32px;
    color: #002244; /* Koyu Lacivert Tonu */
    font-weight: 800;
    margin: 10px 0 35px 0;
}

/* Banner Alanı */
.ismer-kurumsal-hero-banner {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #393188 0%, #f2801a 100%); /* Marka Renkleri */
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(51, 181, 213, 0.1);
}

.ismer-kurumsal-banner-text {
    color: #ffffff;
    font-size: 38px;
    font-weight: 300;
    z-index: 5;
    text-align: center;
    letter-spacing: -0.5px;
}

    .ismer-kurumsal-banner-text strong {
        font-weight: 800;
    }

.ismer-kurumsal-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    z-index: 2;
}

    .ismer-kurumsal-circle.left {
        width: 220px;
        height: 220px;
        bottom: -60px;
        left: -40px;
    }

    .ismer-kurumsal-circle.right {
        width: 320px;
        height: 320px;
        top: -110px;
        right: -70px;
    }

/* İçerik ve Paragraflar */
.ismer-kurumsal-content {
    max-width: 950px;
}

.ismer-kurumsal-lead {
    font-size: 19px;
    color: #111827;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ismer-kurumsal-content p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8; /* Uzun metinler iÃ§in ferah aralÄ±k */
    margin-bottom: 22px;
}

/* Alt Bölümler (Vizyon/Misyon) */
.ismer-kurumsal-sections-grid {
    margin-top: 50px;
}

.ismer-kurumsal-section-item h2 {
    font-size: 22px;
    color: #002244;
    font-weight: 700;
    margin-bottom: 12px;
}

.ismer-kurumsal-section-item p {
    font-size: 16px;
    color: #4b5563;
}

/* Animasyon: Giriş Etkisi */
.ismer-kurumsal-hero-banner {
    animation: bannerSlideIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes bannerSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .ismer-kurumsal-banner-text {
        font-size: 26px;
        padding: 0 20px;
    }

    .ismer-kurumsal-hero-banner {
        height: 250px;
        border-radius: 20px;
    }

    .ismer-kurumsal-page-title {
        font-size: 26px;
    }
}
.ismer-kariyer-wrapper {
    background-color: #f8fafc;
    padding-bottom: 80px;
}

.ismer-kariyer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.ismer-kariyer-breadcrumb {
    padding: 20px 0;
    font-size: 13px;
    color: #888;
}

    .ismer-kariyer-breadcrumb a {
        text-decoration: none;
        color: #888;
    }

    .ismer-kariyer-breadcrumb .active {
        color: #1e293b;
        font-weight: 500;
    }

/* Başlık */
.ismer-kariyer-page-title {
    font-size: 30px;
    color: #002244;
    font-weight: 800;
    margin: 20px 0 30px 0;
}

/* Tanıtım Metni */
.ismer-kariyer-intro {
    margin-bottom: 50px;
}

.ismer-kariyer-lead {
    font-size: 18px;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 15px;
}

.ismer-kariyer-intro p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
}

/* Form Kart Yapısı */
.ismer-kariyer-form-card {
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.ismer-kariyer-form-header {
    padding: 25px 40px;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
}

.ismer-kariyer-step-indicator {
    color: #f2801a; /* Marka Mercan */
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ismer-kariyer-form-body {
    padding: 40px;
}

.form-instruction {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 15px;
}

/* Form Grid Sistemi */
.ismer-kariyer-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.ismer-kariyer-col {
    flex: 1;
}

.ismer-kariyer-full {
    margin-bottom: 20px;
}

/* Input Stilleri */
.ismer-kariyer-form-body label {
    display: block;
    font-size: 14px;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 8px;
}

.ismer-kariyer-form-body input,
.ismer-kariyer-form-body select,
.ismer-kariyer-form-body textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

    .ismer-kariyer-form-body input:focus {
        border-color: #393188; /* Logo Turkuaz */
        outline: none;
    }

/* Legal ve Onay Alanı */
.ismer-kariyer-legal {
    margin-top: 30px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    cursor: pointer;
}

.legal-text {
    font-size: 13px;
    color: #64748b;
    font-weight: 400;
    line-height: 1.4;
}

    .legal-text a {
        color: #f2801a;
        text-decoration: none;
    }

/* Buton Tasarımı */
.ismer-kariyer-action {
    margin-top: 40px;
    text-align: center;
}

.ismer-kariyer-btn {
    background: #f2801a; /* Logo Mercan */
    color: #fff;
    border: none;
    padding: 16px 50px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

    .ismer-kariyer-btn:hover {
        background: #e64a41;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(251, 92, 83, 0.3);
    }

@media (max-width: 768px) {
    .ismer-kariyer-row {
        flex-direction: column;
    }

    .ismer-kariyer-form-body {
        padding: 25px;
    }
}
.ismer-kariyer-wrapper {
    background: #f9fbff;
    padding: 60px 0 100px;
}

.ismer-kariyer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Başlık Alanı */
.ismer-kariyer-header {
    text-align: center;
    margin-bottom: 60px;
}

.ismer-kariyer-title {
    font-size: 38px;
    color: #002244;
    font-weight: 800;
}

.ismer-kariyer-desc {
    color: #64748b;
    margin-top: 10px;
}

/* Pozisyon Kartları */
.ismer-kariyer-positions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.ismer-kariyer-pos-item {
    background: #fff;
    padding: 40px 20px;
    border-radius: 24px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #eef2f6;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

    .ismer-kariyer-pos-item:hover {
        transform: translateY(-8px);
        border-color: #393188; /* Turkuaz */
        box-shadow: 0 20px 40px rgba(51, 181, 213, 0.1);
    }

.pos-visual {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: #393188;
    opacity: 0.8;
}

.ismer-kariyer-pos-item h3 {
    font-size: 19px;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 12px;
}

.status-pill {
    font-size: 11px;
    font-weight: 800;
    color: #f2801a;
    background: rgba(251, 92, 83, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
}

/* MODAL SİSTEMİ (Overlay) */
.ismer-kariyer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

    .ismer-kariyer-modal.active {
        display: flex;
    }

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 750px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 28px;
    padding: 50px;
    animation: modalIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    border: none;
    background: #f1f5f9;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: #64748b;
    font-size: 18px;
}

/* Form İç Stilleri */
.form-header-area {
    margin-bottom: 35px;
    border-left: 5px solid #f2801a;
    padding-left: 20px;
}

    .form-header-area h2 {
        color: #002244;
        font-size: 26px;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .form-header-area p {
        color: #64748b;
    }

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-size: 14px;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 8px;
    }

    .form-group input, .form-group select, .form-group textarea {
        padding: 14px 18px;
        border: 1px solid #d1d5db;
        border-radius: 12px;
        font-size: 15px;
        transition: all 0.3s;
    }

        .form-group input:focus {
            border-color: #393188;
            box-shadow: 0 0 0 4px rgba(51, 181, 213, 0.1);
            outline: none;
        }

.dede-submit-btn {
    width: 100%;
    background: #f2801a; /* Mercan */
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s;
}

    .dede-submit-btn:hover {
        background: #e64a41;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(251, 92, 83, 0.2);
    }

@media (max-width: 650px) {
    .form-row {
        flex-direction: column;
    }

    .modal-content {
        padding: 30px 20px;
    }
}
.form-legal{
    margin-top:15px;
}
/* Ana Kapsayıcı ve Renkler */
.ismer-kampanyalar-wrapper {
    background-color: #fcfdfe;
    padding: 50px 0;
}

.ismer-kampanyalar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Hiyerarşisi */
.ismer-kampanyalar-header {
    margin-bottom: 70px;
    max-width: 700px;
}

.ismer-kampanyalar-title {
    font-size: 42px;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.2;
}

.ismer-kampanyalar-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-top: 15px;
    border-left: 4px solid #393188; /* Turkuaz */
    padding-left: 20px;
}

/* Kampanya Grid */
.ismer-kampanyalar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* Kart Tasarımı */
.ismer-kampanyalar-item {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

    .ismer-kampanyalar-item:hover {
        transform: translateY(-15px);
        box-shadow: 0 40px 80px -20px rgba(0, 26, 65, 0.1);
        border-color: #393188;
    }

/* Görsel Alanı */
.ismer-kampanyalar-visual {
    position: relative;
    height: 240px;
}

    .ismer-kampanyalar-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.ismer-kampanyalar-label {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    color: #1e293b;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* İçerik ve Tipografi */
.ismer-kampanyalar-body {
    padding: 35px;
}

.ismer-kampanyalar-name {
    font-size: 22px;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 15px;
    height: 54px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ismer-kampanyalar-info {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Footer ve Etiketler */
.ismer-kampanyalar-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #e2e8f0;
    padding-top: 25px;
}

.ismer-kampanyalar-tag {
    font-size: 13px;
    font-weight: 600;
    color: #393188; /* Turkuaz */
}

.ismer-kampanyalar-link {
    text-decoration: none;
    font-weight: 700;
    color: #1e293b;
    transition: 0.3s;
}

.ismer-kampanyalar-action-btn {
    background: #f2801a; /* Mercan */
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

    .ismer-kampanyalar-action-btn:hover {
        background: #393188;
        box-shadow: 0 8px 16px rgba(51, 181, 213, 0.3);
    }

/* Öne Çıkan Kart Stili */
.ismer-kampanyalar-item.featured {
    background: #f8fafc;
    border: 1px solid rgba(51, 181, 213, 0.3);
}

@media (max-width: 768px) {
    .ismer-kampanyalar-title {
        font-size: 32px;
    }

    .ismer-kampanyalar-grid {
        grid-template-columns: 1fr;
    }
}
/* Kapsayıcı Ayarları */
.ismer-hizmetlerimiz-wrapper {
    background-color: #f4f7f9;
    padding: 80px 0;
}

.ismer-hizmetlerimiz-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Başlık Grubu */
.ismer-hizmetlerimiz-header {
    text-align: center;
    margin-bottom: 60px;
}

.ismer-hizmetlerimiz-main-title {
    font-size: 36px;
    color: #001a41;
    font-weight: 800;
    margin-bottom: 15px;
}

.ismer-hizmetlerimiz-main-desc {
    color: #64748b;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Yapısı */
.ismer-hizmetlerimiz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Hizmet Kartı */
.ismer-hizmetlerimiz-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

    .ismer-hizmetlerimiz-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(51, 181, 213, 0.1);
        border-color: #393188; /* Turkuaz */
    }

/* Vektörel İkon Kutusu */
.ismer-hizmetlerimiz-icon-box {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    color: #393188; /* Turkuaz */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

    .ismer-hizmetlerimiz-icon-box svg {
        width: 32px;
        height: 32px;
    }

.ismer-hizmetlerimiz-card:hover .ismer-hizmetlerimiz-icon-box {
    background: #393188;
    color: #ffffff;
    transform: rotate(10deg) scale(1.1);
}

/* Kart Tipografisi */
.ismer-hizmetlerimiz-card-title {
    font-size: 20px;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 15px;
}

.ismer-hizmetlerimiz-card-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

/* Öne Çıkan Kart Vurgusu */
.ismer-hizmetlerimiz-card.featured {
    border-bottom: 4px solid #f2801a; /* Mercan */
}

/* Footer & Buton */
.ismer-hizmetlerimiz-footer {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
}

    .ismer-hizmetlerimiz-footer p {
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 20px;
    }

.ismer-hizmetlerimiz-btn {
    display: inline-block;
    text-decoration: none;
    background: #f2801a; /* Mercan */
    color: #ffffff;
    padding: 16px 45px;
    border-radius: 14px;
    font-weight: 800;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(251, 92, 83, 0.2);
}

    .ismer-hizmetlerimiz-btn:hover {
        background: #e64a41;
        transform: scale(1.05);
    }

@media (max-width: 768px) {
    .ismer-hizmetlerimiz-grid {
        grid-template-columns: 1fr;
    }

    .ismer-hizmetlerimiz-main-title {
        font-size: 28px;
    }
}
.ismer-filokiralama-wrapper {
    background: #f8fafc;
    padding: 60px 0;
}

.ismer-filokiralama-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    padding: 0 20px;
}

/* Sidebar Tasarımı */
.ismer-filokiralama-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-box {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.search-input-group {
    position: relative;
}

    .search-input-group input {
        width: 100%;
        padding: 12px 15px;
        border-radius: 12px;
        border: 1px solid #d1d5db;
        box-sizing: border-box;
    }

    .search-input-group button {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        background: none;
        color: #393188;
        cursor: pointer;
    }

        .search-input-group button svg {
            width: 18px;
        }

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .filter-list li {
        margin-bottom: 12px;
        color: #475569;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
    }

    .filter-list input {
        margin-right: 10px;
        accent-color: #393188;
    }

/* İçerik Alanı */
.ismer-filokiralama-content {
    flex-grow: 1;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

    .content-header h2 {
        font-size: 28px;
        color: #001a41;
        margin: 0;
    }

.count-info {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

/* Grid */
.ismer-filokiralama-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* Kart Yapısı */
.ismer-filokiralama-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #eef2f6;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

    .ismer-filokiralama-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        border-color: #393188;
    }

.card-badges {
    padding: 15px 20px 0;
    display: flex;
    gap: 8px;
}

.badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    background: #94a3b8;
}

.badge-promo {
    background: #f2801a;
}
/* Mercan */

.card-image {
    padding: 10px 20px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .card-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.card-content {
    padding: 20px;
    border-top: 1px solid #f1f5f9;
}

    .card-content h4 {
        font-size: 18px;
        color: #0f172a;
        margin: 0 0 8px;
        font-weight: 700;
        line-height: 1.4;
        /* --- HİZALAMA SİHİRBAZI --- */
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Metni 2 satırda keser */
        -webkit-box-orient: vertical;
        overflow: hidden;
        /* 2 satırlık alanı (18px * 1.4 * 2) sabitler */
        min-height: 50.4px;
        height: 50.4px;
    }

.model-detail {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    color: #475569;
}

.spec-icon-box {
    width: 32px;
    height: 32px;
    background: #f8fafc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #393188;
}

.icon-svg {
    width: 18px;
    height: 18px;
}

.card-footer {
    padding: 20px;
    background: #fbfcfd;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 700;
}

.price-value {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
}

    .price-value span {
        font-size: 14px;
        color: #64748b;
    }

.price-sub {
    font-size: 10px;
    color: #f2801a;
    display: block;
}

.card-action-btn {
    width: 45px;
    height: 45px;
    background: #f2801a;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

    .card-action-btn:hover {
        background: #393188;
        transform: rotate(-10deg);
    }

@media (max-width: 991px) {
    .ismer-filokiralama-container {
        flex-direction: column;
    }

    .ismer-filokiralama-sidebar {
        width: 100%;
    }
}
.ismer-filokiralama-detay-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

.ismer-filokiralama-detay-breadcrumb {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}
.ismer-filokiralama-detay-tabs-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* Taşmaları engeller */
}
.ismer-filokiralama-detay-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #444;
}

.ismer-filokiralama-detay-main-grid {
    display: grid;
    grid-template-columns: 1fr 320px; /* Sağ tarafı sabit, solu esnek yapın */
    gap: 30px;
    align-items: start;
}

/* Sol Taraf */
.ismer-filokiralama-detay-image-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    position:relative;
}

    .ismer-filokiralama-detay-image-box img {
        max-width: 100%;
        height: auto;
    }

.ismer-filokiralama-detay-quick-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.spec-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
}

    .spec-card .label {
        display: block;
        font-size: 12px;
        color: #777;
        margin-bottom: 5px;
    }

    .spec-card .value {
        font-weight: 700;
        color: #222;
    }

/* Tablar */
.ismer-filokiralama-detay-tabs-nav {
    display: flex;
    flex-wrap: nowrap; /* Mobilde taşma yaparsa 'wrap' yapabilirsin */
    overflow-x: auto; /* Mobilde kaydırılabilir yapar */
    border-bottom: 2px solid #eee;
    margin-bottom: 15px;
}

.tab-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}
    .tab-btn svg {
        transition: transform 0.2s ease;
    }
    .tab-btn:hover svg {
        transform: translateY(-1px);
    }
    .tab-btn.active svg {
        stroke: #f2801a;
    }
    .tab-btn.active {
        color: #f2801a;
        border-bottom-color: #f2801a;
    }

.ismer-filokiralama-detay-table {
    width: 100% !important;
    table-layout: fixed; /* Hücre genişliklerini sabitler, taşmayı önler */
    border-collapse: collapse;
}

    .ismer-filokiralama-detay-table td {
        padding: 12px 8px;
        border-bottom: 1px solid #f5f5f5;
        word-wrap: break-word;
    }

        .ismer-filokiralama-detay-table td:first-child {
            color: #777;
            width: 40%;
        }

    .ismer-filokiralama-detay-table tr:nth-child(even) {
        background: #fafafa;
    }

/* Sağ Taraf */
.ismer-filokiralama-detay-price-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
}

.price-header {
    background: #f2801a;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 25px;
}

    .price-header .amount {
        font-size: 24px;
        font-weight: 800;
    }

    .price-header .period {
        font-size: 14px;
    }

.ismer-filokiralama-detay-form-group {
    margin-bottom: 15px;
}

    .ismer-filokiralama-detay-form-group label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #555;
    }

    .ismer-filokiralama-detay-form-group select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background: #fff;
    }

.ismer-filokiralama-detay-btn-primary {
    width: 100%;
    background: #f2801a;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
}

.ismer-filokiralama-detay-btn-secondary {
    width: 100%;
    background: #adb5bd;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
}

.ismer-filokiralama-detay-callback {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

    .ismer-filokiralama-detay-callback p {
        font-size: 12px;
        font-weight: 700;
        color: #f2801a;
        margin: 0;
    }

.ismer-filokiralama-detay-services {
    margin-top: 30px;
    padding: 0 10px;
}

    .ismer-filokiralama-detay-services h3 {
        font-size: 16px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    .ismer-filokiralama-detay-services ul {
        list-style: none;
        padding: 0;
    }

    .ismer-filokiralama-detay-services li {
        padding: 8px 0;
        font-size: 14px;
        color: #555;
        display: flex;
        align-items: center;
    }

        .ismer-filokiralama-detay-services li::before {
            content: "•";
            color: #f2801a;
            font-weight: bold;
            margin-right: 10px;
        }
.tab-content {
    display: none; /* Varsayılan olarak gizle */
}

    .tab-content.active {
        display: block; /* Sadece aktif olanı göster */
    }
@media (max-width: 992px) {
    .ismer-filokiralama-detay-main-grid {
        grid-template-columns: 1fr;
    }
}

/* Sayfadan 20px içeride, havada asılı duran yapı */
.ismer-homeslider-new-viewport {
    padding: 20px;
    perspective: 2000px; /* 3D derinliği için kritik */
}

.ismer-homeslider-new-main {
    height: 72vh;
    border-radius: 16px;
    overflow: visible !important; /* 3D taşmalar için */
}

.ismer-homeslider-new-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Görsel ve Dinamik Zoom */
.ismer-homeslider-new-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.swiper-slide-active .ismer-homeslider-new-image {
    transform: scale(1.1);
}

/* Glassmorphism Panel */
.ismer-homeslider-new-info {
    position: relative;
    z-index: 3;
    margin-left: 5%;
    width: 450px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transform: translateZ(50px); /* Havada durma efekti */
}

.category-tag {
    display: inline-block;
    padding: 5px 15px;
    background: #f2801a; /* */
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ismer-homeslider-new-info h2 {
    color: #2a2a2a;
    font-size: 30px;
    margin-bottom: 15px;
}

.ismer-homeslider-new-info p {
    color: #2a2a2a;
    font-size: 16px;
    margin-bottom: 25px;
}

/* Hareketli Buton */
.ismer-homeslider-new-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2a2a2a;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

    .ismer-homeslider-new-cta::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 30px;
        height: 2px;
        background: #f2801a;
        transition: width 0.3s;
    }

    .ismer-homeslider-new-cta:hover::after {
        width: 100%;
    }

/* 3D Kontrol Paneli */
.ismer-homeslider-new-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.5);
    padding: 10px 20px;
    border-radius: 50px;
}
.ismer-kategoriyegore-new-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.ismer-kategoriyegore-new-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header Tasarımı: Minimalist ve Prestijli */
.ismer-kategoriyegore-new-header {
    margin-bottom: 30px;
    max-width: 600px;
}

.header-line {
    width: 40px;
    height: 4px;
    background: #f2801a; /* Kurumsal kırmızı */
    margin-bottom: 25px;
}

.ismer-kategoriyegore-new-header h3 {
    font-size: 32px;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.ismer-kategoriyegore-new-header p {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

/* Sütun Kapsayıcısı */
.ismer-kategoriyegore-new-wrapper {
    display: flex;
    height: 500px;
    border-radius: 0;
    overflow: hidden;
    gap: 2px; /* Sütunlar arası ince kurumsal boşluk */
}

/* Sütun Temel Yapısı */
.ismer-kategoriyegore-new-item {
    flex: 1; /* Hepsi eşit başlar */
    position: relative;
    background-size: cover;
    background-position: center;
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1); /* Yumuşak ve prestijli geçiş */
    cursor: pointer;
    overflow: hidden;
}

/* Karartma Overlay */
.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

/* İçerik Pozisyonlama */
.item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 30px;
    z-index: 3;
    color: #fff;
    white-space: nowrap; /* Metinlerin daralırken bozulmaması için */
}

.segment-prefix {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    display: block;
    margin-bottom: 5px;
}

.ismer-kategoriyegore-new-item h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Gizli Detaylar (Hover'da Görünür) */
.item-details {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.ismer-kategoriyegore-new-item:hover .item-details {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s; /* Sütun genişledikten sonra detaylar gelsin */
}

.item-details p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    width: 300px; /* Detayların genişliği */
    white-space: normal;
}

/* Buton Tasarımı */
.btn-clean {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding-bottom: 5px;
}

    .btn-clean::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: #f2801a;
        transition: width 0.3s;
    }

    .btn-clean:hover::after {
        width: 120%; /* Hafif genişleme */
    }

/* Hover Efekti: Sütun Genişlemesi */
.ismer-kategoriyegore-new-item:hover {
    flex: 3; /* Üzerine gelinen sütun 3 kat büyür */
}

/* Elektrikli Kategorisi İçin Özel Dokunuş */
.highlight h4 {
    color: #fff;
    text-shadow: 0 0 10px rgba(227, 30, 36, 0.5); /* Hafif ışık efekti */
}

/* Mobil Responsive */
@media (max-width: 1024px) {
    .ismer-kategoriyegore-new-wrapper {
        height: auto;
        flex-direction: column; /* Mobilde alt alta diz */
    }

    .ismer-kategoriyegore-new-item {
        height: 150px;
        flex: none;
        width: 100%;
    }

        .ismer-kategoriyegore-new-item:hover {
            height: 350px; /* Mobilde hover'da aşağı doğru büyür */
            flex: none;
        }
}
/* Kapsayıcıyı bozmaya gerek yok, not altına gelecek */

/* Agresif Not Tasarımı */
.ismer-arac-not-agresif {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f8f9fa; /* Hafif kurumsal gri fon */
    padding: 15px;
    border-radius: 10px;
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    margin-top: 10px; /* Görselden boşluk */
    border-left: 3px solid #f2801a; /* Kurumsal kırmızı çizgi */
    transition: all 0.3s;
}

    .ismer-arac-not-agresif svg {
        flex-shrink: 0;
        margin-top: 2px;
        color: #f2801a;
    }

    .ismer-arac-not-agresif:hover {
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
/* GALERİ BUTONU STİLİ */
.df-gallery-trigger {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0; /* Hover öncesi gap kapalı */
    padding: 10px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 44px; /* Sadece ikon boyutu */
    overflow: hidden;
    white-space: nowrap;
}

    .df-gallery-trigger:hover {
        width: 180px; /* Hoverda genişler */
        gap: 12px;
        padding: 10px 20px;
        background: #fff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

.gallery-icon svg {
    width: 22px;
    height: 22px;
    color: #f2801a; /* Kurumsal Kırmızı */
    display: block;
}

.df-gallery-trigger span {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.df-gallery-trigger:hover span {
    opacity: 1;
    transform: translateX(0);
}

.gallery-count {
    position: absolute;
    top: -4px;
    right: 4px;
    color: #f2801a;
    font-size: 12px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 10px;
    transition: 0.3s;
}

.df-gallery-trigger:hover .gallery-count {
    transform: scale(0); /* Hoverda sayı kaybolur, yazı gelir */
}
.ismer-sss-wrapper {
    background: #fff;
    padding: 30px 0;
    overflow: hidden;
}

.ismer-sss-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Tasarımı */
.ismer-sss-header {
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    padding: 10px 0;
}

.ismer-sss-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ismer-sss-header h1 {
    font-size: 42px;
    color: #0f172a;
    margin: 20px 0;
    font-weight: 800;
}

    .ismer-sss-header h1 span {
        color: #0d9488;
        position: relative;
    }

.ismer-sss-header p {
    color: #64748b;
    font-size: 18px;
}

/* Akordeon Liste */
.ismer-sss-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ismer-sss-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Input Kontrol (Gizli) */
.ismer-sss-input {
    display: none;
}

/* Soru Başlığı */
.ismer-sss-label {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    position: relative;
    user-select: none;
}

.ismer-sss-number {
    margin-right: 20px;
    color: #f2801a;
    font-weight: 900;
    opacity: 0.3;
    font-size: 24px;
    transition: 0.3s;
}

/* Ok İkonu Animasyonu */
.ismer-sss-icon {
    margin-left: auto;
    width: 24px;
    height: 24px;
    position: relative;
    transition: 0.4s;
}

    .ismer-sss-icon::before, .ismer-sss-icon::after {
        content: '';
        position: absolute;
        background: #94a3b8;
        border-radius: 2px;
    }

    .ismer-sss-icon::before {
        width: 100%;
        height: 2px;
        top: 50%;
        transform: translateY(-50%);
    }

    .ismer-sss-icon::after {
        width: 2px;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
        transition: 0.4s;
    }

/* İçerik Alanı Animasyonu */
.ismer-sss-content {
    max-height: 0;
    padding: 0 30px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

/* --- AKTİF DURUM (Sihirli Kısım) --- */
.ismer-sss-input:checked + .ismer-sss-label {
    color: #f2801a;
    background: #fdf9f9;
}

    .ismer-sss-input:checked + .ismer-sss-label .ismer-sss-number {
        opacity: 1;
        transform: scale(1.1);
    }

    .ismer-sss-input:checked + .ismer-sss-label .ismer-sss-icon {
        transform: rotate(135deg);
    }

        
.ismer-sss-input:checked ~ .ismer-sss-content {
    max-height: 500px;
    padding: 20px 30px 20px 75px;
    opacity: 1;
}

.ismer-sss-item:has(.ismer-sss-input:checked) {
    border-color: #f2801a;
    box-shadow: 0 20px 25px -5px rgb(251 92 83 / 3%);
    transform: translateY(-2px);
}

/* Giriş Animasyonu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ismer-sss-item {
    animation: fadeInUp 0.5s ease backwards;
}

    .ismer-sss-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .ismer-sss-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .ismer-sss-item:nth-child(3) {
        animation-delay: 0.3s;
    }
.ismer-sss-glow-circle {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 150px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    filter: blur(40px);
}

/* Badge (Rozet) Tasarımı */
.ismer-sss-badge-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    animation: bounceSlow 3s infinite ease-in-out;
}

.ismer-sss-badge {
    background: #ffffff;
    border: 1px solid rgba(13, 148, 136, 0.2);
    color: #0d9488;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.ismer-sss-badge-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

/* Başlık ve Gradyan Yazı */
.ismer-sss-main-title {
    font-size: 28px;
    font-weight: 900;
    color: #001a41;
    line-height: 1.1;
    margin: 0;
    text-align: left;
}

.ismer-sss-gradient-text {
    display: block;
    background: linear-gradient(90deg, #0d9488, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Başlık Altı Çizgi */
.ismer-sss-title-line {
    width: 60px;
    height: 4px;
    background: #0d9488;
    margin: 25px auto;
    border-radius: 10px;
    position: relative;
}

    .ismer-sss-title-line::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 4px;
        background: #2dd4bf;
        right: -15px;
        border-radius: 10px;
    }

/* Açıklama Metni */
.ismer-sss-lead {
    font-size: 20px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

    .ismer-sss-lead strong {
        color: #0f172a;
        border-bottom: 2px solid rgba(13, 148, 136, 0.2);
    }

/* Animasyonlar */
@keyframes bounceSlow {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Uyumluluk */
@media (max-width: 768px) {
    .ismer-sss-main-title {
        font-size: 36px;
    }

    .ismer-sss-lead {
        font-size: 16px;
        padding: 0 20px;
    }
}
.ismer-mega-col h4 a {
    color: #333; /* Ana başlık rengi */
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-bottom: 0;
    padding-bottom: 0;
}
/* Ana menü öğesi */
.ismer-has-dropdown {
    position: relative;
    list-style: none;
    display: inline-block;
}

/* Alt menü kutusu */
.ismer-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 10px 0;
    margin: 0;
    display: none; /* JS kullanmıyorsan hover ile açılır */
    z-index: 1000;
    border-radius: 4px;
}

/* Hover durumunda göster */
.ismer-has-dropdown:hover .ismer-dropdown-menu {
    display: block;
}

.ismer-dropdown-menu li {
    list-style: none;
}
    /* Linklerin stili */
    .ismer-dropdown-menu li a {
        display: block;
        padding: 8px 20px;
        color: #333;
        text-decoration: none;
        font-size: 15px;
        transition: all 0.3s;
    }

        .ismer-dropdown-menu li a:hover {
            background-color: #f8f9fa;
            color: #393188; /* Senin tema renginle değiştir */
            padding-left: 25px;
        }

/* Başlıklar (Kiralama Seçenekleri vb.) */
.dropdown-header {
    padding: 8px 20px;
    font-weight: 700;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ayırıcı çizgi */
.dropdown-divider {
    height: 1px;
    background-color: #eee;
    margin: 5px 0;
    list-style: none;
}
/* Mobil Gizleme */
@media (max-width: 1024px) {
    .ismer-header-menu-list {
        display: none;
    }
}
.ismer-hizmetlerimiznew-section { padding: 40px 0; background: #fff; }
.ismer-hizmetlerimiznew-container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }

/* Header Alanı */
.ismer-hizmetlerimiznew-header { text-align: center; margin-bottom: 50px; }
.hizmet-tag { color: #FF8C00; font-weight: bold; text-transform: uppercase; font-size: 13px; }
.ismer-hizmetlerimiznew-header h1 { font-size: 32px; color: #111; margin: 10px 0; }

/* Grid */
.ismer-hizmetlerimiznew-grid { display: grid; grid-template-columns: 1fr 350px; gap: 40px; }

/* Liste ve SVG Kutuları */
.ozellik-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.svg-icon-box { 
    width: 48px; height: 48px; background: #FFF5E6; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 10px; flex-shrink: 0;
}
.svg-icon-box svg { width: 28px; height: 28px; }

/* Sidebar */
.sidebar-card-dark { background: #1a1a1a; padding: 30px; border-radius: 12px; color: #fff; }
.sidebar-card-dark h4 { color: #fff; margin-bottom: 20px; font-size: 18px; border-bottom: 1px solid #333; padding-bottom: 10px; }
.sidebar-card-dark ul { list-style: none; padding: 0; margin-bottom: 25px; }
.sidebar-card-dark ul li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; color: #ccc; }
.sidebar-card-dark ul li svg { color: #FF8C00; }

.hizmet-btn-contact { 
    display: block; width: 100%; padding: 15px; background: #FF8C00; color: #fff; 
    text-align: center; text-decoration: none; border-radius: 6px; font-weight: 700;
    transition: 0.3s;
}
.hizmet-btn-contact:hover { background: #e67e00; }

@media (max-width: 991px) {
    .ismer-hizmetlerimiznew-grid { grid-template-columns: 1fr; }
}
.ismer-hizmetlerimiznew-content .content-text p {
    font-size: 16px;
    line-height: 1.85; /* Daha rahat bir okuma için */
    color: #333;
    margin-bottom: 30px;
}

.ismer-hizmetlerimiznew-content h3 {
    font-size: 26px;
    color: #111;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Sidebar içerisindeki listenin aralıkları */
.sidebar-card-dark ul li {
    padding: 8px 0;
    font-weight: 500;
}

/* SVG İkon Kutularının Vurgusu */
.svg-icon-box {
    border: 1px solid #ffe0b3; /* Çok hafif bir çerçeve */
}
.hizmetlerimiz-banner img{
    border-radius:20px;
    margin-bottom:25px;
}
.df-hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 84px);
    overflow: hidden;
    background: #000;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

/* Arka Plan Temel Durumu */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    /* Hafif karartma (yazı okunabilirliği için) */
    background-image: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
    /* BAŞLANGIÇTA ZOOM: 1.1 */
    transform: scale(1.15);
    opacity: 0;
    transition: transform 1.5s ease-out, opacity 1s ease-out; /* Turkrent'teki gibi tok bir geçiş */
}

/* Swiper Aktifleştiğinde Arka Plan Zoom-Out Yaparak Gelir */
.swiper-slide-active .slide-bg {
    transform: scale(1); /* Hedef: Normal boyutu */
    opacity: 1;
}

/* İçerik Konumlandırma */
.slide-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.slide-content {
    flex: 1;
    max-width: 600px;
    color: #fff;
    position: relative;
    z-index: 15;
}

/* Yazı ve Araç Animasyonları (Yumuşak Zoom & Fade) */
.slide-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin: 20px 0;
    opacity: 0;
    transform: translateY(30px) scale(0.95); /* Başlangıçta basık zoom */
    transition: all 1s ease-out 0.4s;
}

.slide-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: all 0.8s ease-out 0.6s;
}

.slide-car-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: translateX(50px) scale(0.9); /* Başlangıçta sağda ve küçük zoom */
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
}

    .slide-car-image img {
        max-width: 120%;
        height: auto;
        filter: drop-shadow(0 20px 50px rgba(0,0,0,0.4));
    }

/* Swiper Aktifleştiğinde Yazıları ve Aracı Getir */
.swiper-slide-active .slide-title {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.swiper-slide-active .slide-text {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.swiper-slide-active .slide-car-image {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Navigasyon ve Pagination Stilleri */
.df-hero-navigation {
    position: absolute;
    bottom: 40px;
    left: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.df-hero-prev, .df-hero-next {
    position: static;
    color: #fff;
    width: 44px;
    height: 44px;
    margin-top: 0;
}

    .df-hero-prev:after, .df-hero-next:after {
        font-size: 18px;
        font-weight: 900;
    }

    .df-hero-prev:hover, .df-hero-next:hover {
        color: #ff5a5f;
    }

.df-hero-pagination {
    position: static;
    width: auto;
    color: #fff;
}

    .df-hero-pagination .swiper-pagination-bullet {
        background: #fff;
        opacity: 0.5;
        margin: 0 4px;
    }

    .df-hero-pagination .swiper-pagination-bullet-active {
        background: #ff5a5f;
        opacity: 1;
    }

/* Butonlar */
.btn-primary {
    background: #f2801a;
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-right: 15px;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}
.df-hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 99;
}

/* Mouse Simgesi */
.df-scroll-icon {
    width: 35px;
    height: 55px;
    border: 2px solid #fff;
    border-radius: 35px;
    position: relative;
}

.df-scroll-dot {
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
    0% {
        opacity: 0;
        top: 8px;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 22px;
    }
}

/* Çizgili Pagination Bullets */
.df-hero-bullets {
    position: relative !important;
    bottom: 0 !important;
    display: flex;
    gap: 8px;
}

    .df-hero-bullets .swiper-pagination-bullet {
        width: 12px; /* Normal nokta genişliği */
        height: 4px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 2px;
        opacity: 1;
        transition: all 0.4s ease;
        margin: 0 !important;
    }

    /* Aktif olan uzun çizgi (Dash) */
    .df-hero-bullets .swiper-pagination-bullet-active {
        width: 35px; /* Aktif olduğunda uzayan çizgi */
        background: #fff;
    }
/* Genel Alert Kutusu */
.alert {
    position: relative;
    padding: 1rem 1.25rem;
    padding-left: 3rem; /* İkon için soldan boşluk */
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    background-repeat: no-repeat;
    background-position: 1rem center;
    background-size: 1.25rem;
}

/* Hata Mesajı (Kırmızı - Ünlem İkonlu) */
.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
    /* SVG Ünlem İkonu */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23842029' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995z'/%3E%3C/svg%3E");
}

/* Başarı Mesajı (Yeşil - Onay İkonlu) */
.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
    /* SVG Onay İkonu */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230f5132' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E");
}

/* Başarılı Form Gönderimi İçeriği */
.iletisim-formu-basarili {
    text-align: center;
    padding: 10px;
}

    .iletisim-formu-basarili h3 {
        margin-top: 0;
        color: #0f5132;
        font-weight: 700;
    }
.spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: 0.2em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
    margin-right: 5px;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

/* Buton pasifken tıklamayı tamamen keser */
.form-send-btn[style*="pointer-events: none"] {
    cursor: not-allowed;
}
/* Sayfalama (Paging) */
.ismer-paging {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.ismer-paging-info {
    font-size: 13px;
    color: #64748b;
}

.ismer-paging-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ismer-page-num {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

    .ismer-page-num:hover, .ismer-page-num.active {
        background: #fb5c53;
        color: #fff;
        border-color: #fb5c53;
    }

.ismer-page-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    color: #64748b;
    text-decoration: none;
}

    .ismer-page-btn.disabled {
        opacity: 0.4;
        pointer-events: none;
    }

    .ismer-page-btn svg {
        width: 18px;
    }
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top:7px;
}

.filter-tag {
    background: #f1f1f1;
    border: 1px solid #ccc;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s;
}

    .filter-tag:hover {
        background: #e2e2e2;
        color: #d9534f;
    }

    .filter-tag i {
        margin-left: 5px;
        font-weight: bold;
        color: #999;
    }
.df-hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

/* Dikey Dalga Ayarı */
.vertical-wave-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%; /* Ekranın yarısından fazlasını kapsayarak geniş bir güvenli alan sunar */
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

    .vertical-wave-mask svg {
        width: 100%;
        height: 100%;
        display: block;
    }
.df-hero-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
/* Okunabilirlik için Sol Karartma */
.vertical-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 50%);
    z-index: 2;
}

/* Alt Dalga Ayarı */
.hero-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 20;
    line-height: 0;
}

    .hero-wave-divider svg {
        width: 100%;
        height: 120px;
    }



.slide-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.slide-text {
    font-size: 18px;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 30px;
}