/* CTA Banner Section */
.cta-banner-section {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--kütüp-library--dark-slate-grey) 0%, var(--kütüp-library--dark-slate-grey-x) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-banner-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.cta-banner-description {
    max-width: 500px;
}

.cta-banner-description p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}

/* Button - orange gradient like header */
.cta-banner-button {
    position: relative;
    display: inline-block;
    padding: 16px 32px;
    background: var(--orange-medium);
    color: var(--black-blue);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: color 0.3s ease;
    margin-top: 10px;
    overflow: hidden;
}

.cta-banner-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(237deg, #ffa31b, #ffc956);
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: -1;
}

.cta-banner-button:hover::before {
    opacity: 0;
}

.cta-banner-button:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
    .cta-banner-section {
        padding: 60px 20px;
    }

    .cta-banner-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .cta-banner-section {
        padding: 50px 20px;
    }

    .cta-banner-title {
        font-size: 24px;
    }

    .cta-banner-description p {
        font-size: 16px;
    }

    .cta-banner-button {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 479px) {
    .cta-banner-section {
        padding: 40px 16px;
    }

    .cta-banner-title {
        font-size: 22px;
    }

    .cta-banner-description p {
        font-size: 15px;
    }

    .cta-banner-button {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
}
