* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto';
}

body, html {
    height: 100%;
    width: 100%; background: #224ca0;
}

.container {
    display: flex;
    height: 100vh;
}

/* ===== SLIDER ALANI ===== */
.slider-area {
    width: calc(100% - 350px);
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

/* ===== FORM ALANI ===== */
.form-area {
    width: 350px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.08);
    background: #134923;
}

.form-area p{ margin-bottom: 10px; color: #FFF; }

.form-area h2 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #FFF;
    text-align: center;
}
form .checkbox{
    color: #FFF; font-size: 14px;
}
.phone_col{
    margin-bottom: 15px;
}
.phone_col .iti{ width: 100%; }
body .form-area input.error,body .form-area select.error{
    border-color:#F00;
}
.checkbox.error_checkbox{
    color: #F00;
}
.checkbox.error_checkbox::before{
    border-color: #F00;
}
.form-area input,.form-area select,
.form-area button {
    width: 100%;
    padding: 12px; outline: none;
    margin-bottom: 15px;
    border: 2px solid transparent;
    border-radius: 3px;
    font-size: 16px;
}

.form-area button {
    background: #f6b85d;
    color:#134923; font-weight: 600;
    border: none; text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
}

.form-area button:hover {
    background: #FFF;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .form-area {
        width: 100%;
        height: auto;
        box-shadow: none;
    }

    .slider-area {
        width: 100%;
        height: 300px;
    }
}
header{
    position: absolute; z-index: 99;
    width: 100%; left: 0; top: 0; padding: 40px;
}

header .logo img{
    filter: invert(1) brightness(100);
    max-width: 150px;
}

.checkbox {
    position: relative;
    align-items: center;
    font-size: 12px;
    color: #333; padding-left: 30px;
    cursor: pointer; display: block;
    user-select: none; margin-bottom: 15px;
    gap: 8px;
}

.checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Görsel checkbox kutusu */
.checkbox span {
    position: absolute; left: 0; top: 0;
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid #007bff;
    border-radius: 4px;
    display: inline-block;
    background: #fff;
    transition: all 0.2s ease;
}

/* İşaretli durumu */
.checkbox input[type="checkbox"]:checked + span,
.checkbox input[type="checkbox"]:checked ~ span::before,
.checkbox input[type="checkbox"]:checked ~ label::before,
.checkbox input[type="checkbox"]:checked ~ ::before {
    border-color: #f6b85d;
    background-color: #f6b85d;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.173 13.414a.997.997 0 0 1-.707-.293l-3.586-3.586a1 1 0 1 1 1.414-1.414L6.173 10.999l6.293-6.293a1 1 0 0 1 1.414 1.414l-7 7a.997.997 0 0 1-.707.294z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

/* Link için küçük uyum */
.checkbox a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fancybox__slide.has-iframe .fancybox__content{
    max-width: 700px;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}

.slide-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: #fff;
    max-width: 600px;
    z-index: 2;
}

.slide-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 16px;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Arka plan karartması */
.swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0.1));
    z-index: 1;
}

/* Responsive düzen */
@media (max-width: 768px) {
    .slide-content {
        left: 20px;
        bottom: 30px;
        max-width: 90%;
    }

    .slide-content h2 {
        font-size: 22px;
    }

    .slide-content p {
        font-size: 14px;
        line-height: 1.2;
    }
}