/* =====================================================
   ELITE PREMIUM SLOGAN BLOCK – SAFE / SCOPED
   Çakışma önleyici versiyon
===================================================== */

/* === ANA BLOK === */
.slogan-block{
    position: relative;
    width: 100%;
    min-height: 240px;

    background-image: var(--slogan-desktop-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    margin: 0px 0;

    font-family: "Inter","SF Pro Display","Segoe UI","Helvetica Neue",Arial,sans-serif;
}

/* === OVERLAY === */
.slogan-block .slogan-overlay{
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(0,0,0,.75) 0%,
            rgba(0,0,0,.55) 35%,
            rgba(0,0,0,.35) 60%,
            rgba(0,0,0,.15) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,.45) 0%,
            rgba(0,0,0,.15) 100%
        );
}

/* === İÇERİK === */
.slogan-block .slogan-inner{
    position: relative;
    z-index: 2;

    max-width: 1240px;

    /* ⬅️ SOLA KAYDIRMA (≈ 4 cm) */
    padding-left: 10px;
    padding-right: 550px;

    margin: 0 auto;

    color: #ffffff;
}
/* === SUBTITLE === */
.slogan-block .slogan-subtitle{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.6px;
    text-transform: uppercase;

    color: #facc15;
    margin-bottom: 14px;
}

.slogan-block .slogan-subtitle::before{
    content: "";
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, #facc15, transparent);
}

/* === TITLE === */
.slogan-block .slogan-title{
    font-size: 44px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.8px;

    max-width: 780px;
    margin: 0 0 16px 0;

    text-shadow: 0 6px 24px rgba(0,0,0,.35);
}

/* === DESCRIPTION === */
.slogan-block .slogan-description{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;

    max-width: 640px;
    color: rgba(255,255,255,.88);

    margin-bottom: 28px;
}

/* === BUTTON === */
.slogan-block .slogan-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 40px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;

    color: #111;
    text-decoration: none;

    background: linear-gradient(135deg, #facc15, #eab308);
    border-radius: 999px;

    box-shadow:
        0 12px 32px rgba(250,204,21,.35),
        inset 0 0 0 1px rgba(0,0,0,.18);

    transition: all .35s ease;
}

.slogan-block .slogan-button:hover{
    transform: translateY(-3px);
    box-shadow:
        0 20px 46px rgba(250,204,21,.55),
        inset 0 0 0 1px rgba(0,0,0,.28);
}

/* === MOBİL === */
@media (max-width: 768px){

    .slogan-block{
        min-height: 420px;
        margin: 28px 0;
        background-image: var(--slogan-mobile-bg);
    }

    .slogan-block .slogan-inner{
        padding: 0 22px;
    }

    .slogan-block .slogan-title{
        font-size: 30px;
        line-height: 1.18;
    }

    .slogan-block .slogan-description{
        font-size: 15px;
        margin-bottom: 24px;
    }
}
