:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-253d037 *//* =========================================================
   DESI ADDA — BOOKING PAGE
   FULL WIDTH PREMIUM DESIGN
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

.desi-book-page {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    background: #030b12;
    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    box-sizing: border-box;
    overflow: hidden;
}

.desi-book-page *,
.desi-book-page *::before,
.desi-book-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   HERO
========================================================= */

.desi-book-hero {
    width: 100%;
    max-width: none;

    min-height: 620px;

    display: flex;
    align-items: stretch;

    margin: 0;
    padding: 0;
}


/* HERO CONTENT */

.desi-book-hero-content {
    width: 40%;

    min-height: 620px;

    padding: 80px 6%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    background: #030b12;
}


/* EYEBROW */

.desi-eyebrow {
    color: #d9a441;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 10px;
}


/* HERO TITLE */

.desi-book-hero h1 {
    margin: 15px 0 25px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(44px, 4.5vw, 68px);
    line-height: 1.02;

    font-weight: 400;

    letter-spacing: -1px;
}

.desi-book-hero h1 span {
    color: #d9a441;
    font-style: italic;
}


/* GOLD LINE */

.desi-gold-line {
    width: 280px;
    height: 1px;

    background: #d9a441;

    margin: 0 0 25px;
}


/* HERO DESCRIPTION */

.desi-book-hero p {
    max-width: 540px;

    margin: 0 0 30px;

    color: #d9dee2;

    font-size: 16px;
    line-height: 1.75;
}


/* HERO IMAGE */

.desi-book-hero-image {
    width: 60%;

    min-height: 620px;

    overflow: hidden;

    position: relative;
}

.desi-book-hero-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,11,18,0.18),
            transparent 35%
        );

    pointer-events: none;
}

