.reservation-section {
    margin: 80px auto;
    max-width: 1000px;
    background: #fff;
    padding: 50px;
    border-radius: 28px;

    /* Premium çerçeve efekti */
    position: relative;
    border: 2px solid #003d8f;
    box-shadow:
        0 0 18px #005eff,
        0 0 28px #003d8f,
        0 4px 35px rgba(0,0,0,0.08);
}

/* ===== HEADER ===== */
.reservation-header {
    text-align: center;
    margin-bottom: 35px;
}

.reservation-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #003d8f, #005eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.reservation-header p {
    font-size: 1rem;
    color: #555;
    max-width: 760px;
    margin: 0 auto 15px;
    line-height: 1.6;
}

/* ===== BENEFITS ===== */
.reservation-benefits {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    margin-top: 10px;
    max-width: 550px;
}

.reservation-benefits li {
    background: #f1fdf7;
    border-left: 4px solid #005eff;
    padding: 8px 12px;
    margin: 8px 0;
    border-radius: 8px;
    color: #333;
    font-size: .95rem;
}

/* ===== FORM ===== */
.reservation-form-wrapper {
    margin-top: 25px;
}

/* GRID SİSTEMİ */
.reservation-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

/* 3 kolonlu satır */
.reservation-row.row-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Kolonlar */
.reservation-field {
    display: flex;
    flex-direction: column;
}

.reservation-field-full {
    grid-column: 1 / -1;
}
/* Label */
.reservation-field label {
    font-size: .95rem;
    margin-bottom: 6px;
    color: #333;
    font-weight: 600;
}

/* Inputlar */
.reservation-field input,
.reservation-field select {
    height: 48px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fafafa;
    font-size: .95rem;
}

.reservation-field textarea {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fafafa;
    font-size: .95rem;
    min-height: 120px;
}

/* Focus */
.reservation-field input:focus,
.reservation-field select:focus,
.reservation-field textarea:focus {
    border-color: #003d8f;
    box-shadow: 0 0 0 2px #005eff;
    background: #fff;
    outline: none;
}

/* Custom Select */
.custom-select {
  position: relative;
  width: 100%;
}
.custom-select input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
}

.custom-options {
    max-height: 220px !important;
    overflow-y: auto !important;
    border-radius: 8px;
    display: none;
}

.custom-options .option {
  padding: 10px;
  cursor: pointer;
}

.custom-options .option:hover {
    background: #417add;
}

/* ===== KVKK ===== */
.reservation-consent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 25px auto;
    max-width: 480px;
    text-align: center;
}

.reservation-consent-text {
    max-width: 430px;
    line-height: 1.5;
    font-size: .9rem;
    color: #444;
    margin-bottom: 8px;
}

.reservation-consent input[type="checkbox"] {
    transform: scale(1.25);
    cursor: pointer;
    margin: 0 auto;
}

.reservation-consent a {
    color: #003d8f;
    font-weight: 700;
    text-decoration: none;
}

.reservation-consent a:hover {
    text-decoration: underline;
}

/* ===== BUTTON ===== */
.reservation-btn {
    padding: 14px 35px;
    border: none;
    background: linear-gradient(90deg, #003d8f, #005eff);
    color: #fff;
    font-size: 1.1rem;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
    transition: all .25s ease;
    box-shadow: 0 6px 16px #003d8f;
}

.reservation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px #005eff;
}

/* WHATSAPP */
.reservation-whatsapp-info {
    margin-top: 15px;
    font-size: .9rem;
    color: #333;
}

.reservation-whatsapp-info a {
    color: #005eff;
    font-weight: 700;
}

/* ============================================================
   RESPONSIVE – INPUT OVERFLOW FIXED
   ============================================================ */

/* TABLET */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .reservation-section {
        padding: 35px 25px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .reservation-header h2 {
        font-size: 1.8rem;
    }

    .reservation-row,
    .reservation-row.row-3 {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .reservation-field {
        width: 100%;
        min-width: 0;
    }

    .reservation-field input,
    .reservation-field select,
    .reservation-field textarea {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    /* iOS Safari tel input fix */
    input[type="tel"] {
        width: 100% !important;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .reservation-section {
        padding: 28px 18px;
        margin: 40px auto;
        width: 100%;
        max-width: 100%;
        box-shadow:
            0 0 10px #005eff,
            0 0 18px #003d8f;
    }

    .reservation-header h2 {
        font-size: 1.6rem;
    }

    .reservation-header p {
        font-size: .9rem;
    }

    .reservation-btn {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }
}
