@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    font-family: "Poppins", sans-serif;
    color: black;
    scroll-behavior: smooth;

    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
:focus
{
    outline: none;
    border: none;
}
:root
{
    --blue-050: #ecf2ff;
    --blue-100: #dbe7ff;
    --blue-200: #bfd1ff;
    --blue-300: #98b2ff;
    --blue-400: #7087ff;
    --blue-500: #4e5dff;
    --blue-600: #2f30fc;
    --blue-700: #2320df;
    --blue-800: #1f1fb4;
    --blue-900: #22248d;
    --blue-950: #141452;

    --turbo-050: #feffe7;
    --turbo-100: #faffc1;
    --turbo-200: #faff86;
    --turbo-300: #ffff41;
    --turbo-400: #fff30d;
    --turbo-500: #ffe500;
    --turbo-600: #d1aa00;
    --turbo-700: #a67a02;
    --turbo-800: #895f0a;
    --turbo-900: #744d0f;
    --turbo-950: #442904;

    --logo-dark: #01011B;
}
/*#region Miscellaneous*/
body
{
    overflow-x: hidden;
}
img, textarea
{
    display: block;
}
.text-center
{
    text-align: center;
}
.text-right
{
    text-align: right;
}
.text-left
{
    text-align: left;
}
.cursor-pointer
{
    cursor: pointer;
}
.ox-hidden
{
    overflow-x: hidden;
}
.oy-hidden
{
    overflow-y: hidden;
}
.ox-auto
{
    overflow-x: auto;
}
.oy-auto
{
    overflow-y: auto;
}
.oy-scroll
{
    overflow-y: scroll;
}
.none
{
    display: none;
}
.obj-fit-cover
{
    object-fit: cover;
}
.br-16
{
    border-radius: 16px;
}
.br-8
{
    border-radius: 8px;
}
.desaturate
{
    backdrop-filter: grayscale(100%) brightness(75%);
    mix-blend-mode: overlay;
}
/*#endregion*/

/*#region Background Colors*/
.bg-blue-050 { background-color: var(--blue-050); }
.bg-blue-100 { background-color: var(--blue-100); }
.bg-blue-200 { background-color: var(--blue-200); }
.bg-blue-300 { background-color: var(--blue-300); }
.bg-blue-400 { background-color: var(--blue-400); }
.bg-blue-500 { background-color: var(--blue-500); }
.bg-blue-600 { background-color: var(--blue-600); }
.bg-blue-700 { background-color: var(--blue-700); }
.bg-blue-800 { background-color: var(--blue-800); }
.bg-blue-900 { background-color: var(--blue-900); }
.bg-blue-950 { background-color: var(--blue-950); }

.bg-turbo-050 { background-color: var(--turbo-050); }
.bg-turbo-100 { background-color: var(--turbo-100); }
.bg-turbo-200 { background-color: var(--turbo-200); }
.bg-turbo-300 { background-color: var(--turbo-300); }
.bg-turbo-400 { background-color: var(--turbo-400); }
.bg-turbo-500 { background-color: var(--turbo-500); }
.bg-turbo-600 { background-color: var(--turbo-600); }
.bg-turbo-700 { background-color: var(--turbo-700); }
.bg-turbo-800 { background-color: var(--turbo-800); }
.bg-turbo-900 { background-color: var(--turbo-900); }
.bg-turbo-950 { background-color: var(--turbo-950); }

.bg-logo-dark { background-color: var(--logo-dark); }
.bg-white { background-color: white; }
/*#endregion*/

/*#region Colors*/
.color-blue-050 { color: var(--blue-050); }
.color-blue-100 { color: var(--blue-100); }
.color-blue-200 { color: var(--blue-200); }
.color-blue-300 { color: var(--blue-300); }
.color-blue-400 { color: var(--blue-400); }
.color-blue-500 { color: var(--blue-500); }
.color-blue-600 { color: var(--blue-600); }
.color-blue-700 { color: var(--blue-700); }
.color-blue-800 { color: var(--blue-800); }
.color-blue-900 { color: var(--blue-900); }
.color-blue-950 { color: var(--blue-950); }

