/* Sıfırlama ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --bah-ana-renk: #ffa22d;      /* Turuncu buton rengi */
    --bah-ikincil-renk: #72bfd3;  /* Mavi buton rengi */
    --bah-yazi: #1a2433;
    --bah-yazi-ikincil: #5b6b80;
    --bah-arka: #f0f5f8;
    --bah-beyaz: #ffffff;
}

/* Genel Gövde */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--bah-yazi);
    background-color: var(--bah-arka);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, p {
    word-break: break-word;
}

.sarmal-kapsayici {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Üst Kısım */
.bah-ustluk {
    background-color: var(--bah-beyaz);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(10, 24, 40, 0.08);
    border-bottom: 2px solid rgba(114, 191, 211, 0.4);
}

.ust-kapsayici {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.bah-logo img {
    height: 50px;
    width: auto;
}

/* Mobil Menü Butonu */
.mobil-menu-dugme {
    display: none;
    background: none;
    border: 1px solid var(--bah-yazi-ikincil);
    color: var(--bah-yazi);
    background-color: var(--bah-beyaz);
    border-radius: 6px;
    font-size: 24px;
    cursor: pointer;
    padding: 6px 10px;
}

/* Navigasyon */
#anaGezinme {
    flex: 1;
    display: flex;
    justify-content: center;
}

#anaGezinme ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

#anaGezinme ul li a {
    color: var(--bah-yazi);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 6px;
}

#anaGezinme ul li a:hover {
    background-color: var(--bah-ikincil-renk);
    color: var(--bah-beyaz);
    transform: translateY(-2px);
}

/* Üst Butonlar */
.ust-butonlar {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Genel Buton Stili */
.bah-buton {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.25s ease;
    border: 2px solid var(--bah-ikincil-renk);
    color: var(--bah-beyaz);
    background-color: var(--bah-ikincil-renk);
    cursor: pointer;
    font-size: 0.95rem;
}

.bah-buton-ilk {
    background-color: var(--bah-ana-renk);
    border-color: var(--bah-ana-renk);
}

.bah-buton-ikincil {
    background-color: transparent;
    color: var(--bah-ikincil-renk);
    border-color: var(--bah-ikincil-renk);
}

.bah-buton-ikincil:hover {
    background-color: var(--bah-ikincil-renk);
    color: var(--bah-beyaz);
}

.bah-buton.bah-buton-ilk:hover {
    color: var(--bah-beyaz);
}

.bah-buton-ust {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.bah-buton:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 24, 40, 0.18);
    opacity: 0.96;
}

/* Hero Bölümü */
.bahsegel-hero {
    background: linear-gradient(135deg, #f9fbfd 0%, #e3f1f6 100%);
    padding: 100px 0;
    border-bottom: 2px solid rgba(114, 191, 211, 0.4);
}

.bahsegel-hero-icerik {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.bahsegel-hero-metin {
    flex: 1 1 55%;
    max-width: 540px;
}

.bahsegel-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 18px;
    color: var(--bah-yazi);
}

.bahsegel-hero p {
    font-size: 1.02rem;
    margin-bottom: 24px;
    color: var(--bah-yazi-ikincil);
}

.bahsegel-hero-gorsel {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
}

.bahsegel-hero-gorsel img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(10, 24, 40, 0.35);
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bahsegel-hero-gorsel:hover img {
    transform: scale(1.04);
    box-shadow: 0 24px 55px rgba(10, 24, 40, 0.45);
}

/* Buton Grupları */
.buton-grup {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Sayfa Bölümleri */
.bahsegel-bolum {
    padding: 80px 0;
}

.bahsegel-bolum-vurgu {
    background-color: #e7f0f5;
    border-top: 1px solid rgba(114, 191, 211, 0.35);
    border-bottom: 1px solid rgba(114, 191, 211, 0.35);
}

/* Başlıklar */
.bahsegel-baslik {
    font-size: 2.1rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--bah-yazi);
}

.bahsegel-baslik span {
    color: var(--bah-ikincil-renk);
}

.bahsegel-altbaslik {
    text-align: center;
    font-size: 1.05rem;
    color: var(--bah-yazi-ikincil);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* İçerik Kartları */
.bahsegel-kart {
    background-color: var(--bah-beyaz);
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px solid rgba(114, 191, 211, 0.5);
    box-shadow: 0 5px 18px rgba(15, 35, 52, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bahsegel-kart:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(15, 35, 52, 0.12);
}

.bahsegel-kart h3 {
    font-size: 1.7rem;
    margin-bottom: 18px;
    color: var(--bah-yazi);
}

.bahsegel-kart p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--bah-yazi-ikincil);
    margin-bottom: 20px;
}

/* SEO İçerik Kutuları */
.bahsegel-seo-icerik {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.bahsegel-seo-kutu {
    background-color: var(--bah-beyaz);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--bah-ikincil-renk);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(15, 35, 52, 0.06);
}

.bahsegel-seo-kutu:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 22px rgba(15, 35, 52, 0.11);
}

