/* =========================
   HOTEL RESERVATION PAGE
   ========================= */

.reservation-page {
    background: #fff;
}

.reservation-page,
.reservation-page input,
.reservation-page select,
.reservation-page textarea,
.reservation-page button {
    font-family: inherit;
}

/* =========================
   INTRO
   ========================= */

.reservation-intro {
    position: relative;
    padding: 90px 0 70px;
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, .94), rgba(255, 255, 255, .99)),
        url("../../images/inner/reservation-hero.jpg") center/cover no-repeat;
    overflow: hidden;
}

.reservation-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 22%, rgba(162, 118, 49, .13), transparent 32%),
        radial-gradient(circle at 86% 80%, rgba(162, 118, 49, .09), transparent 30%);
    pointer-events: none;
}

.reservation-intro-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 54px;
    align-items: center;
}

.reservation-intro-text h2,
.reservation-form-heading h2 {
    margin: 0 0 18px;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.65;
    font-weight: 900;
    color: #111;
}

.reservation-intro-text p,
.reservation-form-heading p,
.reservation-note p {
    max-width: 850px;
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 2.45;
    color: #3f3f3f;
}

.reservation-actions {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.reservation-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: .25s ease;
}

.reservation-actions a:hover {
    background: #a27631;
    transform: translateY(-2px);
}

.reservation-actions .reservation-link {
    background: transparent;
    color: #a27631;
    border: 1px solid rgba(162, 118, 49, .32);
}

.reservation-actions .reservation-link:hover {
    color: #fff;
    border-color: #a27631;
}

.reservation-note {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    align-items: start;
    padding: 26px 26px 26px 28px;
    border-right: 4px solid #a27631;
    background: linear-gradient(135deg, rgba(162, 118, 49, .08), rgba(255, 255, 255, .72));
}

.reservation-note-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #d9a842;
    font-size: 23px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
}

.reservation-note p {
    margin: 0;
    color: #222;
}

.reservation-note strong {
    display: block;
    margin-bottom: 6px;
    color: #111;
    font-size: 16px;
    font-weight: 950;
}

/* =========================
   FORM SECTION
   ========================= */

.reservation-form-section {
    padding: 86px 0 118px;
    background: #fff;
}

.reservation-form-heading {
    max-width: 880px;
    margin-bottom: 42px;
}

.reservation-security-alert {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-right: 4px solid #a27631;
    background: rgba(17, 17, 17, .04);
    color: #222;
    font-size: 13.5px;
    line-height: 2;
    font-weight: 800;
}

.reservation-security-alert i {
    color: #a27631;
    font-size: 24px;
}

/* =========================
   FORM
   ========================= */

.reservation-form {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 26px;
}

.form-row.two-cols {
    grid-template-columns: 1fr 1fr;
}

.form-row.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-field label {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 900;
    color: #171717;
}

.form-field label span {
    color: #a27631;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 56px;
    border: 1px solid rgba(17, 17, 17, .22);
    border-radius: 0;
    padding: 0 16px;
    background: #fff;
    color: #111;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 500;
    outline: none;
    transition: .25s ease;
    direction: rtl;
    text-align: right;
}

.form-field input[type="email"],
.form-field input[type="tel"] {
    direction: ltr;
    text-align: left;
}

.form-field input.jalali-date {
    direction: ltr;
    text-align: left;
    font-feature-settings: "tnum";
}

.form-field textarea {
    min-height: 150px;
    padding-top: 16px;
    resize: vertical;
}

.form-field select {
    cursor: pointer;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #a27631;
    box-shadow: 0 0 0 3px rgba(162, 118, 49, .10);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(17, 17, 17, .42);
}

.form-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    margin-top: 10px;
}

.form-footer p {
    margin: 0;
    color: #555;
    font-size: 13.5px;
    line-height: 2;
}

.form-footer button {
    min-width: 190px;
    min-height: 56px;
    padding: 0 34px;
    border: none;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: .25s ease;
}

.form-footer button:hover:not(:disabled) {
    background: #a27631;
    transform: translateY(-2px);
}

.form-footer button:disabled {
    cursor: not-allowed;
    opacity: .45;
    background: #555;
    transform: none;
}

/* =========================
   RESPONSIVE
   ========================= */

@media(max-width: 900px) {
    .reservation-intro-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 760px) {
    .reservation-intro {
        padding: 70px 0 54px;
    }

    .reservation-form-section {
        padding: 66px 0 88px;
    }

    .form-row.two-cols,
    .form-row.three-cols {
        grid-template-columns: 1fr;
    }

    .form-footer {
        grid-template-columns: 1fr;
    }

    .form-footer button {
        width: 100%;
    }

    .reservation-note {
        grid-template-columns: 1fr;
    }

    .reservation-security-alert {
        align-items: flex-start;
    }
}

@media(max-width: 420px) {

    .reservation-intro-text h2,
    .reservation-form-heading h2 {
        font-size: 26px;
    }

    .reservation-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .reservation-actions a {
        width: 100%;
    }
}