.color-turbo-050 { color: var(--turbo-050); }
.color-turbo-100 { color: var(--turbo-100); }
.color-turbo-200 { color: var(--turbo-200); }
.color-turbo-300 { color: var(--turbo-300); }
.color-turbo-400 { color: var(--turbo-400); }
.color-turbo-500 { color: var(--turbo-500); }
.color-turbo-600 { color: var(--turbo-600); }
.color-turbo-700 { color: var(--turbo-700); }
.color-turbo-800 { color: var(--turbo-800); }
.color-turbo-900 { color: var(--turbo-900); }
.color-turbo-950 { color: var(--turbo-950); }

.color-white { color: white; }
.color-grey { color: grey; }

.color-grad-000
{
    background-image: linear-gradient(180deg, var(--blue-600) 0%, var(--blue-200) 100%);
    color: transparent;
    background-clip: text;
}
.color-grad-001
{
    background-image: linear-gradient(90deg, var(--blue-600) 0%, rgba(255,198,198,1) 100%);
    color: transparent;
    background-clip: text;
}
.color-grad-002
{
    background-image: linear-gradient(180deg, var(--blue-600) 0%, rgba(255,198,198,1) 100%);
    color: transparent;
    background-clip: text;
}
.color-grad-003
{
    background-image: linear-gradient(90deg, var(--blue-600) 0%, #9C63FF 75%);
    color: transparent;
    background-clip: text;
}
.color-logo-dark
{
    color: var(--logo-dark);
}
/*#endregion*/

/*#region Position*/
.relative
{
    position: relative;
}
.absolute
{
    position: absolute;
}
.fixed
{
    position: fixed;
}
.sticky
{
    position: sticky;
}
/*#endregion*/

/*#region Width*/
.w100-percent
{
    width: 100%;
}
.w100-vw
{
    width: 100vw;
}
.w-fit
{
    width: fit-content;
}
/*#endregion*/

/*#region Height*/
.h100-percent
{
    height: 100%;
}
.h100-vh
{
    height: 100vh;
}
/*#endregion*/

/*#region Flex*/
.flex
{
    display: flex;
}
.flex-column
{
    flex-direction: column;
}
.flex-row
{
    flex-direction: row;
}
.flex-wrap
{
    flex-wrap: wrap;
}
.justify-center
{
    justify-content: center;
}
.justify-between
{
    justify-content: space-between;
}
.justify-end
{
    justify-content: end;
}
.align-center
{
    align-items: center;
}
.align-start
{
    align-items: start;
}
.align-end
{
    align-items: end;
}
/*#endregion*/

/*#region Gap*/
.gap-4
{
    gap: 4px;
}
.gap-8
{
    gap: 8px;
}
.gap-16
{
    gap: 16px;
}
.gap-32
{
    gap: 32px;
}
.gap-64
{
    gap: 64px;
}
.gap-128
{
    gap: 128px;
}
/*#endregion*/

/*#region Margins*/
.mx-auto
{
    margin-left: auto;
    margin-right: auto;
}
.mx-8
{
    margin-left: 8px;
    margin-right: 8px;
}
.mx-16
{
    margin-left: 16px;
    margin-right: 16px;
}
.mx-32
{
    margin-left: 32px;
    margin-right: 32px;
}
.mx-64
{
    margin-left: 64px;
    margin-right: 64px;
}

.my-auto
{
    margin-top: auto;
    margin-bottom: auto;
}
.my-8
{
    margin-top: 8px;
    margin-bottom: 8px;
}
.my-16
{
    margin-top: 16px;
    margin-bottom: 16px;
}
.my-32
{
    margin-top: 32px;
    margin-bottom: 32px;
}
.my-64
{
    margin-top: 64px;
    margin-bottom: 64px;
}
.my-128
{
    margin-top: 128px;
    margin-bottom: 128px;
}

.mt-4
{
    margin-top: 4px;
}
.mb-4
{
    margin-bottom: 4px;
}
.mb-8
{
    margin-bottom: 8px;
}
.mb-16
{
    margin-bottom: 16px;
}
/*#endregion*/

/*#region Paddings*/
.px-8
{
    padding-left: 8px;
    padding-right: 8px;
}
.px-16
{
    padding-left: 16px;
    padding-right: 16px;
}
.px-32
{
    padding-left: 32px;
    padding-right: 32px;
}
.px-64
{
    padding-left: 64px;
    padding-right: 64px;
}
.px-128
{
    padding-left: 128px;
    padding-right: 128px;
}

.py-8
{
    padding-top: 8px;
    padding-bottom: 8px;
}
.py-16
{
    padding-top: 16px;
    padding-bottom: 16px;
}
.py-32
{
    padding-top: 32px;
    padding-bottom: 32px;
}
.py-64
{
    padding-top: 64px;
    padding-bottom: 64px;
}
.py-72
{
    padding-top: 72px;
    padding-bottom: 72px;
}
.pt-72
{
    padding-top: 72px;
}
.pb-72
{
    padding-bottom: 72px;
}
.py-128
{
    padding-top: 128px;
    padding-bottom: 128px;
}
/*#endregion*/

/*#region Font Sizes*/
.font-8 { font-size: 8px; }
.font-12 { font-size: 12px; }
.font-14 { font-size: 14px; }
.font-16 { font-size: 16px; }
.font-18 { font-size: 18px; }
.font-20 { font-size: 20px; }
.font-22 { font-size: 22px; }
.font-24 { font-size: 24px; }
.font-26 { font-size: 26px; }
.font-28 { font-size: 28px; }
.font-32 { font-size: 32px; }
.font-40 { font-size: 40px; }
.font-48 { font-size: 48px; }
.font-64 { font-size: 64px; }
.font-72 { font-size: 72px; }
.font-96 { font-size: 96px; }
.font-128 { font-size: 128px; }
.font-144 { font-size: 144px; }
/*#endregion*/

/*#region Font-Weights*/
.fw-100 { font-weight: 100; }
.fw-200 { font-weight: 200; }
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }
/*#endregion*/

