/* =========================================================
   BOOKING PAGE HERO
   ========================================================= */

.booking-page-hero {
    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: var(--white-color);
}


.booking-hero-background {
    position: absolute;

    inset: 0;

    z-index: 0;
}


.booking-hero-background img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.booking-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(26, 26, 26, 0.9),
            rgba(44, 48, 122, 0.55),
            rgba(44, 48, 122, 0.2)
        );
}


.booking-hero-container {
    position: relative;

    z-index: 2;

    width: 100%;

    padding-top: 80px;
}


.booking-hero-content {
    max-width: 720px;
}


.booking-hero-label {
    display: inline-block;

    margin-bottom: 20px;

    color: var(--secondary-color);

    font-family: var(--heading-font);

    font-size: 0.7rem;

    font-weight: 700;

    letter-spacing: 2px;
}


.booking-hero-content h1 {
    margin-bottom: 20px;

    color: var(--white-color);

    font-family: var(--heading-font);

    font-size: clamp(3rem, 6vw, 5.2rem);

    line-height: 1.05;
}


.booking-hero-content h1 span {
    display: block;

    color: var(--secondary-color);
}


.booking-hero-content p {
    max-width: 620px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 1rem;

    line-height: 1.8;
}

/* =========================================================
   BOOKING INTRODUCTION
   ========================================================= */

.booking-intro {
    background-color: var(--white-color);
}


.booking-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}


.booking-intro-content {
    max-width: 600px;
}


.booking-intro-content h2 {
    margin-bottom: 22px;

    color: var(--primary-color);

    font-size: 2.6rem;

    line-height: 1.2;
}


.booking-intro-content h2 span {
    display: block;

    color: var(--secondary-color);
}


.booking-intro-content p {
    margin-bottom: 15px;

    color: var(--grey-color);

    font-size: 0.9rem;

    line-height: 1.8;
}


.booking-intro-content .booking-intro-lead {
    color: var(--black-color);

    font-size: 1.05rem;

    font-weight: 500;
}


.booking-scroll-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    color: var(--primary-color);

    font-family: var(--heading-font);

    font-size: 0.7rem;

    font-weight: 700;

    transition: var(--transition-normal);
}


.booking-scroll-link i {
    color: var(--secondary-color);

    transition: var(--transition-normal);
}


.booking-scroll-link:hover {
    color: var(--secondary-color);
}


.booking-scroll-link:hover i {
    transform: translateY(4px);
}


/* =========================================================
   INTRO VISUAL
   ========================================================= */

.booking-intro-visual {
    position: relative;

    min-height: 500px;

    padding: 0 0 25px 25px;
}


.booking-intro-visual::before {
    content: "";

    position: absolute;

    top: 25px;
    left: 0;

    width: 75%;

    height: 75%;

    background-color: var(--primary-color);

    z-index: 0;
}


.booking-intro-visual img {
    position: relative;

    z-index: 1;

    width: 100%;
    height: 475px;

    object-fit: cover;

    border-radius: var(--radius-medium);

    box-shadow: var(--shadow-medium);
}


.booking-intro-card {
    position: absolute;

    right: 0;
    bottom: 0;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 15px;

    min-width: 250px;

    padding: 20px;

    color: var(--white-color);

    background-color: var(--secondary-color);

    box-shadow: var(--shadow-medium);
}


.booking-intro-card > i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    background-color: rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    font-size: 1rem;
}


.booking-intro-card strong {
    display: block;

    margin-bottom: 4px;

    font-family: var(--heading-font);

    font-size: 0.75rem;
}


.booking-intro-card span {
    display: block;

    color: rgba(255, 255, 255, 0.75);

    font-size: 0.7rem;
}

/* =========================================================
   ENGAGEMENT TYPES
   ========================================================= */

.engagement-types {
    background-color: var(--light-color);
}


/* =========================================================
   SECTION HEADER
   ========================================================= */

.engagement-types-header {
    max-width: 720px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


.engagement-types-header .section-title {
    margin-bottom: 20px;

    font-size: 2.4rem;
}


.engagement-types-header .section-title span {
    display: block;

    color: var(--secondary-color);
}


/* =========================================================
   ENGAGEMENT GRID
   ========================================================= */

.engagement-types-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-top: 50px;
}


/* =========================================================
   ENGAGEMENT CARD
   ========================================================= */

.engagement-card {
    position: relative;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    min-height: 360px;

    padding: 35px 28px;

    overflow: hidden;

    text-align: left;

    color: var(--black-color);

    background-color: var(--white-color);

    border: 1px solid var(--light-grey-color);

    border-radius: var(--radius-medium);

    cursor: pointer;

    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal),
        border-color var(--transition-normal);
}


