/* =========================================================
   HOTEL PALACE VIEW
   HEADER + FOOTER
========================================================= */

:root {
    --navy: #172A46;
    --navy-dark: #0E1D32;
    --navy-light: #213B60;

    --gold: #C9A24D;
    --gold-dark: #A88336;
    --gold-light: #E5D2A8;

    --ivory: #F7F3EA;
    --white: #FFFFFF;

    --text-dark: #292929;
    --text-muted: #77746D;

    --border-light: rgba(201, 162, 77, 0.22);

    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: "Montserrat", Arial, sans-serif;

    --transition: all 0.35s ease;
}


/* =========================================================
   TOP HEADER
========================================================= */

.top-header {
    background: var(--navy-dark);
    color: var(--white);
    border-bottom: 1px solid rgba(201, 162, 77, 0.15);
    font-family: var(--font-body);
    font-size: 13px;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.top-header-inner {
    min-height: 38px;

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

    gap: 20px;
}

.top-header-left,
.top-header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-header span,
.top-header a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--white);
    text-decoration: none;

    transition: var(--transition);
}

.top-header a:hover {
    color: var(--gold);
}

.top-header i {
    color: var(--gold);
    font-size: 12px;
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    position: sticky;
    top: 0;
    z-index: 999;

    background: rgba(247, 243, 234, 0.97);

    border-bottom: 1px solid rgba(23, 42, 70, 0.08);

    box-shadow: 0 8px 30px rgba(14, 29, 50, 0.06);

    backdrop-filter: blur(12px);
}

.main-header .navbar {
    min-height: 82px;
    padding: 0;
}


/* =========================================================
   BRAND
========================================================= */

.hotel-brand {
    display: inline-flex;
    align-items: center;

    gap: 13px;

    color: var(--navy) !important;

    text-decoration: none;

    padding: 8px 0;
}

.brand-icon {
    width: 48px;
    height: 48px;

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

    position: relative;

    color: var(--gold-dark);

    border: 1px solid var(--gold);
}

.brand-icon::before {
    content: "";

    position: absolute;

    inset: 4px;

    border: 1px solid rgba(201, 162, 77, 0.35);
}

.brand-icon i {
    position: relative;
    z-index: 1;

    font-size: 20px;
}


.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.1;
}

.brand-text strong {
    font-family: var(--font-heading);

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

    letter-spacing: 0.04em;

    color: var(--navy);
}

.brand-text small {
    margin-top: 5px;

    font-family: var(--font-body);

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

    letter-spacing: 0.20em;

    color: var(--gold-dark);
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-header .navbar-nav {
    gap: 3px;
}

.main-header .nav-link {
    position: relative;

    display: flex;
    align-items: center;

    height: 82px;

    padding: 0 13px !important;

    color: var(--navy) !important;

    font-family: var(--font-body);

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

    letter-spacing: 0.11em;

    text-transform: uppercase;

    transition: var(--transition);
}

.main-header .nav-link::after {
    content: "";

    position: absolute;

    left: 13px;
    right: 13px;

    bottom: 18px;

    height: 1px;

    background: var(--gold);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.35s ease;
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
    color: var(--gold-dark) !important;
}

.main-header .nav-link:hover::after,
.main-header .nav-link.active::after {
    transform: scaleX(1);
}


/* =========================================================
   ENQUIRY BUTTON
========================================================= */

.enquiry-item {
    margin-left: 13px;
}

.header-btn {
    display: inline-flex;

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

    gap: 10px;

    min-height: 43px;

    padding: 0 20px;

    background: var(--gold);
    border: 1px solid var(--gold);

    color: var(--navy) !important;

    font-family: var(--font-body);

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

    letter-spacing: 0.13em;

    text-transform: uppercase;

    text-decoration: none;

    transition: var(--transition);
}

.header-btn i {
    font-size: 13px;

    transition: transform 0.3s ease;
}

.header-btn:hover {
    background: var(--navy);
    border-color: var(--navy);

    color: var(--white) !important;

    transform: translateY(-2px);
}

.header-btn:hover i {
    transform: translate(3px, -3px);
}


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

.main-header .navbar-toggler {
    width: 44px;
    height: 44px;

    border: 1px solid var(--gold);

    border-radius: 0;

    padding: 9px;
}

.main-header .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.15);
}

.main-header .navbar-toggler-icon {
    width: 100%;
    height: 100%;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;

    background: var(--navy-dark);

    color: rgba(255, 255, 255, 0.65);

    padding-top: 80px;
}


/* Decorative top line */

.site-footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 90px;
    height: 2px;

    background: var(--gold);

    transform: translateX(-50%);
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {
    display: grid;

    grid-template-columns:
        1.7fr 1fr 1fr 1.3fr;

    gap: 55px;

    padding-bottom: 65px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 13px;

    color: var(--white);

    text-decoration: none;
}

.footer-brand-icon {
    width: 48px;
    height: 48px;

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

    color: var(--gold);

    border: 1px solid var(--gold);

    position: relative;
}

.footer-brand-icon::after {
    content: "";

    position: absolute;

    inset: 4px;

    border: 1px solid rgba(201, 162, 77, 0.35);
}

.footer-brand-icon i {
    position: relative;
    z-index: 1;
}

.footer-logo>span:last-child {
    display: flex;
    flex-direction: column;

    line-height: 1.1;
}

.footer-logo strong {
    font-family: var(--font-heading);

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

    letter-spacing: 0.04em;
}

.footer-logo small {
    margin-top: 5px;

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

    letter-spacing: 0.20em;

    color: var(--gold);
}

.footer-brand>p {
    max-width: 400px;

    margin: 22px 0;

    font-size: 15px;

    line-height: 1.9;

    color: var(--white);
}


/* =========================================================
   FOOTER LINK BUTTON
========================================================= */

.footer-link-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--gold);

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

    letter-spacing: 0.14em;

    text-transform: uppercase;

    text-decoration: none;

    transition: var(--transition);
}

.footer-link-btn i {
    transition: transform 0.3s ease;
}

.footer-link-btn:hover {
    color: var(--white);
}

.footer-link-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column h4 {
    margin: 0 0 22px;

    color: var(--gold);

    font-family: var(--font-body);

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

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 9px;
}

.footer-column li a {
    color: var(--white);

    font-size: 15px;

    text-decoration: none;

    transition: var(--transition);
}

.footer-column li a:hover {
    padding-left: 5px;

    color: var(--gold);
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 16px;
}

.contact-item>span {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

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

    border: 1px solid rgba(201, 162, 77, 0.35);

    color: var(--gold);

    font-size: 15px;
}

.contact-item p {
    margin: 2px 0 0;

    font-size: 14px;

    line-height: 1.7;

    color: var(--white);
}

.contact-item a {
    color: var(--white);

    text-decoration: none;

    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--gold);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

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

.footer-bottom p {
    margin: 0;

    font-size: 13px;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: var(--white);
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-social {
    display: flex;

    align-items: center;

    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;

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

    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.12);

    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);

    border-color: var(--gold);

    color: var(--navy);

    transform: translateY(-3px);
}