.bahsegel-seo-kutu h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: var(--bah-yazi);
}

.bahsegel-seo-kutu p {
    color: var(--bah-yazi-ikincil);
    line-height: 1.7;
}

/* Avantaj Grid */
.bahsegel-avantaj-tablosu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bahsegel-avantaj-oge {
    background-color: var(--bah-beyaz);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(15, 35, 52, 0.06);
}

.bahsegel-avantaj-oge:hover {
    border-color: rgba(255, 162, 45, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(15, 35, 52, 0.12);
}

.bahsegel-ikon {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bahsegel-ikon img {
    max-width: 300px;
    height: auto;
    display: block;
    border-radius: 18px;
}

.bahsegel-avantaj-oge h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--bah-yazi);
}

.bahsegel-avantaj-oge p {
    color: var(--bah-yazi-ikincil);
    line-height: 1.6;
}

/* Alt Kısım */
.bah-altlik {
    background-color: var(--bah-beyaz);
    padding: 60px 0 20px;
    border-top: 2px solid rgba(114, 191, 211, 0.4);
}

.alt-icerik {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.alt-sutun h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: var(--bah-yazi);
}

.alt-sutun p {
    color: var(--bah-yazi-ikincil);
    line-height: 1.8;
    margin-bottom: 14px;
}

.alt-sutun ul {
    list-style: none;
}

.alt-sutun ul li {
    margin-bottom: 9px;
}

.alt-sutun ul li a {
    color: var(--bah-yazi-ikincil);
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 0.95rem;
}

.alt-sutun ul li a:hover {
    color: var(--bah-yazi);
    padding-left: 4px;
}

.alt-kunye {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(207, 220, 230, 0.9);
    color: var(--bah-yazi-ikincil);
    font-size: 0.9rem;
}

/* Animasyonlar */
.hareketli-kutu {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gorundu-animasyon {
    opacity: 1;
    transform: translateY(0);
}

/* Linkler ve Vurgular */
a {
    color: var(--bah-ikincil-renk);
    transition: all 0.25s ease;
}

a:hover {
    color: var(--bah-ana-renk);
}

strong {
    color: var(--bah-yazi);
    font-weight: 600;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .sarmal-kapsayici {
        padding: 0 12px;
        max-width: 100%;
    }

    .ust-kapsayici {
        position: relative;
        justify-content: flex-start;
        gap: 10px;
        flex-wrap: wrap;
    }

    .ust-kapsayici > * {
        min-width: 0;
    }

    .mobil-menu-dugme {
        display: block;
        order: 1;
    }

    .bah-logo {
        order: 2;
        flex: 0 0 auto;
        text-align: left;
        margin-right: auto;
    }

    .bah-logo img {
        height: 38px;
    }

    .ust-butonlar {
        display: flex;
        order: 3;
        gap: 8px;
        margin-left: auto;
    }

    .bah-buton-ust {
        padding: 8px 14px;
        font-size: 0.82rem;
    }

    #anaGezinme {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bah-beyaz);
        border-top: 1px solid rgba(114, 191, 211, 0.4);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        order: 4;
        width: 100%;
    }

    #anaGezinme.aktif-gezinti {
        max-height: 500px;
    }

    #anaGezinme ul {
        flex-direction: column;
        padding: 16px 18px 20px;
        gap: 8px;
    }

    .bahsegel-hero {
        padding: 70px 0;
    }

    .bahsegel-hero-icerik {
        flex-direction: column-reverse;
        text-align: center;
    }

    .bahsegel-hero-metin {
        max-width: 100%;
    }

    .bahsegel-hero h1 {
        font-size: 1.8rem;
    }

    .bahsegel-hero p {
        font-size: 0.98rem;
    }

    .bahsegel-baslik {
        font-size: 1.7rem;
    }

    .buton-grup {
        flex-direction: column;
        align-items: center;
    }

    .buton-grup .bah-buton {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .bahsegel-kart {
        padding: 22px 18px;
        max-width: 100%;
    }

    .bahsegel-seo-icerik {
        grid-template-columns: 1fr;
    }

    .bahsegel-seo-kutu {
        width: 100%;
        box-sizing: border-box;
        padding: 22px 18px;
    }

    .bahsegel-seo-kutu:hover {
        transform: none;
    }

    .bahsegel-avantaj-tablosu {
        grid-template-columns: 1fr;
    }

    .alt-icerik {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .alt-sutun {
        text-align: center;
    }

    .alt-sutun ul {
        padding-left: 0;
    }

    .alt-sutun ul li {
        justify-content: center;
    }

    /* Avantaj kartları и иконки */
    .bahsegel-avantaj-oge {
        max-width: 100%;
        padding: 24px 18px;
    }

    .bahsegel-ikon img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .bahsegel-hero {
        padding: 55px 0;
    }

    .bahsegel-bolum {
        padding: 55px 0;
    }

    .bahsegel-hero h1 {
        font-size: 1.5rem;
    }

    .bahsegel-baslik {
        font-size: 1.5rem;
    }
}