.desi-book-hero-image img {
    width: 100%;
    height: 100%;

    min-height: 620px;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* =========================================================
   BUTTONS
========================================================= */

.desi-btn,
.desi-outline-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 14px 25px;

    border: 1px solid #d9a441;
    border-radius: 5px;

    background: transparent;

    color: #d9a441;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.desi-btn:hover,
.desi-outline-btn:hover {
    background: #d9a441;

    color: #030b12;

    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(217,164,65,.18);
}


/* =========================================================
   BOOKING SECTION
========================================================= */

.desi-booking-section {
    width: 100%;
    max-width: none;

    margin: 0;

    display: grid;

    grid-template-columns: 55% 45%;

    border-top: 1px solid rgba(255,255,255,.08);
}


/* FORM + CONTACT */

.desi-form-column,
.desi-contact-column {
    width: 100%;

    padding: 70px 6%;

    box-sizing: border-box;
}


/* FORM DIVIDER */

.desi-form-column {
    border-right: 1px solid rgba(255,255,255,.08);
}


/* SECTION LABEL */

.desi-section-label {
    color: #d9a441;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    margin-bottom: 12px;
}


/* SECTION HEADINGS */

.desi-form-column h2,
.desi-contact-column h2 {
    margin: 0 0 35px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 32px;
    line-height: 1.2;

    font-weight: 400;
}


/* =========================================================
   FORM
========================================================= */

.desi-field {
    width: 100%;

    margin-bottom: 21px;
}


/* LABEL */

.desi-field > label {
    display: block;

    margin-bottom: 8px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 500;

    line-height: 1.4;
}

.desi-field > label span {
    color: #d9a441;
}


/* INPUTS */

.desi-field input,
.desi-field select,
.desi-field textarea {
    width: 100%;

    display: block;

    padding: 15px 16px;

    background: #07121b;

    border: 1px solid #34414b;
    border-radius: 6px;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;
    line-height: 1.4;

    outline: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


/* INPUT HEIGHT */

.desi-field input,
.desi-field select {
    height: 54px;
}


/* TEXTAREA */

.desi-field textarea {
    min-height: 135px;

    resize: vertical;
}


/* PLACEHOLDER */

.desi-field input::placeholder,
.desi-field textarea::placeholder {
    color: #89939b;

    opacity: 1;
}


/* FOCUS */

.desi-field input:focus,
.desi-field select:focus,
.desi-field textarea:focus {
    border-color: #d9a441;

    background: #091720;

    box-shadow:
        0 0 0 1px #d9a441,
        0 0 18px rgba(217,164,65,.08);
}


/* SELECT */

.desi-field select {
    cursor: pointer;

    appearance: auto;
}


/* DATE */

.desi-field input[type="date"] {
    color-scheme: dark;
}


/* =========================================================
   TWO COLUMN FIELDS
========================================================= */

.desi-two-fields {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}


/* =========================================================
   CHECKBOXES
========================================================= */

.desi-checkboxes {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px 25px;

    padding-top: 5px;
}


/* CHECKBOX LABEL */

.desi-checkboxes label {
    display: flex;

    align-items: center;

    gap: 8px;

    margin: 0;

    color: #dddddd;

    font-size: 14px;

    cursor: pointer;
}


/* CHECKBOX */

.desi-checkboxes input[type="checkbox"] {
    width: 17px;
    height: 17px;

    margin: 0;

    flex-shrink: 0;

    accent-color: #d9a441;

    cursor: pointer;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.desi-submit {
    width: 100%;

    min-height: 55px;

    margin-top: 5px;

    padding: 15px 20px;

    border: none;
    border-radius: 6px;

    background: #d9a441;

    color: #030b12;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.desi-submit:hover {
    background: #ffffff;

    color: #030b12;

    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(255,255,255,.10);
}

.desi-submit:active {
    transform: translateY(0);
}


/* PRIVACY */

.desi-privacy {
    margin-top: 14px;

    color: #89939b;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.desi-contact-column {
    background: #040d15;
}


/* CONTACT ITEM */

.desi-contact-item {
    width: 100%;

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 24px;
}


/* CONTACT ICON */

.desi-contact-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(217,164,65,.18);

    border-radius: 7px;

    background: #101c26;

    color: #d9a441;

    font-size: 20px;
}


/* CONTACT TITLE */

.desi-contact-item strong {
    display: block;

    margin-bottom: 5px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;
}


/* CONTACT DETAILS */

.desi-contact-item span,
.desi-contact-item a {
    color: #eeeeee;

    font-size: 14px;

    line-height: 1.5;

    text-decoration: none;
}

.desi-contact-item a:hover {
    color: #d9a441;
}


/* =========================================================
   PERFECT FOR BOX
========================================================= */

.desi-perfect-box {
    width: 100%;

    margin-top: 35px;

    padding: 28px;

    border: 1px solid #34414b;

    border-radius: 8px;

    background: rgba(7,18,27,.45);
}


/* PERFECT TITLE */

.desi-perfect-title {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 25px;

    color: #d9a441;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1.5px;
}

.desi-perfect-title span {
    width: 35px;
    height: 1px;

    background: #d9a441;
}


/* PERFECT GRID */

.desi-perfect-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px 15px;
}

.desi-perfect-grid div {
    color: #eeeeee;

    font-size: 14px;

    line-height: 1.4;
}


/* =========================================================
   CTA STRIP
========================================================= */

.desi-cta-strip {
    width: 100%;
    max-width: none;

    margin: 0;

    padding: 38px 6%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);

    background: #030b12;
}


/* CTA TEXT */

.desi-cta-text {
    display: flex;

    align-items: center;

    gap: 20px;
}


/* MUSIC ICON */

.desi-music-icon {
    width: 56px;
    height: 56px;

    min-width: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(217,164,65,.2);

    border-radius: 50%;

    background: #101c26;

    color: #d9a441;

    font-size: 26px;
}


/* CTA HEADING */

.desi-cta-text strong {
    display: block;

    color: #d9a441;

    font-size: 14px;

    letter-spacing: 1.2px;
}


/* CTA DESCRIPTION */