/* =========================================================
   HEADER ANIMATION
========================================================= */

.top-header {
    animation: headerDrop 0.7s ease both;
}

.main-header {
    animation: headerDrop 0.8s ease 0.08s both;
}

@keyframes headerDrop {

    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Brand animation */

.hotel-brand {
    animation: brandReveal 0.8s ease 0.25s both;
}

@keyframes brandReveal {

    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* Navigation animation */

.main-header .nav-item {
    opacity: 0;
    animation: navReveal 0.55s ease forwards;
}

.main-header .nav-item:nth-child(1) {
    animation-delay: 0.35s;
}

.main-header .nav-item:nth-child(2) {
    animation-delay: 0.42s;
}

.main-header .nav-item:nth-child(3) {
    animation-delay: 0.49s;
}

.main-header .nav-item:nth-child(4) {
    animation-delay: 0.56s;
}

.main-header .nav-item:nth-child(5) {
    animation-delay: 0.63s;
}

.main-header .nav-item:nth-child(6) {
    animation-delay: 0.70s;
}

.main-header .nav-item:nth-child(7) {
    animation-delay: 0.77s;
}

@keyframes navReveal {

    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Footer animation */

.site-footer {
    animation: footerReveal 1s ease both;
}

@keyframes footerReveal {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .main-header .nav-link {
        padding-left: 9px !important;
        padding-right: 9px !important;
    }

    .enquiry-item {
        margin-left: 5px;
    }

    .header-btn {
        padding: 0 15px;
    }

    .footer-main {
        gap: 35px;
    }

}


@media (max-width: 991px) {

    .top-header {
        display: none;
    }

    .main-header .navbar {
        min-height: 72px;
    }

    .main-header .navbar-collapse {
        padding: 20px 0 25px;
    }

    .main-header .navbar-nav {
        align-items: flex-start !important;

        gap: 0;
    }

    .main-header .nav-link {
        width: 100%;
        height: auto;

        padding: 10px 0 !important;
    }

    .main-header .nav-link::after {
        display: none;
    }

    .enquiry-item {
        width: 100%;

        margin: 12px 0 0;
    }

    .header-btn {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 575px) {

    .hotel-brand {
        gap: 9px;
    }

    .brand-icon {
        width: 40px;
        height: 40px;
    }

    .brand-text strong {
        font-size: 20px;
    }

    .brand-text small {
        font-size: 6px;
        letter-spacing: 0.15em;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;

        padding-bottom: 45px;
    }

    .footer-bottom {
        padding: 20px 0;

        flex-direction: column;

        justify-content: center;

        text-align: center;
    }

    .site-footer {
        padding-top: 60px;
    }

}


/* =========================================================
   BACKDROP
========================================================= */

.enquiry-modal+.modal-backdrop,
.modal-backdrop.show {
    background: var(--navy-dark);
    opacity: 0.82;
}


/* =========================================================
   MODAL CONTAINER
========================================================= */

.enquiry-modal .modal-dialog {
    max-width: 1080px;
    margin: 1.5rem auto;
}

.enquiry-modal .modal-content {
    border: none;
    border-radius: 0;
    overflow: hidden;

    background: var(--white);

    box-shadow:
        0 35px 100px rgba(14, 29, 50, 0.35);
}


/* =========================================================
   LEFT INFORMATION PANEL
========================================================= */

.enquiry-modal .enquiry-info {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    color: var(--white);

    background:
        radial-gradient(circle at 85% 15%,
            rgba(201, 162, 77, .20),
            transparent 28%),
        linear-gradient(145deg,
            var(--navy),
            var(--navy-dark));

    overflow: hidden;
}


/* Decorative circles */

.enquiry-modal .enquiry-info::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    right: -190px;
    bottom: -190px;

    border: 1px solid rgba(201, 162, 77, .25);

    border-radius: 50%;
}

.enquiry-modal .enquiry-info::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -130px;
    bottom: -130px;

    border: 1px solid rgba(201, 162, 77, .15);

    border-radius: 50%;
}


.enquiry-modal .enquiry-info-content {
    position: relative;
    z-index: 2;

    padding: 65px 50px;

    width: 100%;
}


/* =========================================================
   MODAL KICKER
========================================================= */

.enquiry-modal .enquiry-kicker {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--gold);

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

    letter-spacing: .22em;

    text-transform: uppercase;
}

.enquiry-modal .enquiry-kicker span {
    display: inline-block;

    width: 30px;
    height: 1px;

    background: var(--gold);
}


/* =========================================================
   MODAL HEADING
========================================================= */

.enquiry-modal .enquiry-info h2 {
    margin: 18px 0 20px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: clamp(30px, 4vw, 40px);

    line-height: .95;

    font-weight: 600;
}

.enquiry-modal .enquiry-info h2 em {
    color: var(--gold);

    font-style: italic;

    font-weight: 500;
}


.enquiry-modal .enquiry-description {
    max-width: 390px;

    margin-bottom: 35px;

    color: var(--white);

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   CAPACITY HIGHLIGHT
========================================================= */

.enquiry-modal .enquiry-highlight {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 17px;

    margin-bottom: 28px;

    border: 1px solid rgba(201, 162, 77, .25);

    background: rgba(255, 255, 255, .035);
}

.enquiry-modal .highlight-icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

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

    color: var(--gold);

    border: 1px solid rgba(201, 162, 77, .45);

    font-size: 17px;
}

.enquiry-modal .enquiry-highlight strong {
    display: block;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 21px;

    font-weight: 600;

    line-height: 1.1;
}

.enquiry-modal .enquiry-highlight span {
    display: block;

    margin-top: 4px;

    color: var(--white);

    font-size: 12px;

    letter-spacing: .04em;
}


/* =========================================================
   EVENT TYPES
========================================================= */

.enquiry-modal .enquiry-event-types {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 35px;
}

.enquiry-modal .enquiry-event-types span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 7px 10px;

    border: 1px solid rgba(255, 255, 255, .10);

    color: var(--white);

    font-size: 14px;

    letter-spacing: .04em;
}