.engagement-card:hover {
    transform: translateY(-8px);

    border-color: var(--primary-color);

    box-shadow: var(--shadow-medium);
}


/* =========================================================
   CARD NUMBER
   ========================================================= */

.engagement-number {
    position: absolute;

    top: 20px;
    right: 20px;

    color: rgba(44, 48, 122, 0.08);

    font-family: var(--heading-font);

    font-size: 3rem;

    font-weight: 700;

    line-height: 1;
}


/* =========================================================
   CARD ICON
   ========================================================= */

.engagement-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    margin-bottom: 25px;

    color: var(--white-color);

    background-color: var(--primary-color);

    border-radius: 50%;

    font-size: 1rem;

    transition: var(--transition-normal);
}


.engagement-card:hover .engagement-icon {
    background-color: var(--secondary-color);

    transform: scale(1.05);
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.engagement-card h3 {
    margin-bottom: 12px;

    color: var(--primary-color);

    font-size: 1.15rem;

    line-height: 1.3;
}


.engagement-card p {
    margin-bottom: 25px;

    color: var(--grey-color);

    font-size: 0.8rem;

    line-height: 1.7;
}


/* =========================================================
   SELECT LINK
   ========================================================= */

.engagement-select {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: auto;

    color: var(--primary-color);

    font-family: var(--heading-font);

    font-size: 0.65rem;

    font-weight: 700;
}


.engagement-select i {
    color: var(--secondary-color);

    transition: var(--transition-normal);
}


.engagement-card:hover .engagement-select i {
    transform: translateX(5px);
}


/* =========================================================
   SELECTED STATE
   ========================================================= */

.engagement-card.selected {
    border-color: var(--secondary-color);

    box-shadow:
        0 0 0 2px var(--secondary-color),
        var(--shadow-medium);

    transform: translateY(-5px);
}


.engagement-card.selected .engagement-icon {
    background-color: var(--secondary-color);
}


.engagement-card.selected .engagement-select {
    color: var(--secondary-color);
}


.engagement-card.selected .engagement-select::before {
    content: "Selected • ";

}


/* =========================================================
   SELECTION MESSAGE
   ========================================================= */

.engagement-selection-message {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 30px;

    color: var(--grey-color);

    font-size: 0.8rem;

    text-align: center;
}


.engagement-selection-message i {
    color: var(--secondary-color);
}


.engagement-selection-message.selected {
    color: var(--primary-color);

    font-weight: 600;
}

/* =========================================================
   BOOKING FORM SECTION
   ========================================================= */

.booking-form-section {
    background-color: var(--white-color);
}


.booking-form-header {
    max-width: 720px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


.booking-form-header .section-title {
    margin-bottom: 20px;

    font-size: 2.4rem;
}


.booking-form-header .section-title span {
    display: block;

    color: var(--secondary-color);
}


/* =========================================================
   FORM LAYOUT
   ========================================================= */

.booking-form-layout {
    display: grid;

    grid-template-columns: 1.5fr 0.8fr;

    gap: 50px;

    margin-top: 55px;
}


/* =========================================================
   FORM WRAPPER
   ========================================================= */

.booking-form-wrapper {
    padding: 45px;

    background-color: var(--light-color);

    border-radius: var(--radius-medium);

    border: 1px solid var(--light-grey-color);
}


.booking-form {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px 20px;
}


/* =========================================================
   FORM GROUP
   ========================================================= */

.form-group {
    display: flex;

    flex-direction: column;
}


.form-group-full {
    grid-column: 1 / -1;
}


.form-group label {
    margin-bottom: 9px;

    color: var(--primary-color);

    font-family: var(--heading-font);

    font-size: 0.7rem;

    font-weight: 700;
}


.form-group label span {
    color: var(--secondary-color);
}


/* =========================================================
   INPUT WRAPPER
   ========================================================= */

.form-input-wrapper {
    position: relative;

    display: flex;

    align-items: center;
}


.form-input-wrapper > i {
    position: absolute;

    left: 17px;

    z-index: 2;

    color: var(--primary-color);

    font-size: 0.8rem;

    pointer-events: none;
}


.form-input-wrapper input,
.form-input-wrapper select,
.form-input-wrapper textarea {
    width: 100%;

    padding: 14px 16px 14px 45px;

    color: var(--black-color);

    background-color: var(--white-color);

    border: 1px solid var(--light-grey-color);

    border-radius: var(--radius-small);

    outline: none;

    font-family: var(--body-font);

    font-size: 0.85rem;

    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}


.form-input-wrapper input::placeholder,
.form-input-wrapper textarea::placeholder {
    color: #999;
}


.form-input-wrapper input:focus,
.form-input-wrapper select:focus,
.form-input-wrapper textarea:focus {
    border-color: var(--primary-color);

    box-shadow:
        0 0 0 3px rgba(44, 48, 122, 0.08);
}


.form-input-wrapper select {
    appearance: none;

    cursor: pointer;
}


.form-input-wrapper textarea {
    resize: vertical;

    min-height: 150px;

    line-height: 1.7;
}


.textarea-wrapper {
    align-items: flex-start;
}


.textarea-wrapper > i {
    top: 17px;
}


/* =========================================================
   DATE INPUT
   ========================================================= */

.form-input-wrapper input[type="date"] {
    cursor: pointer;
}


.form-input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}


/* =========================================================
   SUBMIT
   ========================================================= */

.booking-form-submit {
    grid-column: 1 / -1;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 10px;

    padding-top: 25px;

    border-top: 1px solid var(--light-grey-color);
}


.booking-form-submit .btn {
    border: none;

    cursor: pointer;
}


.booking-form-submit > p {
    display: flex;

    align-items: center;

    gap: 7px;

    margin: 0;

    color: var(--grey-color);

    font-size: 0.65rem;

    line-height: 1.5;

    text-align: right;
}


.booking-form-submit > p i {
    color: var(--secondary-color);
}


/* =========================================================
   INFORMATION PANEL
   ========================================================= */

.booking-form-info {
    position: relative;

    align-self: stretch;

    padding: 40px;

    color: var(--white-color);

    background-color: var(--primary-color);

    border-radius: var(--radius-medium);

    overflow: hidden;
}


.booking-form-info::before {
    content: "";

    position: absolute;

    top: -100px;
    right: -100px;

    width: 260px;
    height: 260px;

    border: 45px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;
}


.booking-form-info::after {
    content: "";

    position: absolute;

    bottom: -130px;
    left: -100px;

    width: 300px;
    height: 300px;

    border: 55px solid rgba(178, 32, 52, 0.15);

    border-radius: 50%;
}


.booking-info-header {
    position: relative;

    z-index: 2;
}


.booking-info-header .section-label {
    color: var(--secondary-color);
}


.booking-info-header h3 {
    margin-bottom: 35px;

    color: var(--white-color);

    font-size: 1.8rem;

    line-height: 1.25;
}


.booking-info-header h3 span {
    display: block;

    color: var(--secondary-color);
}


/* =========================================================
   BOOKING STEPS
   ========================================================= */

.booking-steps {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 28px;
}


.booking-step {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 15px;
}


.booking-step-number {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    color: var(--white-color);

    background-color: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    font-family: var(--heading-font);

    font-size: 0.65rem;

    font-weight: 700;
}


.booking-step-content h4 {
    margin-bottom: 6px;

    color: var(--white-color);

    font-size: 0.85rem;
}


.booking-step-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.75rem;

    line-height: 1.7;
}


