:root {
    --orange: #b85732;
    --orange-dark: #8f3c1c;
    --brown-dark: #3a2220;
    --bg-light: #faf5f0;
    --border-radius: 999px;
    --transition: 0.25s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%; overflow: hidden;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    background: #000;
    color: #fff;
}


/* ANA YAPI  ---------------------------------------------------- */

.landing-wrapper {
    display: flex;
    min-height: 100vh;
}


/* SOL: SLIDER  ------------------------------------------------- */

.left-slider {
    position: relative;
    flex: 2; height: 100vh;
    overflow: hidden;
    background: #000;
}

.logo-box {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 20;
    width: 180px;
    height: 180px;
    background: #422C30BF;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
}

.logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-box .logo-placeholder {
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Slider navigasyon / bulletlar */
.hero-pagination.swiper-pagination{
    position: relative; width: fit-content;
    justify-content: center; margin-top: 15px;
}
.hero-navigation {
    position: absolute;
    width: calc(100% - 100px);
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-prev,
.hero-next {
    height: 50px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px); width: 120px;
    transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    border-color: #fff;
}

.hero-prev span,
.hero-next span {
    font-size: 18px;
    line-height: 1;
    user-select: none;
}

.hero-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: width var(--transition), background var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 22px;
    background: #ffffff;
}


/* SAĞ: FORM + CTA  -------------------------------------------- */

.right-sidebar {
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
}

.form-section {
    flex: 1;
    background: var(--orange);
    color: #fff;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 13px;
    opacity: 0.9;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}
.form-control.error{
    border-color: #FF0;
}
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

textarea.form-control {
    border-radius: 20px;
    resize: vertical;
    min-height: 90px; resize: none;
}

.checkbox-group {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 11px;
    line-height: 1.4;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox input {
    margin-top: 2px;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.checkbox a {
    color: #ffe8d5;
    text-decoration: underline;
}

.primary-btn {
    margin-top: 16px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 999px;
    border: none;
    background: #fff;
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.primary-btn:hover {
    background: #ffe4d2;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.primary-btn:active {
    transform: translateY(0);
    box-shadow: none;
}


/* ALT CTA ------------------------------------------------------ */
.grecaptcha-badge{ display: none; }
.cta-btn-bg{
    padding: 30px 50px;
    background: url("../img/rbg.jpg") no-repeat center;
    position: relative;;
}
.cta-btn-bg:after{
    content: ""; display: block; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(10px);
    position: absolute; left: 0px; top: 0px;
}
.cta-booking {
    display: block; z-index: 3;
    border-radius: 25px; position: relative;
    text-align: center;
    padding: 22px 24px;
    background-color: var(--brown-dark);
    background-image: url("../img/rbtn.svg");
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.cta-booking:hover {
    background: #251312;
    transform: translateY(-1px);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.4);
}

.cta-booking:active {
    transform: translateY(0);
    box-shadow: none;
}


/* RESPONSIVE --------------------------------------------------- */

@media (max-width: 1024px) {
    .landing-wrapper {
        flex-direction: column;
    }
    .left-slider {
        height: 60vh;
        flex: 0 0 auto;
    }
    .right-sidebar {
        min-width: 0;
    }
    .form-section {
        padding: 32px 24px;
    }
    .form-title {
        font-size: 24px;
    }
    .hero-navigation {
        bottom: 18px;
    }
    .logo-box {
        width: 150px;
        height: 150px;
    }
}
.popupPage{ max-width:800px !important; max-height:80vh; overflow:auto; font-size:14px; }
.popupPage a{ color:inherit; text-decoration:underline; }
.popupPage p{ margin:10px 0px; }
.popupPage ul{ padding-left:40px; }
.popupPage ul li { margin:5px 0px; }
@media (max-width: 600px) {
    html, body {height: 100%; overflow: auto;}
    .left-slider {
        height: 55vh;
    }
    .logo-box {
        width: 130px;
        height: 130px;
    }
    .hero-navigation {
        gap: 10px;
        padding: 8px 12px;
    }
    .hero-prev,
    .hero-next {
        width: 90px;
        height: 40px;
    }
}