.enquiry-modal .enquiry-event-types i {
    color: var(--gold);
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.enquiry-modal .enquiry-contact {
    padding-top: 22px;

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

.enquiry-modal .enquiry-contact p {
    display: flex;

    align-items: center;

    gap: 12px;

    margin: 0 0 14px;

    color: var(--white);

    font-size: 14px;
}

.enquiry-modal .enquiry-contact p>i {
    color: var(--gold);

    font-size: 20px;
}

.enquiry-modal .enquiry-contact small {
    display: block;

    margin-bottom: 2px;

    color: var(--gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .15em;
}


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

.enquiry-modal .enquiry-form-panel {
    position: relative;

    padding: 55px 55px 45px;

    background: var(--white);
}


.enquiry-modal .form-header {
    margin-bottom: 27px;

    padding-right: 35px;
}

.enquiry-modal .enquiry-form-header .section-kicker {
    font-size: 13px;
}

.enquiry-modal .enquiry-form-header h3 {
    margin: 8px 0 5px;

    color: var(--navy);

    font-family: var(--font-heading);

    font-size: 38px;

    font-weight: 600;

    line-height: 1;
}

.enquiry-modal .enquiry-form-header h3 em {
    color: var(--gold-dark);

    font-style: italic;
}

.enquiry-modal .enquiry-form-header p {
    margin: 12px 0 0;

    color: var(--navy-dark);

    font-size: 15px;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.enquiry-modal .enquiry-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 36px;
    height: 36px;

    z-index: 10;

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

    border: 1px solid rgba(201, 162, 77, .35);

    background: transparent;

    color: var(--gold-dark);

    font-size: 11px;

    transition: var(--transition);
}

.enquiry-modal .enquiry-close:hover {
    background: var(--gold);

    border-color: var(--gold);

    color: var(--navy);

    transform: rotate(90deg);
}

.enquiry-modal .mobile-close {
    display: none;
}


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

.custom-floating {
    position: relative;
}

.custom-floating .form-control,
.custom-floating .form-select {
    height: 57px;

    border-radius: 0;

    border: 1px solid rgba(23, 42, 70, .14);

    background: #FCFBF8;

    color: var(--navy);

    font-family: var(--font-body);

    font-size: 13px;

    box-shadow: none;

    transition: var(--transition);
}

.enquiry-modal .custom-floating textarea.form-control {
    height: 105px !important;
    resize: none;
}

.enquiry-modal .custom-floating label {
    color: var(--navy);

    font-size: 13px;

    letter-spacing: .02em;
}

.enquiry-modal .custom-floating .form-control:focus,
.enquiry-modal .custom-floating .form-select:focus {
    border-color: var(--gold);

    background: var(--white);

    box-shadow:
        0 0 0 3px rgba(201, 162, 77, .09);
}

.enquiry-modal .custom-floating .form-control:focus~label,
.enquiry-modal .custom-floating .form-control:not(:placeholder-shown)~label,
.enquiry-modal .custom-floating .form-select:focus~label {
    color: var(--gold-dark);
}


/* =========================================================
   SEATING
========================================================= */

.enquiry-modal .form-label-custom {
    margin: 5px 0 9px;

    color: var(--navy);

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

    letter-spacing: .12em;

    text-transform: uppercase;
}

.enquiry-modal .seating-options {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}

.enquiry-modal .seating-option {
    cursor: pointer;
}

.enquiry-modal .seating-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.enquiry-modal .seating-option span {
    min-height: 38px;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 0 12px;

    border: 1px solid rgba(23, 42, 70, .12);

    background: #FCFBF8;

    color: var(--navy-dark);

    font-size: 14px;

    transition: var(--transition);
}

.enquiry-modal .seating-option span i {
    color: var(--gold-dark);

    font-size: 11px;
}

.enquiry-modal .seating-option input:checked+span {
    background: var(--navy);

    border-color: var(--navy);

    color: var(--white);
}

.enquiry-modal .seating-option input:checked+span i {
    color: var(--gold);
}

.enquiry-modal .seating-option:hover span {
    border-color: var(--gold);
}


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

.enquiry-modal .enquiry-submit {
    width: 100%;

    min-height: 56px;

    display: flex;

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

    padding: 0 20px;

    border: 1px solid var(--gold);

    background: var(--gold);

    color: var(--navy);

    font-family: var(--font-body);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .16em;

    text-transform: uppercase;

    cursor: pointer;

    transition: var(--transition);
}

.enquiry-modal .enquiry-submit i {
    font-size: 15px;

    transition: transform .3s ease;
}

.enquiry-modal.enquiry-submit:hover {
    background: var(--navy);

    border-color: var(--navy);

    color: var(--white);
}

.enquiry-modal .enquiry-submit:hover i {
    color: var(--gold);

    transform: translate(4px, -4px);
}


/* =========================================================
   MODAL OPEN ANIMATION
========================================================= */

.enquiry-modal.show .modal-dialog {
    animation:
        enquiryModalIn .65s cubic-bezier(.22, .61, .36, 1);
}

@keyframes enquiryModalIn {

    0% {
        opacity: 0;
        transform: translateY(40px) scale(.96);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


/* Left content animation */

.enquiry-modal.show .enquiry-info-content {
    animation:
        enquiryContentIn .8s ease .15s both;
}

@keyframes enquiryContentIn {

    from {
        opacity: 0;
        transform: translateX(-25px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* Form animation */

.enquiry-modal.show .enquiry-form-panel {
    animation:
        enquiryFormIn .75s ease .2s both;
}

@keyframes enquiryFormIn {

    from {
        opacity: 0;
        transform: translateX(25px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .enquiry-modal .modal-dialog {
        max-width: 720px;
    }

    .enquiry-modal .enquiry-info {
        min-height: auto;
    }

    .enquiry-modal .enquiry-info-content {
        padding: 45px 40px;
    }

    .enquiry-modal .enquiry-form-panel {
        padding: 45px 40px 40px;
    }

    .enquiry-modal .desktop-close {
        display: none;
    }

    .enquiry-modal .mobile-close {
        display: flex;
    }

}


@media (max-width: 575px) {

    .enquiry-modal .enquiry-modal .modal-dialog {
        margin: 10px;
    }

    .enquiry-modal .enquiry-info-content {
        padding: 40px 25px;
    }

    .enquiry-modal .enquiry-info h2 {
        font-size: 43px;
    }

    .enquiry-modal .enquiry-description {
        font-size: 11px;
    }

    .enquiry-modal .enquiry-form-panel {
        padding: 40px 22px 25px;
    }

    .enquiry-modal .enquiry-form-header h3 {
        font-size: 34px;
    }

    .enquiry-modal .seating-options {
        gap: 5px;
    }

    .enquiry-modal .seating-option span {
        padding: 0 9px;
    }

}


/* =========================================================
   PREMIUM HERO CAROUSEL
========================================================= */

.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;

    background: var(--navy-dark);
}


/* =========================================================
   SLIDE
========================================================= */

.hero-carousel .hero-slide {
    position: relative;

    width: 100%;

    height: min(760px, calc(100vh - 120px));

    min-height: 600px;

    overflow: hidden;
}


/* =========================================================
   IMAGE
========================================================= */

.hero-carousel .hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1.04);

    transition:
        transform 7s cubic-bezier(.2, .6, .2, 1);
}


/* Ken Burns effect */

.hero-carousel .carousel-item.active .hero-image {
    transform: scale(1.10);
}


/* =========================================================
   GRADIENT OVERLAY
========================================================= */

.hero-carousel .hero-gradient {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        /* Main dark gradient */
        linear-gradient(90deg,
            rgba(8, 20, 36, .94) 0%,
            rgba(14, 29, 50, .82) 30%,
            rgba(23, 42, 70, .48) 60%,
            rgba(23, 42, 70, .18) 100%),

        /* Bottom gradient */
        linear-gradient(0deg,
            rgba(8, 20, 36, .70) 0%,
            transparent 45%);
}


/* =========================================================
   GOLD DECORATIVE GRADIENT
========================================================= */

.hero-carousel .hero-gradient::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -160px;
    top: 50%;

    transform: translateY(-50%);

    background:
        radial-gradient(circle,
            rgba(201, 162, 77, .20) 0%,
            rgba(201, 162, 77, .08) 30%,
            transparent 70%);

    pointer-events: none;
}


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

.hero-carousel .hero-container {
    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;

    align-items: center;
}


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

.hero-carousel .hero-content {
    max-width: 760px;

    padding-top: 20px;

    color: var(--white);
}


/* =========================================================
   EYEBROW
========================================================= */

.hero-carousel .hero-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: var(--gold);

    font-family: var(--font-body);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .25em;

    text-transform: uppercase;
}

.hero-carousel .hero-eyebrow span {
    display: inline-block;

    width: 40px;
    height: 1px;

    background: var(--gold);
}


/* =========================================================
   HEADING
========================================================= */

.hero-carousel .hero-content h1 {
    margin: 0;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: clamp(35px,
            6.5vw,
            45px);

    font-weight: 600;

    line-height: .92;

    letter-spacing: -.02em;
}

.hero-carousel .hero-content h1 em {
    color: var(--gold);

    font-style: italic;

    font-weight: 500;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero-carousel .hero-content>p {

    margin: 27px 0 32px;

    color: var(--white);

    font-family: var(--font-body);

    font-size: 14px;

    line-height: 1.9;
}


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

.hero-carousel .hero-buttons {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 12px;
}

.hero-carousel .hero-btn {
    min-height: 50px;

    display: inline-flex;

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

    gap: 12px;

    padding: 0 23px;

    font-family: var(--font-body);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;

    text-decoration: none;

    transition: all .35s ease;
}

.hero-carousel .hero-btn i {
    font-size: 14px;

    transition: transform .3s ease;
}


/* Gold */

.hero-carousel .hero-btn-gold {
    color: var(--navy);

    background: var(--gold);

    border: 1px solid var(--gold);
}

.hero-carousel .hero-btn-gold:hover {
    color: var(--white);

    background: var(--navy);

    border-color: var(--navy);

    transform: translateY(-3px);
}

.hero-carousel .hero-btn-gold:hover i {
    transform: translate(3px, -3px);
}


/* Outline */

.hero-carousel .hero-btn-outline {
    color: var(--white);

    background: transparent;

    border: 1px solid rgba(255, 255, 255, .55);
}

.hero-carousel .hero-btn-outline:hover {
    color: var(--navy);

    background: var(--white);

    border-color: var(--white);

    transform: translateY(-3px);
}

.hero-carousel .hero-btn-outline:hover i {
    transform: translateX(4px);
}


/* =========================================================
   CAROUSEL ARROWS
========================================================= */

.hero-carousel .hero-carousel .carousel-control-prev,
.hero-carousel .hero-carousel .carousel-control-next {
    width: auto;

    top: auto;
    bottom: 50px;

    opacity: 1;

    z-index: 5;
}

.hero-carousel .carousel-control-prev {
    left: auto;
    right: 120px;
}

.hero-carousel .carousel-control-next {
    right: 55px;
}


.hero-carousel .carousel-arrow {
    width: 48px;
    height: 48px;

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

    border: 1px solid rgba(255, 255, 255, .35);

    color: var(--white);

    font-size: 15px;

    transition: all .35s ease;
}

.hero-carousel .carousel-arrow:hover {
    color: var(--navy);

    background: var(--gold);

    border-color: var(--gold);

    transform: translateY(-3px);
}


/* =========================================================
   INDICATORS
========================================================= */

.hero-carousel .carousel-indicators {
    position: absolute;

    z-index: 5;

    right: auto;
    bottom: 55px;
    left: 50%;

    width: auto;

    margin: 0;

    justify-content: flex-start;

    gap: 8px;
}

.hero-carousel .carousel-indicators button {
    width: 30px;
    height: 2px;

    margin: 0;

    border: 0;

    opacity: .45;

    background: var(--white);

    transition: all .4s ease;
}

.hero-carousel .carousel-indicators button.active {
    width: 55px;

    opacity: 1;

    background: var(--gold);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.hero-carousel .hero-scroll {
    position: absolute;

    z-index: 4;

    right: 35px;
    bottom: 180px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--white);

    font-size: 12px;

    letter-spacing: .18em;

    writing-mode: vertical-rl;
}

.hero-carousel .hero-scroll i {
    color: var(--gold);

    animation: heroScroll 1.8s ease infinite;
}

@keyframes heroScroll {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }

}


/* =========================================================
   SLIDE CONTENT ANIMATION
========================================================= */

.hero-carousel .carousel-item .hero-eyebrow,
.hero-carousel .carousel-item .hero-content h1,
.hero-carousel .carousel-item .hero-content>p,
.hero-carousel .carousel-item .hero-buttons {
    opacity: 0;
}

.hero-carousel .carousel-item.active .hero-eyebrow {
    animation:
        heroFadeUp .8s ease .25s forwards;
}

.hero-carousel .carousel-item.active h1 {
    animation:
        heroFadeUp .9s ease .40s forwards;
}

.hero-carousel .carousel-item.active .hero-content>p {
    animation:
        heroFadeUp .9s ease .55s forwards;
}

.hero-carousel .carousel-item.active .hero-buttons {
    animation:
        heroFadeUp .9s ease .70s forwards;
}

@keyframes heroFadeUp {

    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991px) {

    .hero-carousel .hero-slide {
        height: 500px;

        min-height: 500px;
    }

    .hero-carousel .hero-gradient {
        background:
            linear-gradient(90deg,
                rgba(8, 20, 36, .94),
                rgba(14, 29, 50, .72)),
            linear-gradient(0deg,
                rgba(8, 20, 36, .65),
                transparent);
    }

    .hero-carousel .hero-content {
        max-width: 680px;
    }

    .hero-carousel .hero-content h1 {
        font-size: clamp(52px, 8vw, 75px);
    }

    .hero-carousel .carousel-control-prev {
        right: 105px;
    }

    .hero-carousel .carousel-control-next {
        right: 45px;
    }

    .hero-carousel .hero-scroll {
        display: none;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {

    .hero-carousel .hero-slide {
        height: 400px;

        min-height: 400px;
    }

    .hero-carousel .hero-carousel .hero-image {
        object-position: 62% center;
    }

    .hero-gradient {
        background:
            linear-gradient(90deg,
                rgba(8, 20, 36, .94) 0%,
                rgba(14, 29, 50, .78) 70%,
                rgba(14, 29, 50, .60) 100%),
            linear-gradient(0deg,
                rgba(8, 20, 36, .80),
                transparent 55%);
    }

    .hero-carousel .hero-container {
        align-items: center;
    }

    .hero-carousel .hero-content {
        max-width: 100%;

        padding:
            50px 10px 40px;
    }

    .hero-carousel .hero-eyebrow {
        font-size: 8px;

        letter-spacing: .18em;
    }

    .hero-carousel .hero-eyebrow span {
        width: 25px;
    }

    .hero-carousel .hero-content h1 {
        font-size: clamp(45px, 13vw, 65px);

        line-height: .94;
    }

    .hero-carousel .hero-content>p {
        max-width: 100%;

        margin:
            22px 0 25px;

        font-size: 12px;

        line-height: 1.8;
    }

    .hero-carousel .hero-buttons {
        flex-direction: column;

        align-items: stretch;

        width: 100%;
    }

    .hero-carousel .hero-btn {
        width: 100%;
    }

    .hero-carousel .carousel-indicators {
        left: 20px;

        bottom: 25px;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        bottom: 20px;
    }

    .hero-carousel .carousel-control-prev {
        right: 80px;
    }

    .hero-carousel .carousel-control-next {
        right: 20px;
    }

    .carousel-arrow {
        width: 42px;
        height: 42px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .hero-carousel .hero-slide {
        height: 450px;

        min-height: 450px;
    }

    .hero-carousel .hero-content {
        padding:
            35px 5px 30px;
    }

    .hero-carousel .hero-content h1 {
        font-size: 28px;
    }

    .hero-carousel .hero-content>p {
        font-size: 11px;
    }

    .hero-carousel .carousel-indicators {
        bottom: 20px;
    }

}

/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
    position: relative;
    background: var(--ivory);
    overflow: hidden;
}

.section-padding {
    padding: 60px 0;
}

/* =========================================================
   ABOUT ROW
========================================================= */

.about-row {
    position: relative;
}


/* =========================================================
   IMAGE GALLERY
========================================================= */

.about-gallery {
    position: relative;

    padding:
        0 30px 30px 0;
}


/* Gold decorative frame */

.about-gallery-frame {
    position: absolute;

    top: 30px;
    right: 0;

    width: calc(100% - 30px);
    height: calc(100% - 60px);

    border: 1px solid var(--gold);

    opacity: .55;

    pointer-events: none;

    z-index: 0;
}


/* =========================================================
   OWL
========================================================= */

.about-owl {
    position: relative;

    z-index: 1;

    overflow: hidden;
}

.about-slide {
    position: relative;

    height: 590px;

    overflow: hidden;

    background: var(--navy);
}

.about-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1.2s cubic-bezier(.2, .6, .2, 1);
}

.about-slide:hover img {
    transform: scale(1.05);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.about-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(0deg,
            rgba(8, 20, 36, .78) 0%,
            rgba(8, 20, 36, .05) 50%,
            transparent 75%);

    z-index: 2;
}


/* =========================================================
   IMAGE CAPTION
========================================================= */

.about-slide-caption {
    position: absolute;

    left: 30px;
    bottom: 27px;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 15px;
}

.about-slide-caption span {
    color: var(--gold);

    font-family: var(--font-body);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .15em;
}

.about-slide-caption strong {
    color: var(--white);

    font-family: var(--font-heading);

    font-size: 23px;

    font-weight: 500;
}


/* =========================================================
   IMAGE COUNT
========================================================= */

.about-image-count {
    position: absolute;

    top: 22px;
    left: -18px;

    z-index: 4;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 9px 14px;

    background: var(--navy);

    color: rgba(255, 255, 255, .45);

    font-family: var(--font-body);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .12em;
}

.about-current {
    color: var(--gold);
}

.count-divider {
    width: 18px;
    height: 1px;

    background:
        rgba(255, 255, 255, .25);
}


/* =========================================================
   CAROUSEL CONTROLS
========================================================= */

.about-carousel-controls {
    position: absolute;

    right: 45px;
    bottom: 55px;

    z-index: 5;

    display: flex;

    gap: 7px;
}

.about-carousel-controls button {
    width: 46px;
    height: 46px;

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

    border: 1px solid rgba(255, 255, 255, .45);

    background: rgba(8, 20, 36, .35);

    color: var(--white);

    font-size: 13px;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transition: all .35s ease;
}

.about-carousel-controls button:hover {
    background: var(--gold);

    border-color: var(--gold);

    color: var(--navy);

    transform: translateY(-3px);
}


/* Remove Owl default dots */

.about-owl .owl-dots {
    display: none;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content {

    padding-left: 45px;
}

.section-small-title {
    display: block;

    margin-bottom: 15px;

    color: var(--gold);

    font-family: var(--font-body);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .20em;

    text-transform: uppercase;
}

.section-main-title {
    margin: 0 0 25px;

    color: var(--navy);

    font-family: var(--font-heading);

    font-size: clamp(38px, 4vw, 46px);

    font-weight: 600;

    line-height: .98;
}

.about-content h3 em {
    color: var(--gold);

    font-style: italic;

    font-weight: 500;
}

.about-content p {
    margin-bottom: 17px;

    color: var(--text-muted);

    font-family: var(--font-body);

    font-size: 13px;

    line-height: 1.9;
}

.about-content .about-lead {
    color: var(--navy-dark);

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.about-highlights {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin-top: 32px;

    border-top:
        1px solid var(--border-light);

    border-bottom:
        1px solid var(--border-light);
}

.about-highlight {
    min-height: 105px;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 15px;

    border-right:
        1px solid var(--border-light);
}

.about-highlight:last-child {
    border-right: 0;
}

.highlight-number {
    color: var(--navy);

    font-family: var(--font-heading);

    font-size: 30px;

    font-weight: 600;

    line-height: 1;
}

.highlight-number span {
    color: var(--gold);

    font-size: 18px;
}

.highlight-content strong {
    display: block;

    margin-top: 17px;

    color: var(--navy);

    font-family: var(--font-body);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .04em;
}



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

.about-actions {
    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 32px;
}

.about-btn {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 21px;

    background: var(--navy);

    border: 1px solid var(--navy);

    color: var(--white);

    font-family: var(--font-body);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

    text-decoration: none;

    transition: all .35s ease;
}

.about-btn:hover {
    background: var(--gold);

    border-color: var(--gold);

    color: var(--navy);

    transform: translateY(-3px);
}

.about-btn i {
    transition: transform .3s ease;
}

.about-btn:hover i {
    transform: translate(3px, -3px);
}

.about-text-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--navy);

    font-family: var(--font-body);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

    text-decoration: none;

    transition: color .3s ease;
}

.about-text-link:hover {
    color: var(--gold);
}

.about-text-link i {
    transition: transform .3s ease;
}

.about-text-link:hover i {
    transform: translateX(4px);
}


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

@media (max-width: 991px) {

    .about-gallery {
        margin-bottom: 55px;

        padding-right: 20px;
    }

    .about-gallery-frame {
        right: 0;
    }

    .about-slide {
        height: 520px;
    }

    .about-content {
        max-width: 100%;

        padding-left: 0;
    }

}


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

@media (max-width: 767px) {

    .about-gallery {
        padding:
            0 12px 12px 0;
    }

    .about-gallery-frame {
        top: 18px;

        width: calc(100% - 12px);
        height: calc(100% - 36px);
    }

    .about-slide {
        height: 430px;
    }

    .about-image-count {
        top: 15px;
        left: -5px;
    }

    .about-slide-caption {
        left: 20px;
        bottom: 20px;
    }

    .about-slide-caption strong {
        font-size: 17px;
    }

    .about-carousel-controls {
        right: 20px;
        bottom: 25px;
    }

    .about-carousel-controls button {
        width: 40px;
        height: 40px;
    }

    .section-main-title {
        font-size: 40px;
    }

    .about-highlights {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .about-highlight {
        padding: 12px 8px;
    }

    .highlight-number {
        font-size: 25px;
    }

    .highlight-content strong {
        font-size: 10px;
    }

    .highlight-content span {
        display: none;
    }

    .about-actions {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }

}

/* =========================================================
   SHARED SECTION HEADER
   Used by Amenities, Gallery, Events, etc.
========================================================= */

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.section-header-content {
    flex: 1;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    color: var(--gold);

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;

    letter-spacing: .22em;

    text-transform: uppercase;
}

.eyebrow-line {
    display: inline-block;

    width: 38px;
    height: 1px;

    background: var(--gold);

    flex-shrink: 0;
}

.section-title {
    margin: 0 0 18px;

    color: var(--navy);

    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;

    line-height: 1.05;
}

.section-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.section-subtitle {
    margin: 0;


    color: var(--white);

    font-family: var(--font-body);
    font-size: 15px;

    line-height: 1.9;
}

.section-header-number {
    flex-shrink: 0;

    font-family: var(--font-heading);
    font-size: 110px;
    font-weight: 700;

    line-height: 1;

    color: rgba(23, 42, 70, .06);

    user-select: none;
}


/* =========================================================
   AMENITIES SECTION
========================================================= */

.amenities-section {
    position: relative;

    padding: 50px 0 50px;

    background: var(--ivory);

    overflow: hidden;
}


/* subtle background decoration */

.amenities-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    top: 120px;

    border: 1px solid rgba(201, 162, 77, .10);

    border-radius: 50%;

    pointer-events: none;
}

.amenities-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -175px;
    top: 195px;

    border: 1px solid rgba(201, 162, 77, .07);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   AMENITIES ICON GRID
========================================================= */

.amenities-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: rgba(23, 42, 70, .10);

    border: 1px solid rgba(23, 42, 70, .10);

    position: relative;
    z-index: 2;
}


/* =========================================================
   ICON CARD
========================================================= */

.amenity-icon-card {
    position: relative;

    background: #ffffff;

    padding: 36px 28px 32px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 0;

    overflow: hidden;

    transition:
        background .35s ease,
        transform .4s cubic-bezier(.2, .6, .2, 1);
}

.amenity-icon-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(201, 162, 77, .06) 0%,
            transparent 65%);

    opacity: 0;

    transition: opacity .35s ease;
}

.amenity-icon-card:hover {
    background: var(--navy);
    transform: translateY(-6px);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(14, 29, 50, .22);
}

.amenity-icon-card:hover::before {
    opacity: 1;
}


/* =========================================================
   ICON WRAPPER
========================================================= */

.aic-icon-wrap {
    width: 60px;
    height: 60px;

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

    background: rgba(201, 162, 77, .12);

    border: 1px solid rgba(201, 162, 77, .30);

    color: var(--gold);

    font-size: 22px;

    margin-bottom: 24px;

    transition:
        background .35s ease,
        border-color .35s ease,
        color .35s ease,
        transform .4s cubic-bezier(.2, .6, .2, 1);
}

.amenity-icon-card:hover .aic-icon-wrap {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: rotate(-6deg) scale(1.08);
}


/* =========================================================
   CARD NUMBER
========================================================= */

.aic-number {
    position: absolute;

    top: 18px;
    right: 20px;

    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;

    letter-spacing: .14em;

    color: var(--navy-dark);

    transition: color .35s ease;
}

.amenity-icon-card:hover .aic-number {
    color: rgba(255, 255, 255, .25);
}


/* =========================================================
   CARD BODY
========================================================= */

.aic-body {
    display: flex;
    flex-direction: column;
}

.aic-label {
    display: block;

    margin-bottom: 8px;

    color: var(--gold);

    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;

    letter-spacing: .20em;

    text-transform: uppercase;

    transition: color .35s ease;
}

.amenity-icon-card:hover .aic-label {
    color: rgba(201, 162, 77, .75);
}

.aic-title {
    margin: 0 0 10px;

    color: var(--navy);

    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 600;

    line-height: 1.1;

    transition: color .35s ease;
}

.amenity-icon-card:hover .aic-title {
    color: var(--white);
}

.aic-desc {
    margin: 0;

    color: #000;
    font-family: var(--font-body);
    font-size: 14px;

    line-height: 1.75;

    transition: color .35s ease;
}

.amenity-icon-card:hover .aic-desc {
    color: var(--white);
}


/* =========================================================
   TABLET  (1199px)
========================================================= */

@media (max-width: 1199px) {

    .section-title {
        font-size: 40px;
    }

    .section-header-number {
        font-size: 80px;
    }

    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .amenity-icon-card {
        padding: 30px 22px 28px;
    }

    .aic-title {
        font-size: 19px;
    }

}


/* =========================================================
   TABLET  (991px)
========================================================= */

@media (max-width: 991px) {

    .amenities-section {
        padding: 85px 0 95px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 48px;
    }

    .section-header-number {
        display: none;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================================
   MOBILE  (767px)
========================================================= */

@media (max-width: 767px) {

    .amenities-section {
        padding: 70px 0 80px;
    }

    .section-title {
        font-size: 34px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenity-icon-card {
        padding: 26px 18px 24px;
    }

    .aic-icon-wrap {
        width: 50px;
        height: 50px;
        font-size: 19px;
        margin-bottom: 18px;
    }

    .aic-title {
        font-size: 18px;
    }

}


/* =========================================================
   SMALL MOBILE  (480px)
========================================================= */

@media (max-width: 480px) {

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .amenity-icon-card {
        padding: 28px 22px;
    }

}



/* subtle background decoration */

.amenities-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    top: 120px;

    border: 1px solid rgba(201, 162, 77, .10);

    border-radius: 50%;

    pointer-events: none;
}

.amenities-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -175px;
    top: 195px;

    border: 1px solid rgba(201, 162, 77, .07);

    border-radius: 50%;

    pointer-events: none;
}

/* =========================================================
   SUITABLE FOR SECTION
========================================================= */

.suitable-section {
    position: relative;

    padding: 115px 0 120px;

    background: var(--navy);

    overflow: hidden;
}


/* Decorative circles */

.suitable-section::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    left: -330px;
    bottom: -330px;

    border: 1px solid rgba(201, 162, 77, .08);

    border-radius: 50%;

    pointer-events: none;
}

.suitable-section::after {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    left: -220px;
    bottom: -220px;

    border: 1px solid rgba(201, 162, 77, .06);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.suitable-section .section-header {
    position: relative;

    z-index: 2;

    border-color:
        rgba(255, 255, 255, .12);
}

.suitable-section .section-title {
    color: var(--white);
}

.suitable-section .section-subtitle {
    color: var(--white);
}

.suitable-section .section-header-number {
    color:
        rgba(255, 255, 255, .06);
}


/* =========================================================
   CAROUSEL
========================================================= */

.suitable-carousel-wrap {
    position: relative;

    z-index: 2;
}

.suitable-carousel {
    padding:
        8px 0 20px;
}

.suitable-carousel .owl-stage {
    display: flex;
}

.suitable-carousel .owl-item {
    display: flex;
}


/* =========================================================
   OCCASION CARD
========================================================= */

.occasion-card {
    position: relative;

    width: 100%;

    height: 560px;

    overflow: hidden;

    background: #111f32;

    cursor: pointer;
}


/* =========================================================
   IMAGE
========================================================= */

.occasion-card>img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1.2s cubic-bezier(.2, .6, .2, 1);
}

.occasion-card:hover>img {
    transform:
        scale(1.08);
}


/* =========================================================
   GRADIENT
========================================================= */

.occasion-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(6, 17, 30, .18) 0%,
            rgba(6, 17, 30, .15) 30%,
            rgba(6, 17, 30, .72) 68%,
            rgba(6, 17, 30, .96) 100%);

    z-index: 1;

    transition:
        background .5s ease;
}

.occasion-card:hover .occasion-overlay {
    background:
        linear-gradient(180deg,
            rgba(6, 17, 30, .18) 0%,
            rgba(6, 17, 30, .12) 25%,
            rgba(6, 17, 30, .66) 62%,
            rgba(6, 17, 30, .97) 100%);
}


/* =========================================================
   TOP AREA
========================================================= */

.occasion-top {
    position: absolute;

    top: 22px;
    left: 22px;
    right: 22px;

    z-index: 3;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;
}


/* Number */

.occasion-number {
    display: flex;

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

    width: 40px;
    height: 40px;

    border:
        1px solid rgba(255, 255, 255, .30);

    background:
        rgba(6, 17, 30, .42);

    color: var(--gold);

    font-family: var(--font-body);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .08em;

    backdrop-filter: blur(8px);
}


/* Icon */

.occasion-icon {
    width: 47px;
    height: 47px;

    display: flex;

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

    background: var(--gold);

    color: var(--navy);

    font-size: 15px;

    transition:
        transform .4s ease;
}

.occasion-card:hover .occasion-icon {
    transform:
        rotate(-7deg) scale(1.08);
}


/* =========================================================
   CONTENT
========================================================= */

.occasion-content {
    position: absolute;

    left: 27px;
    right: 27px;
    bottom: 28px;

    z-index: 3;
}


/* Category */

.occasion-category {
    display: block;

    margin-bottom: 11px;

    color: var(--gold);

    font-family: var(--font-body);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .20em;

    text-transform: uppercase;
}


/* Title */

.occasion-content h3 {
    margin: 0 0 13px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 30px;

    font-weight: 500;

    line-height: .98;

    transition:
        transform .4s ease;
}

.occasion-card:hover .occasion-content h3 {
    transform:
        translateY(-3px);
}


/* Description */

.occasion-content p {
    max-width: 330px;

    margin: 0;

    color: var(--white);

    font-family: var(--font-body);

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   LINK
========================================================= */

.occasion-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 21px;

    padding-top: 15px;

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

    color: var(--white);

    font-family: var(--font-body);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        color .3s ease;
}

.occasion-link:hover {
    color: var(--gold);
}

.occasion-link i {
    transition:
        transform .3s ease;
}

.occasion-link:hover i {
    transform:
        translate(3px, -3px);
}


/* =========================================================
   FOOTER
========================================================= */

.suitable-carousel-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 30px;

    padding-top: 22px;

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


/* =========================================================
   PROGRESS
========================================================= */

.suitable-carousel-info {
    display: flex;

    align-items: center;

    gap: 12px;

    color:
        var(--white);

    font-family: var(--font-body);

    font-size: 15px;

    font-weight: 700;

    letter-spacing: .1em;
}

.suitable-current {
    color: var(--gold);
}


/* Progress */

.suitable-line {
    position: relative;

    width: 130px;
    height: 1px;

    background:
        rgba(255, 255, 255, .14);
}

.suitable-line span {
    position: absolute;

    left: 0;
    top: 0;

    width: 12.5%;
    height: 1px;

    background: var(--gold);

    transition:
        width .5s ease;
}


/* Label */

.suitable-carousel-info small {
    margin-left: 5px;

    color: var(--white);

    font-size: 15px;

    letter-spacing: .16em;
}


/* =========================================================
   CONTROLS
========================================================= */

.suitable-controls {
    display: flex;

    gap: 8px;
}

.suitable-controls button {
    width: 48px;
    height: 48px;

    display: flex;

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

    background: transparent;

    border:
        1px solid rgba(255, 255, 255, .22);

    color: var(--white);

    cursor: pointer;

    transition:
        all .35s ease;
}

.suitable-controls button:hover {
    background: var(--gold);

    border-color: var(--gold);

    color: var(--navy);

    transform:
        translateY(-3px);
}


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

@media (max-width: 1199px) {

    .occasion-card {
        height: 530px;
    }

    .occasion-content h3 {
        font-size: 27px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 991px) {

    .suitable-section {
        padding:
            90px 0 100px;
    }

    .occasion-card {
        height: 520px;
    }

}


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

@media (max-width: 767px) {

    .suitable-section {
        padding:
            75px 0 85px;
    }

    .occasion-card {
        height: 510px;
    }

    .occasion-content {
        left: 22px;
        right: 22px;
        bottom: 24px;
    }

    .occasion-content h3 {
        font-size: 30px;
    }

    .occasion-content p {
        font-size: 9px;
    }

    .suitable-carousel-footer {
        margin-top: 20px;
    }

    .suitable-line {
        width: 70px;
    }

    .suitable-carousel-info small {
        display: none;
    }

    .suitable-controls button {
        width: 42px;
        height: 42px;
    }

}


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

@media (max-width: 400px) {

    .occasion-card {
        height: 470px;
    }

    .occasion-content h3 {
        font-size: 27px;
    }

    .occasion-icon {
        width: 42px;
        height: 42px;
    }

}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    position: relative;

    padding: 115px 0 125px;

    background: var(--ivory);

    overflow: hidden;
}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.contact-section::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    right: -280px;
    bottom: -280px;

    border: 1px solid rgba(201, 162, 77, .10);

    border-radius: 50%;

    pointer-events: none;
}