/*#region Line-Heights*/
.lh100-percent
{
    line-height: 100%;
}
/*#endregion*/

/*#region Containers*/
:root
{
    --content-width: 1600px;
}
.container
{
    max-width: var(--content-width);
    width: calc(100% - 64px);
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 1440px)
{
    :root
    {
        --content-width: 1240px;
    }
}
@media screen and (max-width: 1200px)
{
    :root
    {
        --content-width: 960px;
    }
}
@media screen and (max-width: 768px)
{
    .container
    {
        width: calc(100% - 32px);
    }
}
/*#endregion*/

/*#region Forms*/
.newsletter-form
{
    max-width: 512px;
    width: 100%;
}

.form-row
{
    display: flex;
    gap: 16px;
}
@media screen and (max-width: 1024px)
{
    .form-row
    {
        flex-direction: column;
    }
}
#summary
{
    min-width: 420px;
}
@media screen and (max-width: 960px)
{
    #checkout-form
    {
        flex-direction: column;
    }
    #summary
    {
        width: 100%;
    }
}
/*#endregion*/

/*#region Inputs*/
.input-field
{
    border: 1px solid rgb(172, 172, 172);
    border-radius: 8px;
    height: 48px;
    width: 100%;
}
.pseudo-input
{
    border: none;
    outline: none;
    background-color: transparent;
}
/*#endregion*/

