/* ===================== ONLINE RANDEVU SECTION BOŞLUK ===================== */
#online-rezervasyon {
    margin-bottom:160px;
}

/* ===================== ANA FORM KARTI ===================== */
#online-rezervasyon .reservation-card {
    max-width: 820px;
    margin: 70px auto;
    padding: 55px 60px;
    background: #ffffff;
    border-radius: 28px;

    /* KarotCity – koyu gri çerçeve */
    border: 2px solid rgba(30, 30, 30, 0.75);

    /* modern siyah gölge */
    box-shadow:
        0 0 28px rgba(0,0,0,0.12),
        0 0 55px rgba(0,0,0,0.08),
        0 12px 30px rgba(0,0,0,0.15);
}

/* ===================== HEADER ===================== */
.reservation-header h2 {
    font-size: 2.35rem;
    font-weight: 900;
    text-align: center;

    /* Kırmızı – Canlı gradient */
    background: linear-gradient(90deg, #a8676d, #9b1c24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 12px;
}

.reservation-header p {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    font-size: .95rem;
    line-height: 1.55;
    color: #444;
}

/* ===================== BENEFITS ===================== */
.reservation-benefits {
    list-style: none;
    padding: 0;
    margin: 20px auto 35px;
    max-width: 420px;
}

.reservation-benefits li {
    background: #fce5e7;               /* Açık kırmızı arka plan */
    border-left: 4px solid #e63946;    /* Kırmızı vurgu */
    padding: 8px 12px;
    border-radius: 8px;
    margin: 8px 0;
    font-size: .85rem;
}

/* ===================== FORM ===================== */
.reservation-form {
    margin-top: 10px;
}

.reservation-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 22px;
}

.reservation-row.row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.reservation-field {
    display: flex;
    flex-direction: column;
}

.reservation-field-full {
    grid-column: 1 / -1;
}

/* Label */
.reservation-field label {
    font-size: .88rem;
    font-weight: 600;
    color: #222;  /* Daha koyu modern yazı */
    margin-bottom: 6px;
}

/* Input */
.reservation-field input,
.reservation-field textarea {
    width: 100%;
    box-sizing: border-box;
    background: #f8f8f8;
    border: 1px solid #cfcfcf;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: .92rem;
    color: #333;
    transition: .2s ease;
}

.reservation-field input {
    height: 46px;
}

.reservation-field textarea {
    min-height: 130px;
}

/* Focus – kırmızı glow */
.reservation-field input:focus,
.reservation-field textarea:focus {
    border-color: #e63946;
    background: white;
    box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.25);
    outline: none;
}

/* ===================== CUSTOM SELECT ===================== */
.custom-select input {
    height: 46px !important;
}

.custom-options {
    display: none;
    background: white;
    border-radius: 12px;
    border: 1px solid #ccc;
    margin-top: 4px;
    padding: 6px 0;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.custom-options .option {
    padding: 10px 14px;
    cursor: pointer;
    font-size: .9rem;
}

.custom-options .option:hover {
    background: rgba(230, 57, 70, 0.18); /* kırmızı hover */
}

/* ===================== KVKK ===================== */
.reservation-consent {
    max-width: 550px;
    margin: 25px auto 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.reservation-consent-text {
    font-size: .86rem;
    line-height: 1.45;
}

.reservation-consent-text a {
    color: #e63946;
    font-weight: 700;
}

.reservation-consent input[type="checkbox"] {
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0;
    box-shadow: none !important;
    border-radius: 4px;
    transform: scale(1.2);
    cursor: pointer;
}

/* ===================== BUTTON (KIRMIZI GRADIENT) ===================== */
.reservation-btn {
    width: 45%;
    padding: 15px 0;
    border-radius: 14px;

    background: linear-gradient(90deg, #e63946, #8b1e24);
    color: white;

    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;

    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.45);
    transition: .25s ease;
}

.reservation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(230, 57, 70, 0.60);
}

/* ===================== WHATSAPP ===================== */
.reservation-whatsapp-info {
    text-align: center;
    font-size: .85rem;
    margin-top: 14px;
}

.reservation-whatsapp-info a {
    color: #e63946;
    font-weight: 700;
}

/* ==========================================================
   RESPONSIVE – Mobil 768px ve altı
========================================================== */
@media (max-width: 768px) {

    #online-rezervasyon {
        padding-left: 18px;
        padding-right: 18px;
    }

    #online-rezervasyon .reservation-card {
        margin: 40px auto;
        padding: 35px 25px;
        border-radius: 22px;
    }

    .reservation-header h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .reservation-header p {
        font-size: .90rem;
        padding: 0 10px;
    }

    .reservation-row,
    .reservation-row.row-3 {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .reservation-field textarea {
        min-height: 110px;
    }

    .custom-select input {
        height: 44px !important;
        font-size: .90rem;
    }

    .custom-options {
        max-height: 180px;
    }

    .custom-options .option {
        padding: 10px;
        font-size: .88rem;
    }

    .reservation-consent {
        flex-direction: column;
        gap: 6px;
        max-width: 100%;
    }

    .reservation-btn {
        width: 100%;
        font-size: 1rem;
        padding: 14px 0;
        margin-top: 10px;
    }
}

/* ==========================================================
   Daha küçük cihazlar (max-width: 480px)
========================================================== */
@media (max-width: 480px) {

    #online-rezervasyon {
        padding-left: 15px;
        padding-right: 15px;
    }

    #online-rezervasyon .reservation-card {
        padding: 28px 20px;
    }

    .reservation-header h2 {
        font-size: 1.55rem;
    }

    .reservation-header p {
        font-size: .85rem;
    }

    .reservation-field input,
    .reservation-field textarea {
        font-size: .88rem;
    }

    .reservation-btn {
        font-size: .95rem;
        padding: 12px 0;
    }

    .custom-options {
        max-height: 160px;
    }
}