.contact-section::after {
    content: "";

    position: absolute;

    width: 370px;
    height: 370px;

    right: -190px;
    bottom: -190px;

    border: 1px solid rgba(201, 162, 77, .07);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   CONTACT GRID
========================================================= */

.contact-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, .85fr) minmax(0, 1.15fr);

    gap: 80px;

    align-items: stretch;
}


/* =========================================================
   LEFT CONTACT INFO
========================================================= */

.contact-info {
    display: flex;

    flex-direction: column;
}


/* Intro */

.contact-info-intro {
    margin-bottom: 28px;
}

.contact-info-intro>span {
    display: block;

    margin-bottom: 13px;

    color: var(--gold);

    font-family: var(--font-body);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .22em;
}

.contact-info-intro h3 {
    margin: 0 0 17px;

    color: var(--navy);

    font-family: var(--font-heading);

    font-size: clamp(39px, 4vw, 55px);

    font-weight: 600;

    line-height: .98;
}

.contact-info-intro h3 em {
    color: var(--gold);

    font-style: italic;

    font-weight: 500;
}

.contact-info-intro p {
    max-width: 470px;

    margin: 0;

    color: var(--navy-dark);

    font-family: var(--font-body);

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-detail {
    position: relative;

    display: grid;

    grid-template-columns:
        50px 1fr 20px;

    align-items: center;

    gap: 18px;

    padding: 20px 0;

    border-top:
        1px solid rgba(23, 42, 70, .10);

    color: inherit;

    text-decoration: none;

    transition:
        padding .35s ease;
}

.contact-detail:hover {
    padding-left: 8px;
}


/* Icon */

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

    display: flex;

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

    background: var(--navy);

    color: var(--gold);

    font-size: 14px;

    transition:
        background .35s ease,
        color .35s ease;
}