/*#region Tables*/
.data-row
{
    border: 1px solid rgb(172, 172, 172);
    overflow-y: hidden;
}
.row-header
{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.row-body
{
    max-height: 0px;
    transition: max-height ease-in-out 500ms;
}
.data-row.expanded > .row-body
{
    max-height: 2048px;
}
/*#endregion*/

/*#region Tags*/
.tag
{
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}
.tag-001
{
    border: 1px solid #35519c;
    color: #35519c;
}
.tag-002
{
    border: 1px solid #359c4b;
    color: #359c4b;
}
.tag-003
{
    border: 1px solid #9c3535;
    color: #9c3535;
}

.navbar-container
{
    top: 0px;
    left: 0px;
    right: 0px;
    height: 64px;
    z-index: 100;
}
.nav-link
{
    transition: all ease-in-out 250ms;
}
.nav-link:hover
{
    color: var(--blue-600);
}
.nav-dropdown
{
    top: 100%;
    left: 0px;
    right: 0px;
    height: 0px;
    background-color: white;
    transition: height ease-in-out 400ms;
    overflow-y: hidden;
    border-bottom: 1px solid rgb(128, 128, 128);
}
.nav-dropdown > .container > div
{
    display: grid;
    grid-template-columns: 1fr 2fr;
    >div:nth-of-type(1) > div:nth-of-type(2) > div
    {
        border-radius: 16px 0px 0px 16px;
    }
}
.hamburger-button
{
    display: none;
}
.nav-drawable
{
    top: 0px;
    bottom: 0px;
    right: -312px;
    width: 312px;
    padding-top: 32px;
    padding-bottom: 32px;
    border-left: 1px solid rgb(128, 128, 128);
    z-index: 110;
    transition: all ease-in-out 200ms;
    overflow-y: auto;
}

/* Multi-level navigation styles */
.nav-level
{
    display: none;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all ease-in-out 300ms;
}

.nav-level.active
{
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.nav-level.slide-left
{
    transform: translateX(-100%);
}

.nav-back-button
{
    color: var(--blue-600);
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color ease-in-out 200ms;
}

.nav-back-button:hover
{
    background-color: var(--blue-050);
}

.nav-contact-section
{
    margin-top: auto;
}

/* Region detail styles */
#region-detail-content .category-section
{
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

#region-detail-content .category-section:last-child
{
    border-bottom: none;
}

#region-detail-content .category-section h5
{
    margin-bottom: 8px;
    color: var(--blue-600);
}

#region-detail-content .category-section a
{
    display: block;
    padding: 4px 8px;
    margin: 2px 0;
    border-radius: 4px;
    transition: background-color ease-in-out 200ms;
    color: #374151;
}

#region-detail-content .category-section a:hover
{
    background-color: var(--blue-050);
    color: var(--blue-600);
}
@media screen and (max-width: 1200px)
{
    .navbar-container > .container > div:nth-of-type(1)
    {
        display: none;
    }
    .hamburger-button
    {
        display: block;
    }
}

.overlay
{
    position: absolute;
    inset: 0 0 0 0;
    z-index: 50;
}
.black-tint
{
    background-color: rgba(0, 0, 0, 0.30);
}
.black-bt-tint
{
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(255,255,255,0) 75%);
}

.button-01, .button-02
{
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: fit-content;
    height: 48px;
    padding: 0px 32px;

    border-radius: 8px;

    cursor: pointer;

    transition: all 150ms ease-in-out;
}

.button-01
{
    background-color: var(--blue-600);
    color: white;
}
.button-01:hover
{
    background-color: var(--blue-500);
}

.button-02
{   
    background-color: white;
    color: var(--blue-600);
    box-shadow: inset 0 0 0px 1.5px var(--blue-600);
}
.button-02:hover
{
    background-color: var(--blue-050);
}

.br-16
{
    border-radius: 16px;
}

.fade-in-up
{
    opacity: 0;
    transform: translateY(64px);
    transition: opacity 750ms ease-out, transform 750ms ease-out;
}
.fade-in-up.active
{
    opacity: 1;
    transform: translateY(0);
}

.dropdown-container
{
    border: 1px solid rgb(196, 196, 196);
    transition: height ease-in-out 250ms;
}
.dropdown-header
{
    border-bottom: 1px solid rgb(196, 196, 196);
    cursor: pointer;
}
.masonary-container
{
    columns: 360px;
    img
    {
        border-radius: 16px;
        width: 100%;
        margin-bottom: 16px;
    }
}
.package-card
{
    >img
    {
        height: 480px;
        width: 40%;
    }
}
@media screen and (max-width: 1024px)
{
    .package-card
    {
        flex-direction: column;
        >img
        {
            height: 240px;
            width: 100%;
        }
    }
}

.lift-16
{
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.075)
}

.signup-container
{
    width: 1024px;

    >div:nth-of-type(1)
    {
        height: 720px;
        width: 100%;
    }

    >div:nth-of-type(2)
    {
        width: 100%;
    }
}
@media screen and (max-width: 720px)
{
    .signup-container
    {
        flex-direction: column;

        >div:nth-of-type(1)
        {
            height: 160px;
        }

        >div:nth-of-type(2)
        {
            padding: 0;
        }
    }
}
#destination-hero-strap
{
    flex: 0.5;
}
#destination-hero-gallery
{
    width: calc(100% - 40%);
    >img
    {
        height: 144px; width: 144px;
    }
}

#destination-faq-container
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 720px)
{
    #destination-hero-strap
    {
        flex: 1;
    }
    #destination-banner-image, #destination-hero-gallery
    {
        display: none;
    }
    #destination-banner-image-mobile
    {
        display: block;
    }
    #destination-hero-gallery
    {
        width: 100%;
        >img
        {
            width: 48%;
        }
    }

    #destination-faq-container
    {
        grid-template-columns: repeat(1, 1fr);
    }
    #destination-section-heading
    {
        font-size: 32px;
    }
}

