/* Yurtbay Style Big Box CTA Section */
.yurtbay-cta-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f9f8f6;
}

.yurtbay-big-box {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Full Bleed Image with zoom effect on hover if desired, or just static */
.yurtbay-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Z-Index ve Attachment manipülasyonu ile Parallax */
    z-index: 1;
}

/* Content Box */
.yurtbay-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.yurtbay-text-box {
    background: #ffffff;
    padding: 60px 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* Optional Top Accent Line */
.yurtbay-text-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--stone-beige, #c8b598);
}

.yurtbay-title {
    font-size: 36px;
    font-weight: var(--theme-heading-weight) !important;
    color: var(--theme-heading, #1e3d33);
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: inherit;
}

.yurtbay-desc {
    font-size: 16px;
    color: var(--theme-body-color, #666);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: var(--theme-body-weight) !important;
}

/* Action Link with Arrow Circle */
.yurtbay-action {
    display: inline-block;
}

.yurtbay-btn-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.yurtbay-btn-link span {
    font-size: 13px;
    font-weight: var(--theme-heading-weight) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--theme-heading, #1e3d33);
    transition: color 0.3s ease;
}

.yurtbay-btn-link .arrow-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(var(--stone-green-rgb, 30, 61, 51), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-heading, #1e3d33);
    transition: all 0.3s ease;
}

.yurtbay-btn-link:hover span {
    color: var(--theme-accent, #c8b598);
}

.yurtbay-btn-link:hover .arrow-circle {
    background: var(--theme-accent, #c8b598);
    border-color: var(--theme-accent, #c8b598);
    color: #ffffff;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .yurtbay-big-box {
        min-height: auto;
    }

    .yurtbay-content-wrapper {
        padding: 80px 15px;
    }

    .yurtbay-text-box {
        padding: 50px 40px;
        margin: 0 auto;
    }

    .yurtbay-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .yurtbay-bg-image {
        background-attachment: scroll;
        /* Mobilde performans için fixed kapatılır */
    }

    .yurtbay-content-wrapper {
        padding: 60px 15px;
    }

    .yurtbay-text-box {
        padding: 40px 25px;
    }

    .yurtbay-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .yurtbay-desc {
        font-size: 15px;
        margin-bottom: 30px;
        line-height: 1.6;
    }
}