.contact-detail:hover .contact-detail-icon {
    background: var(--gold);

    color: var(--navy);
}


/* Content */

.contact-detail-content span {
    display: block;

    margin-bottom: 5px;

    color: var(--gold);

    font-family: var(--font-body);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .18em;
}

.contact-detail-content strong {
    display: block;

    color: var(--navy-dark);

    font-family: var(--font-heading);

    font-size: 20px;

    font-weight: 500;
}

.contact-detail-content small {
    display: block;

    margin-top: 3px;

    color: var(--navy-dark);

    font-family: var(--font-body);

    font-size: 15px;

    line-height: 1.5;
}


/* Arrow */

.contact-detail-arrow {
    color:
        rgba(23, 42, 70, .25);

    font-size: 12px;

    transition:
        color .3s ease,
        transform .3s ease;
}

.contact-detail:hover .contact-detail-arrow {
    color: var(--gold);

    transform:
        translate(3px, -3px);
}


/* Address */

.contact-address {
    border-bottom:
        1px solid rgba(23, 42, 70, .10);
}



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

.contact-form-wrapper {
    position: relative;

    padding: 42px;

    background: var(--navy);

    box-shadow:
        0 30px 70px rgba(12, 28, 47, .13);
}


/* Gold corner */

.contact-form-wrapper::before {
    content: "";

    position: absolute;

    top: 15px;
    right: 15px;

    width: 60px;
    height: 60px;

    border-top:
        1px solid rgba(201, 162, 77, .6);

    border-right:
        1px solid rgba(201, 162, 77, .6);

    pointer-events: none;
}

