.reservation-section {
    margin: 80px auto;
    max-width: 1000px;
    background: #fff;
    padding: 50px;
    border-radius: 28px;

    /* Premium Altın Çerçeve Efekti */
    position: relative;
    border: 2px solid #C8A040;
    box-shadow:
        0 0 18px rgba(200,160,64,0.30),
        0 0 28px rgba(200,160,64,0.18),
        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;

    /* Gold Gradient Title */
    background: linear-gradient(90deg, #C8A040, #E8CC74);
    -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: #FBF7E5; /* Soft gold background */
    border-left: 4px solid #C8A040;
    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;
}

.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 #d9c27a;
    background: #faf8f1;
    font-size: .95rem;
}

.reservation-field textarea {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d9c27a;
    background: #faf8f1;
    font-size: .95rem;
    min-height: 120px;
}

/* Focus (Gold Glow) */
.reservation-field input:focus,
.reservation-field select:focus,
.reservation-field textarea:focus {
    border-color: #C8A040;
    box-shadow: 0 0 0 2px rgba(200,160,64,0.35);
    background: #fff;
    outline: none;
}

/* CUSTOM SELECT */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d9c27a;
    border-radius: 10px;
    background: #faf8f1;
    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: rgba(200,160,64,0.20);
}

/* ===== KVKK BLOCK ===== */
.reservation-consent {
    display: flex;
    flex-direction: column;      /* ALT ALTA */
    align-items: center;         /* ORTALA */
    justify-content: center;
    margin: 25px auto;
    max-width: 480px;
    text-align: center;
}

/* Yazı */
.reservation-consent-text {
    max-width: 430px;
    line-height: 1.5;
    font-size: .9rem;
    color: #444;
    margin-bottom: 10px;         /* Checkbox ile arayı açar */
}

/* Link */
.reservation-consent a {
    color: #C8A040;
    font-weight: 700;
    text-decoration: none;
}

.reservation-consent a:hover {
    text-decoration: underline;
}

/* CHECKBOX (Aşağıda, ortada) */
.kvkk-checkbox {
    transform: scale(1.25);
    cursor: pointer;
    margin-top: 4px;
}


/* ===== BUTTON ===== */
.reservation-btn {
    padding: 14px 35px;
    border: none;
    background: linear-gradient(90deg, #C8A040, #E8CC74);
    color: #1A1A1A;
    font-size: 1.1rem;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
    transition: all .25s ease;
    box-shadow: 0 6px 16px rgba(200,160,64,0.45);
}

.reservation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(200,160,64,0.55);
}

/* WHATSAPP */
.reservation-whatsapp-info {
    margin-top: 15px;
    font-size: .9rem;
    color: #333;
}

.reservation-whatsapp-info a {
    color: #C8A040;
    font-weight: 700;
}

/* ============================================================
   MOBİL RESPONSIVE — PREMIUM FORM OPTİMİZASYON
============================================================ */

/* Tablet ve büyük telefonlar (≤ 768px) */
@media (max-width: 768px) {

    .reservation-section {
        padding: 32px 22px;
        margin: 60px auto;
        border-radius: 22px;
        margin-left:10px;
        margin-right:10px;
    }

    .reservation-header h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .reservation-header p {
        font-size: .95rem;
        max-width: 100%;
        padding: 0 4px;
    }

    /* Grid tek kolon */
    .reservation-row,
    .reservation-row.row-3 {
        grid-template-columns: 1fr !important;
        gap: 18px;
        margin-bottom: 18px;
    }

    .reservation-field-full {
        grid-column: 1 / 2;
    }

    /* Custom select taşma önleme */
    .custom-select input {
        font-size: .95rem;
        padding: 11px 12px;
    }

    .custom-options {
        max-height: 200px;
    }

    /* Benefits (liste) mobil hizalama */
    .reservation-benefits {
        max-width: 100%;
        margin-top: 15px;
    }

    .reservation-benefits li {
        font-size: .9rem;
        padding: 8px 10px;
    }

    /* KVKK */
    .reservation-consent {
        max-width: 100%;
        margin-top: 15px;
    }

    .reservation-consent-text {
        font-size: .85rem;
        max-width: 100%;
        padding: 0 10px;
    }

    /* Buton */
    .reservation-btn {
        width: 100%;
        font-size: 1rem;
        padding: 14px;
    }
}

/* Küçük telefonlar (≤ 480px) */
@media (max-width: 480px) {

    .reservation-section {
        padding: 25px 16px;
        margin: 35px auto;
        margin-left: 10px;
        margin-right:10px;
    }

    .reservation-header h2 {
        font-size: 1.55rem;
    }

    .reservation-header p {
        font-size: .85rem;
        line-height: 1.45;
    }

    .reservation-field input,
    .reservation-field select,
    .custom-select input {
        height: 44px;
        font-size: .9rem;
    }

    .reservation-field textarea {
        font-size: .9rem;
    }

    .reservation-benefits li {
        font-size: .85rem;
        padding: 7px 10px;
    }

    .reservation-consent-text {
        font-size: .8rem;
    }

    .reservation-btn {
        padding: 13px;
        font-size: .95rem;
        border-radius: 12px;
    }
}