/* =========================================================
   INFORMATION NOTE
   ========================================================= */

.booking-info-note {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}


.booking-info-note > i {
    flex-shrink: 0;

    margin-top: 3px;

    color: var(--secondary-color);

    font-size: 0.85rem;
}


.booking-info-note p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.65rem;

    line-height: 1.7;
}

/* =========================================================
   BOOKING SUCCESS STATE
   ========================================================= */

.booking-success {
    display: none;

    min-height: 650px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    padding: 55px 35px;

    text-align: center;

    background-color: var(--white-color);

    border-radius: var(--radius-medium);
}


/* =========================================================
   ACTIVE SUCCESS STATE
   ========================================================= */

.booking-success.active {
    display: flex;

    animation:
        bookingSuccessIn
        0.5s
        ease
        forwards;
}


@keyframes bookingSuccessIn {

    from {
        opacity: 0;

        transform: translateY(15px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


/* =========================================================
   SUCCESS ICON
   ========================================================= */

.booking-success-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 85px;
    height: 85px;

    margin-bottom: 25px;

    color: var(--white-color);

    background-color: var(--secondary-color);

    border-radius: 50%;

    font-size: 1.7rem;

    box-shadow:
        0 0 0 12px rgba(178, 32, 52, 0.10);

    animation:
        successIconPop
        0.5s
        0.15s
        ease
        both;
}


@keyframes successIconPop {

    0% {
        opacity: 0;

        transform: scale(0.6);
    }

    70% {
        transform: scale(1.08);
    }

    100% {
        opacity: 1;

        transform: scale(1);
    }

}


/* =========================================================
   SUCCESS TEXT
   ========================================================= */

.booking-success .section-label {
    margin-bottom: 12px;

    color: var(--secondary-color);
}


.booking-success h3 {
    margin-bottom: 18px;

    color: var(--primary-color);

    font-size: 2rem;

    line-height: 1.2;
}


.booking-success h3 span {
    display: block;

    color: var(--secondary-color);
}


.booking-success-message {
    max-width: 500px;

    margin: 0 auto;

    color: var(--grey-color);

    font-size: 0.9rem;

    line-height: 1.8;
}


/* =========================================================
   SUCCESS DETAILS
   ========================================================= */

.booking-success-details {
    display: grid;

    grid-template-columns: 1fr 1fr;

    width: 100%;
    max-width: 550px;

    gap: 15px;

    margin: 35px 0;
}


.booking-success-details > div {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 17px;

    text-align: left;

    background-color: var(--light-color);

    border-left: 3px solid var(--secondary-color);

    border-radius: var(--radius-small);
}


.booking-success-details > div > i {
    color: var(--primary-color);

    font-size: 1rem;
}


.booking-success-details span {
    display: flex;

    flex-direction: column;

    gap: 4px;

    min-width: 0;
}


.booking-success-details strong {
    color: var(--primary-color);

    font-family: var(--heading-font);

    font-size: 0.65rem;
}


.booking-success-details small {
    overflow: hidden;

    color: var(--grey-color);

    font-size: 0.7rem;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   SUCCESS ACTIONS
   ========================================================= */

.booking-success-actions {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;
}


.booking-success-actions .btn {
    border: none;
}


.booking-success-again {
    padding: 12px 0;

    color: var(--primary-color);

    background: transparent;

    border: none;

    font-family: var(--heading-font);

    font-size: 0.7rem;

    font-weight: 700;

    cursor: pointer;

    transition: var(--transition-normal);
}


.booking-success-again:hover {
    color: var(--secondary-color);
}

/* =========================================================
   BOOKING FINAL CTA
   ========================================================= */

.booking-final-cta {
    position: relative;

    padding: 80px 0;

    overflow: hidden;

    color: var(--white-color);

    background-color: var(--primary-color);

    border-bottom: 8px solid var(--white-color);
}


/* =========================================================
   DECORATIVE ELEMENTS
   ========================================================= */

.booking-final-cta::before {
    content: "";

    position: absolute;

    top: -180px;
    right: -100px;

    width: 420px;
    height: 420px;

    border: 70px solid rgba(255, 255, 255, 0.04);

    border-radius: 50%;
}


.booking-final-cta::after {
    content: "";

    position: absolute;

    bottom: -150px;
    left: -100px;

    width: 350px;
    height: 350px;

    border: 50px solid rgba(178, 32, 52, 0.12);

    border-radius: 50%;
}


/* =========================================================
   CTA CONTENT
   ========================================================= */

.booking-final-cta-content {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;
}


.booking-final-cta-text {
    max-width: 680px;
}


.booking-final-cta-text .section-label {
    color: var(--secondary-color);
}


.booking-final-cta-text h2 {
    margin-bottom: 20px;

    color: var(--white-color);

    font-size: 2.8rem;

    line-height: 1.15;
}


.booking-final-cta-text h2 span {
    display: block;

    color: var(--secondary-color);
}


.booking-final-cta-text p {
    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.9rem;

    line-height: 1.8;
}


/* =========================================================
   CTA ACTIONS
   ========================================================= */

.booking-final-cta-actions {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 20px;

    min-width: 210px;
}


.booking-final-cta-actions .btn {
    white-space: nowrap;
}


.booking-final-cta-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--white-color);

    font-family: var(--heading-font);

    font-size: 0.7rem;

    font-weight: 700;

    transition: var(--transition-normal);
}


.booking-final-cta-link i {
    color: var(--secondary-color);

    transition: var(--transition-normal);
}


.booking-final-cta-link:hover {
    color: var(--secondary-color);
}


.booking-final-cta-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   FOOTER SEPARATOR
   ========================================================= */

.booking-final-cta + .footer {
    position: relative;
}


.booking-final-cta + .footer::before {
    content: "";

    position: absolute;

    top: -8px;
    left: 50%;

    width: 90px;
    height: 8px;

    transform: translateX(-50%);

    background-color: var(--secondary-color);

    z-index: 5;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .booking-final-cta-content {
        flex-direction: column;

        align-items: flex-start;

        gap: 35px;
    }


    .booking-final-cta-actions {
        flex-direction: row;

        align-items: center;
    }

}


@media (max-width: 768px) {

    .booking-final-cta {
        padding: 70px 0;
    }


    .booking-final-cta-text h2 {
        font-size: 2.2rem;
    }


    .booking-final-cta-actions {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 480px) {

    .booking-final-cta-text h2 {
        font-size: 1.9rem;
    }


    .booking-final-cta-text p {
        font-size: 0.85rem;
    }


    .booking-final-cta-actions {
        width: 100%;
    }


    .booking-final-cta-actions .btn {
        width: 100%;

        justify-content: center;
    }

}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .booking-success {
        min-height: 600px;

        padding: 45px 25px;
    }


    .booking-success h3 {
        font-size: 1.7rem;
    }


    .booking-success-details {
        grid-template-columns: 1fr;
    }


    .booking-success-actions {
        flex-direction: column;

        width: 100%;
    }


    .booking-success-actions .btn {
        width: 100%;
    }

}


@media (max-width: 480px) {

    .booking-success {
        min-height: 550px;

        padding: 40px 20px;
    }


    .booking-success-icon {
        width: 75px;
        height: 75px;

        font-size: 1.5rem;
    }

}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .booking-form-layout {
        grid-template-columns: 1.3fr 0.8fr;

        gap: 30px;
    }


    .booking-form-wrapper {
        padding: 35px;
    }


    .booking-form-info {
        padding: 35px;
    }

}