.contact-form-wrapper::after {
    content: "";

    position: absolute;

    bottom: 15px;
    left: 15px;

    width: 60px;
    height: 60px;

    border-bottom:
        1px solid rgba(201, 162, 77, .6);

    border-left:
        1px solid rgba(201, 162, 77, .6);

    pointer-events: none;
}


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

.contact-form-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    margin-bottom: 35px;
}

.contact-form-top>div:first-child>span {
    display: block;

    margin-bottom: 10px;

    color: var(--gold);

    font-family: var(--font-body);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .20em;
}

.contact-form-top h3 {
    margin: 0;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 37px;

    font-weight: 500;

    line-height: 1;
}

.contact-form-top h3 em {
    color: var(--gold);

    font-style: italic;
}


/* Form mark */

.form-mark {
    width: 48px;
    height: 48px;

    display: flex;

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

    border:
        1px solid rgba(201, 162, 77, .4);

    color: var(--gold);

    font-size: 14px;
}


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

.form-field {
    position: relative;
}

.form-field label {
    display: block;

    margin-bottom: 9px;

    color:
        var(--white);
    font-family: var(--font-body);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .18em;
}

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

    padding: 13px 0;

    border: 0;

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

    border-radius: 0;

    outline: none;

    background: transparent;

    color: var(--white);

    font-family: var(--font-body);

    font-size: 11px;

    transition:
        border-color .3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--gold);
}