.desi-cta-text p {
    margin: 7px 0 0;

    color: #dddddd;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .desi-book-hero {
        min-height: 560px;
    }

    .desi-book-hero-content {
        width: 45%;

        min-height: 560px;

        padding: 60px 5%;
    }

    .desi-book-hero-image {
        width: 55%;

        min-height: 560px;
    }

    .desi-book-hero-image img {
        min-height: 560px;
    }

    .desi-book-hero h1 {
        font-size: 48px;
    }

    .desi-booking-section {
        grid-template-columns: 55% 45%;
    }

    .desi-form-column,
    .desi-contact-column {
        padding: 55px 5%;
    }

    .desi-perfect-box {
        padding: 22px;
    }

    .desi-cta-strip {
        padding: 32px 5%;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    /* GLOBAL */

    .desi-book-page {
        width: 100%;

        max-width: 100%;

        margin-left: 0;
        margin-right: 0;

        overflow-x: hidden;
    }


    /* HERO */

    .desi-book-hero {
        width: 100%;

        min-height: auto;

        display: flex;

        flex-direction: column;
    }


    /* HERO CONTENT */

    .desi-book-hero-content {
        width: 100%;

        min-height: auto;

        padding: 55px 25px 40px;

        align-items: flex-start;
    }


    /* HERO TITLE */

    .desi-book-hero h1 {
        margin: 15px 0 22px;

        font-size: 42px;

        line-height: 1.05;

        letter-spacing: -0.5px;
    }


    /* HERO TEXT */

    .desi-book-hero p {
        margin-bottom: 28px;

        font-size: 15px;

        line-height: 1.7;
    }


    /* GOLD LINE */

    .desi-gold-line {
        width: 100%;

        max-width: 280px;
    }


    /* HERO IMAGE */

    .desi-book-hero-image {
        width: 100%;

        height: 420px;

        min-height: 420px;
    }

    .desi-book-hero-image img {
        width: 100%;

        height: 420px;

        min-height: 420px;
    }


    /* BOOKING */

    .desi-booking-section {
        width: 100%;

        display: flex;

        flex-direction: column;
    }


    /* FORM + CONTACT */

    .desi-form-column,
    .desi-contact-column {
        width: 100%;

        padding: 55px 25px;
    }


    /* FORM BORDER */

    .desi-form-column {
        border-right: none;

        border-bottom: 1px solid rgba(255,255,255,.08);
    }


    /* HEADINGS */

    .desi-form-column h2,
    .desi-contact-column h2 {
        font-size: 28px;

        margin-bottom: 30px;
    }


    /* TWO FIELDS */

    .desi-two-fields {
        grid-template-columns: 1fr;

        gap: 0;
    }


    /* CHECKBOXES */

    .desi-checkboxes {
        grid-template-columns: 1fr;

        gap: 13px;
    }


    /* PERFECT FOR */

    .desi-perfect-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    /* PERFECT BOX */

    .desi-perfect-box {
        padding: 24px 20px;
    }


    /* CTA */

    .desi-cta-strip {
        width: 100%;

        flex-direction: column;

        align-items: flex-start;

        padding: 40px 25px;

        gap: 25px;
    }


    /* CTA TEXT */

    .desi-cta-text {
        width: 100%;

        align-items: flex-start;

        gap: 15px;
    }


    /* CTA BUTTON */

    .desi-outline-btn {
        width: 100%;

        text-align: center;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .desi-book-hero-content {
        padding: 45px 20px 35px;
    }

    .desi-book-hero h1 {
        font-size: 38px;
    }

    .desi-book-hero-image {
        height: 350px;

        min-height: 350px;
    }

    .desi-book-hero-image img {
        height: 350px;

        min-height: 350px;
    }

    .desi-form-column,
    .desi-contact-column {
        padding: 45px 20px;
    }

    .desi-cta-strip {
        padding: 35px 20px;
    }

    .desi-cta-text strong {
        font-size: 13px;
    }

    .desi-cta-text p {
        font-size: 13px;
    }

    .desi-music-icon {
        width: 48px;
        height: 48px;

        min-width: 48px;

        font-size: 22px;
    }
}/* End custom CSS */