@media screen and (max-width: 460px)
{
    #destination-hero-gallery
    {
        >img
        {
            width: 100%;
        }
    }
}

/* Footer Responsive Styles */
.footer-main-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

.footer-section {
    flex: 1;
}

.footer-left {
    max-width: 380px;
    flex: 1.2;
}

.footer-middle {
    flex: 1.3;
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer-destinations-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 45%;
}

.footer-right {
    max-width: 400px;
    flex: 0.9;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social-link {
    transition: transform 0.3s ease;
}

.footer-social-link:hover {
    transform: scale(1.1);
}

/* Google Maps Styles */
.footer-maps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-map-container {
    width: 75%;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.footer-map-container:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.footer-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    pointer-events: none;
}

.footer-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.footer-map-container:hover .footer-map-overlay {
    opacity: 1;
}

.footer-map-overlay-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.footer-map-overlay:hover .footer-map-overlay-text {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.footer-logo {
    max-width: 256px;
    margin-bottom: 16px;
    margin-top: -20px;
}

.footer-description {
    line-height: 1.6;
}

.footer-heading {
    margin-bottom: 4px;
}

.footer-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    text-decoration: underline !important;
    opacity: 0.8;
}

.footer-address {
    margin: 0;
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    text-align: center;
}

.hover-underline:hover {
    text-decoration: underline !important;
    opacity: 0.8;
}

/* Mobile and Small Mobile Responsive - Left Aligned */
@media screen and (max-width: 768px) {
    .footer-main-layout {
        flex-direction: column;
        gap: 32px;
    }

    .footer-section {
        max-width: 100%;
    }

    .footer-left {
        max-width: 100%;
        text-align: left;
    }

    .footer-middle {
        max-width: 100%;
        margin: 0;
        flex-direction: column;
        gap: 32px;
        justify-content: flex-start;
    }

    .footer-destinations-section {
        width: 100%;
        text-align: left;
    }

    .footer-right {
        max-width: 100%;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-logo {
        margin: 0 0 16px 0;
        display: block;
        max-width: 200px;
    }

    .footer-social-links {
        justify-content: flex-start;
    }

    .footer-contact,
    .footer-social {
        gap: 12px;
    }

    .footer-maps {
        gap: 12px;
    }

    .footer-map-container {
        height: 100px;
        border-radius: 6px;
    }

    .footer-heading {
        font-size: 18px;
    }

    .footer-bottom {
        justify-content: flex-start;
    }

    .footer-bottom p {
        text-align: left;
    }
}

/* Small Mobile Responsive - Left Aligned */
@media screen and (max-width: 480px) {
    .footer-main-layout {
        gap: 24px;
    }

    .footer-middle {
        gap: 24px;
    }

    .footer-right {
        gap: 20px;
    }

    .footer-map-container {
        height: 120px;
        border-radius: 4px;
    }

    .footer-logo {
        max-width: 180px;
    }

    .footer-social-links {
        gap: 12px;
    }

    .footer-social-links img {
        height: 28px;
    }

    .footer-heading {
        font-size: 16px;
    }

    .footer-description,
    .footer-link,
    .footer-address,
    .footer-bottom p {
        font-size: 13px;
    }
}

/* Section 4 Package Grid Responsive Styles */


/* Tablet - 3 columns */
@media screen and (max-width: 1024px) {
    .card-container {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px;
    }
}

/* Mobile - 2 columns */
@media screen and (max-width: 768px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

/* Small Mobile - 1 column */
@media screen and (max-width: 480px) {
    .card-container {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 16px;
    }
}

/* Responsive Typography */
@media screen and (max-width: 1024px) {
    .font-64 {
        font-size: 48px !important;
    }
    .font-48 {
        font-size: 36px !important;
    }
}

@media screen and (max-width: 768px) {
    .font-64 {
        font-size: 36px !important;
    }
    .font-48 {
        font-size: 28px !important;
    }
    .font-24 {
        font-size: 20px !important;
    }
}

@media screen and (max-width: 480px) {
    .font-64 {
        font-size: 36px !important;
    }
    .font-48 {
        font-size: 24px !important;
    }
    .font-24 {
        font-size: 18px !important;
    }
    .font-20 {
        font-size: 18px !important;
    }
}

.destination-hero-section > div:nth-of-type(1)
{
    min-height: 620px;
}

/* Destination Page Responsive Styles */
@media screen and (max-width: 768px) {
    .destination-hero-section > div:nth-of-type(1)
    {
        min-height: auto
    }
    #destination-banner-image {
        display: none !important;
    }
    
    #destination-banner-image-mobile {
        display: block !important;
    }
    
    .destination-hero-content {
        padding-top: 32px !important;
    }
}

@media screen and (max-width: 480px) {
    
    .destination-hero-content {
        padding-top: 24px !important;
    }
    
    #destination-hero-gallery {
        justify-content: center !important;
        gap: 12px !important;
    }
    
    #destination-hero-gallery img,
    #destination-hero-gallery a {
        height: 120px !important;
        width: 120px !important;
        min-width: 120px !important;
    }
    
    .bg-blue-050 .py-32 {
        padding: 24px 0 !important;
    }
}