/* Placeholder */

.form-field input::placeholder,
.form-field textarea::placeholder {
    color:
        rgba(255, 255, 255, .28);
}


/* Select */

.form-field select {
    cursor: pointer;
}

.form-field select option {
    color: var(--navy);

    background: var(--white);
}


/* Textarea */

.form-field textarea {
    resize: vertical;

    min-height: 90px;
}


/* =========================================================
   SUBMIT ROW
========================================================= */

.contact-submit-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 8px;
}

.contact-submit-row>span {

    color:
        var(--white);

    font-family: var(--font-body);

    font-size: 14px;

    line-height: 1.6;
}


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

.contact-submit {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 15px 22px;

    border: 1px solid var(--gold);

    background: var(--gold);

    color: var(--navy);

    font-family: var(--font-body);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .13em;

    cursor: pointer;

    transition:
        all .35s ease;
}

.contact-submit:hover {
    background: transparent;

    color: var(--gold);

    transform:
        translateY(-3px);
}

.contact-submit i {
    transition:
        transform .3s ease;
}

.contact-submit:hover i {
    transform:
        translate(3px, -3px);
}


/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.contact-success {
    display: none;

    text-align: center;

    padding: 45px 20px;
}

.contact-success.active {
    display: block;
}

.contact-success-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 18px;

    display: flex;

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

    border: 1px solid var(--gold);

    color: var(--gold);

    font-size: 20px;
}