@media (max-width: 900px) {

    .booking-form-layout {
        grid-template-columns: 1fr;
    }


    .booking-form-info {
        min-height: auto;
    }

}


@media (max-width: 768px) {

    .booking-form-section {
        padding: 70px 0;
    }


    .booking-form-header .section-title {
        font-size: 2rem;
    }


    .booking-form-wrapper {
        padding: 30px 25px;
    }


    .booking-form {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .form-group-full {
        grid-column: auto;
    }


    .booking-form-submit {
        flex-direction: column;

        align-items: stretch;
    }


    .booking-form-submit .btn {
        width: 100%;
    }


    .booking-form-submit > p {
        justify-content: center;

        text-align: center;
    }


    .booking-form-info {
        padding: 35px 30px;
    }

}


@media (max-width: 480px) {

    .booking-form-header .section-title {
        font-size: 1.7rem;
    }


    .booking-form-wrapper {
        padding: 25px 20px;
    }


    .booking-form-info {
        padding: 30px 25px;
    }


    .booking-info-header h3 {
        font-size: 1.5rem;
    }

}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .engagement-types-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 768px) {

    .engagement-types {
        padding: 70px 0;
    }


    .engagement-types-header .section-title {
        font-size: 2rem;
    }


    .engagement-types-grid {
        gap: 15px;

        margin-top: 40px;
    }


    .engagement-card {
        min-height: 330px;

        padding: 30px 25px;
    }

}