/* Additional responsive improvements for gallery */
@media screen and (max-width: 768px) {
    #destination-hero-gallery {
        gap: 12px !important;
    }
    
    #destination-hero-gallery img,
    #destination-hero-gallery a {
        height: 128px !important;
        width: 128px !important;
        min-width: 128px !important;
    }
}

@media screen and (max-width: 768px) {
    .package-price-book {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

/* Scroll snap enhancements */
html {
    scroll-behavior: smooth;
}

.scroll-snap-section {
    scroll-snap-align: start;
    min-height: 100vh;
}

#section-seven,
#section-008 {
    position: relative;
    overflow: hidden;
}

/* Enhanced section transitions */
#section-seven h1 {
    will-change: transform, opacity;
}

#section-008 .rotator-panel {
    will-change: transform, opacity;
}

/* Smooth scroll indicator */
.scroll-snap-indicator {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-snap-indicator.active {
    opacity: 1;
}

.scroll-snap-indicator .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-snap-indicator .dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Floating Consult Button Styles */
.consult-float-container {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.consult-text {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
    color: white;
    padding: 10px 20px;
    border-radius: 20px 20px 5px 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(46, 48, 252, 0.3);
    animation: pulse 2s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.consult-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--blue-600);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(46, 48, 252, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.consult-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 48, 252, 0.5);
    background-color: var(--blue-500);
}

.consult-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(46, 48, 252, 0.4);
}

.consult-button svg {
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .consult-float-container {
        bottom: 20px;
        right: 20px;
    }
    
    .consult-text {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .consult-button {
        padding: 14px 24px;
        font-size: 14px;
        gap: 8px;
    }
    
    .consult-button svg {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 480px) {
    .consult-float-container {
        bottom: 16px;
        right: 16px;
    }
    
    .consult-text {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .consult-button {
        padding: 12px 20px;
        font-size: 13px;
    }
}