.contact-success h4 {
    margin: 0 0 10px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 30px;

    font-weight: 500;
}

.contact-success p {
    max-width: 400px;

    margin: auto;

    color:
        rgba(255, 255, 255, .5);

    font-family: var(--font-body);

    font-size: 10px;

    line-height: 1.8;
}


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

@media (max-width: 991px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .contact-info {
        max-width: 700px;
    }

    .contact-info-footer {
        margin-top: 20px;
    }

}


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

@media (max-width: 767px) {

    .contact-section {
        padding:
            75px 0 85px;
    }

    .contact-grid {
        gap: 45px;
    }

    .contact-info-intro h3 {
        font-size: 40px;
    }

    .contact-detail {
        grid-template-columns:
            43px 1fr 15px;

        gap: 13px;

        padding: 17px 0;
    }

    .contact-detail-icon {
        width: 43px;
        height: 43px;

        font-size: 12px;
    }

    .contact-detail-content strong {
        font-size: 16px;
    }

    .contact-detail-content small {
        font-size: 7px;
    }

    .contact-form-wrapper {
        padding: 30px 22px;
    }

    .contact-form-top h3 {
        font-size: 32px;
    }

    .form-mark {
        width: 40px;
        height: 40px;

        font-size: 12px;
    }

    .contact-submit-row {
        flex-direction: column;

        align-items: flex-start;
    }

    .contact-submit {
        width: 100%;
    }

}


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

@media (max-width: 400px) {

    .contact-form-wrapper {
        padding: 27px 18px;
    }

    .contact-form-top h3 {
        font-size: 28px;
    }

    .contact-info-intro h3 {
        font-size: 36px;
    }

}