@media (max-width: 520px) {

    .engagement-types-grid {
        grid-template-columns: 1fr;
    }


    .engagement-card {
        min-height: auto;

        padding: 30px 25px;
    }


    .engagement-card p {
        margin-bottom: 20px;
    }

}

@media (max-width: 992px) {

    .booking-intro-grid {
        gap: 50px;
    }


    .booking-intro-content h2 {
        font-size: 2.2rem;
    }


    .booking-intro-visual {
        min-height: 430px;
    }


    .booking-intro-visual img {
        height: 405px;
    }

}


@media (max-width: 768px) {

    .booking-intro {
        padding: 70px 0;
    }


    .booking-intro-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .booking-intro-content {
        max-width: 100%;
    }


    .booking-intro-visual {
        min-height: 430px;
    }

}


@media (max-width: 480px) {

    .booking-intro-content h2 {
        font-size: 1.9rem;
    }


    .booking-intro-visual {
        min-height: 340px;

        padding: 0 0 20px 15px;
    }


    .booking-intro-visual img {
        height: 320px;
    }


    .booking-intro-card {
        min-width: 220px;

        padding: 15px;
    }

}


@media (max-width: 768px) {

    .booking-page-hero {
        min-height: 460px;
    }


    .booking-hero-content h1 {
        font-size: 3rem;
    }

}


@media (max-width: 480px) {

    .booking-page-hero {
        min-height: 420px;
    }


    .booking-hero-content h1 {
        font-size: 2.5rem;
    }


    .booking-hero-content p {
        font-size: 0.9rem;
    }

}