/* =========================================================
   BABUSPACE - MAIN WEBSITE THEME
   Brand: Black + Babu Turquoise + White
========================================================= */

:root {
    --bs-teal: #21a8b3;
    --bs-teal-dark: #168d98;
    --bs-black: #080808;
    --bs-text: #10202d;
    --bs-muted: #68737b;
    --bs-light: #f6faf9;
    --bs-white: #ffffff;
    --bs-border: #e5e9e9;
    --bs-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    --bs-radius: 18px;
}


/* =========================================================
   RESET
========================================================= */

.bs-header *,
.bs-footer *,
.bs-hero *,
.bs-section *,
.bs-host-section *,
.bs-final-cta * {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "DM Sans", Arial, sans-serif;
    color: var(--bs-text);
    background: var(--bs-white);
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   CONTAINER
========================================================= */

.bs-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.bs-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

    .bs-header.scrolled {
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    }

.bs-header-inner {
    width: min(1320px, calc(100% - 48px));
    height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.bs-logo {
    display: flex;
    align-items: center;
    width: 145px;
}

.bs-logo-img {
    width: 125px;
    height: auto;
    object-fit: contain;
}


/* =========================================================
   NAVIGATION
========================================================= */

.bs-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
    margin-right: 38px;
}

.bs-nav-link {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: #14212a;
    padding: 30px 0;
    transition: color 0.2s ease;
}

    .bs-nav-link:hover {
        color: var(--bs-teal);
    }

    .bs-nav-link:first-child {
        color: var(--bs-teal);
    }

        .bs-nav-link:first-child::after {
            content: "";
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            width: 26px;
            height: 2px;
            background: var(--bs-teal);
            border-radius: 10px;
        }


/* =========================================================
   HEADER ACTIONS
========================================================= */

.bs-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bs-currency-btn {
    border: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .bs-currency-btn i {
        font-size: 11px;
    }

.bs-signin-btn {
    height: 42px;
    padding: 0 18px;
    border: 1px solid #cbd1d3;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .bs-signin-btn:hover {
        border-color: var(--bs-teal);
        color: var(--bs-teal);
    }

.bs-list-property-btn {
    height: 42px;
    padding: 0 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: var(--bs-teal);
    color: white;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
}

    .bs-list-property-btn:hover {
        background: var(--bs-teal-dark);
        transform: translateY(-1px);
    }


/* =========================================================
   MOBILE MENU
========================================================= */

.bs-mobile-menu-btn {
    display: none;
    border: 0;
    background: transparent;
    font-size: 27px;
    cursor: pointer;
}

.bs-mobile-menu {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.bs-hero {
    position: relative;
    min-height: 590px;
    margin-top: 82px;
    background-image: url("../images/hero.png");
    background-size: cover;
    background-position: center;
    overflow: visible;
}

.bs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 41deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.78) 33%, rgba(255, 255, 255, 0.05) 70% );
}

.bs-hero-container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    min-height: 590px;
    display: flex;
    align-items: center;
}

.bs-hero-content {
    margin-top: -60px;
}

.bs-eyebrow,
.bs-section-eyebrow {
    display: block;
    color: var(--bs-teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.bs-hero h1 {
    margin: 13px 0 14px;
    color: var(--bs-black);
    font-size: clamp(52px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -3px;
    font-weight: 800;
}

    .bs-hero h1 span {
        color: var(--bs-teal);
    }

.bs-hero p {
    margin: 0;
    font-size: 19px;
    line-height: 1.5;
    color: #202d34;
}


/* =========================================================
   SEARCH BOX
========================================================= */

.bs-search-wrapper {
    position: absolute;
    z-index: 10;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1130px, calc(100% - 48px));
}

.bs-search-box {
    min-height: 80px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    padding: 8px 9px 8px 24px;
}

.bs-search-field {
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 22px;
    border-right: 1px solid #e7ebeb;
    height: 53px;
}

.bs-location-field {
    flex: 1.5;
}

.bs-guests-field {
    border-right: 0;
}

.bs-search-icon {
    width: 30px;
    min-width: 30px;
    color: var(--bs-teal);
    font-size: 21px;
}

.bs-search-field-content {
    min-width: 0;
}

.bs-search-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #26333b;
    margin-bottom: 5px;
}

.bs-search-field input,
.bs-search-field select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 13px;
    color: #7b858b;
}

    .bs-search-field input::placeholder {
        color: #8a9398;
    }

.bs-search-field select {
    cursor: pointer;
}

.bs-search-button {
    width: 62px;
    height: 62px;
    border: 0;
    border-radius: 50%;
    background: var(--bs-teal);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .bs-search-button:hover {
        background: var(--bs-teal-dark);
        transform: scale(1.04);
    }


/* =========================================================
   TRUST SECTION
========================================================= */

.bs-trust-section {
    padding: 76px 0 36px;
    background: white;
}

.bs-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.bs-trust-item {
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 26px;
    border-right: 1px solid var(--bs-border);
}

    .bs-trust-item:first-child {
        padding-left: 0;
    }

    .bs-trust-item:last-child {
        border-right: 0;
    }

.bs-trust-icon {
    width: 38px;
    min-width: 38px;
    font-size: 28px;
    color: var(--bs-teal);
}

.bs-trust-item strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
}

.bs-trust-item span {
    display: block;
    font-size: 12px;
    color: #778187;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.bs-section {
    padding: 54px 0;
}

.bs-popular-section {
    padding-top: 20px;
    padding-bottom: 85px;
}

.bs-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}

    .bs-section-heading h2 {
        margin: 6px 0 4px;
        font-size: 34px;
        line-height: 1.1;
        letter-spacing: -1.2px;
        color: var(--bs-text);
    }

    .bs-section-heading p {
        margin: 0;
        color: var(--bs-muted);
        font-size: 14px;
    }

.bs-view-all {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #086d77;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

    .bs-view-all i {
        font-size: 16px;
        transition: transform 0.2s ease;
    }

    .bs-view-all:hover i {
        transform: translateX(4px);
    }


/* =========================================================
   DESTINATION GRID
========================================================= */

.bs-destination-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 13px;
}

.bs-destination-card {
    position: relative;
    height: 215px;
    border-radius: 12px;
    overflow: hidden;
    background: #ddd;
}

    .bs-destination-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .bs-destination-card:hover img {
        transform: scale(1.06);
    }

.bs-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0) 65% );
}

.bs-destination-info {
    position: absolute;
    left: 16px;
    bottom: 16px;
    color: white;
}

    .bs-destination-info strong {
        display: block;
        font-size: 16px;
        font-weight: 800;
        margin-bottom: 2px;
    }

    .bs-destination-info span {
        display: block;
        font-size: 11px;
        opacity: 0.9;
    }

.bs-round-arrow {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    transition: all 0.2s ease;
}

.bs-destination-card:hover .bs-round-arrow {
    background: white;
    color: var(--bs-teal);
}


/* =========================================================
   PROPERTY GRID
========================================================= */

.bs-property-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.bs-property-card {
    overflow: hidden;
    background: white;
    border: 1px solid #e6e9e9;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .bs-property-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.11);
    }

.bs-property-image {
    position: relative;
    height: 205px;
    overflow: hidden;
    background: #eee;
}

    .bs-property-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.bs-property-card:hover .bs-property-image img {
    transform: scale(1.05);
}

.bs-heart {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18232a;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

    .bs-heart:hover {
        color: #e14962;
    }

.bs-property-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 6px 10px;
    border-radius: 20px;
    background: var(--bs-teal);
    color: white;
    font-size: 10px;
    font-weight: 800;
}

    .bs-property-badge.hotrush {
        background: #111;
    }

.bs-property-content {
    padding: 15px 15px 16px;
}

    .bs-property-content h3 {
        margin: 0 0 4px;
        font-size: 16px;
        font-weight: 800;
        color: #10202d;
    }

.bs-property-location {
    margin: 0 0 12px;
    font-size: 12px;
    color: #6e797f;
}

.bs-property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
    color: #657077;
}

    .bs-property-meta i {
        margin-right: 3px;
    }

.bs-property-bottom {
    margin-top: 16px;
    padding-top: 13px;
    border-top: 1px solid #edf0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bs-price {
    color: #10202d;
    font-size: 17px;
    font-weight: 800;
}

    .bs-price small {
        font-size: 10px;
        font-weight: 500;
        color: #7a858a;
    }

.bs-rating {
    font-size: 11px;
    font-weight: 700;
    color: #29353b;
}

    .bs-rating i {
        color: #f4a51c;
        margin-right: 3px;
    }

    .bs-rating span {
        color: #879096;
        font-weight: 400;
    }


/* =========================================================
   HOST SECTION
========================================================= */

.bs-host-section {
    min-height: 420px;
    display: grid;
    grid-template-columns: 45% 55%;
    background: #e8f7f6;
}

.bs-host-image {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

    .bs-host-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .bs-host-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to right, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0) );
    }

.bs-host-image-text {
    position: absolute;
    z-index: 2;
    right: 28px;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    color: white;
    font-family: "Playfair Display", serif;
    text-align: center;
}

    .bs-host-image-text span {
        display: block;
        font-size: 26px;
        font-style: italic;
    }

    .bs-host-image-text strong {
        display: block;
        font-size: 30px;
        font-style: italic;
    }

.bs-host-content {
    padding: 55px 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .bs-host-content h2 {
        margin: 8px 0 15px;
        font-size: 39px;
        line-height: 1.05;
        letter-spacing: -1.5px;
        color: var(--bs-black);
    }

    .bs-host-content > p {
        max-width: 500px;
        margin: 0 0 22px;
        font-size: 15px;
        line-height: 1.6;
        color: #536269;
    }

.bs-primary-button {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 21px;
    border-radius: 30px;
    background: var(--bs-teal);
    color: white;
    font-size: 13px;
    font-weight: 800;
    transition: all 0.2s ease;
}

    .bs-primary-button:hover {
        background: var(--bs-teal-dark);
        transform: translateY(-2px);
    }

.bs-host-benefits {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

    .bs-host-benefits div {
        display: flex;
        align-items: center;
        gap: 9px;
        font-size: 11px;
        font-weight: 600;
        color: #36454c;
    }

    .bs-host-benefits i {
        color: var(--bs-teal);
        font-size: 22px;
    }


/* =========================================================
   FINAL CTA
========================================================= */

.bs-final-cta {
    position: relative;
    min-height: 290px;
    background-image: url("../images/footer-hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.bs-final-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 22, 28, 0.58);
}

.bs-final-cta-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 180px 1px 1fr auto;
    align-items: center;
    gap: 35px;
    color: white;
}

.bs-final-logo img {
    width: 125px;
   /* filter: brightness(0) invert(1);*/
}

.bs-final-divider {
    width: 1px;
    height: 75px;
    background: rgba(255, 255, 255, 0.5);
}

.bs-final-cta h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.bs-final-button {
    min-width: 165px;
    padding: 13px 19px;
    border-radius: 30px;
    background: white;
    color: #13242b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 800;
    transition: all 0.2s ease;
}

    .bs-final-button:hover {
        color: var(--bs-teal);
        transform: translateY(-2px);
    }


/* =========================================================
   FOOTER
========================================================= */

.bs-footer {
    background: #07171d;
    color: white;
}

.bs-footer-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 65px 0 50px;
    display: grid;
    grid-template-columns: 1.7fr repeat(4, 1fr);
    gap: 45px;
}

.bs-footer-brand {
    padding-right: 30px;
}

.bs-footer-logo img {
    width: 115px;
    /*filter: brightness(0) invert(1);*/
}

.bs-footer-brand p {
    margin: 16px 0 20px;
    max-width: 210px;
    font-size: 13px;
    line-height: 1.6;
    color: #a7b4b8;
}

.bs-footer-social {
    display: flex;
    gap: 9px;
}

    .bs-footer-social a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid #405057;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #c3ced1;
        transition: all 0.2s ease;
    }

        .bs-footer-social a:hover {
            background: var(--bs-teal);
            border-color: var(--bs-teal);
            color: white;
        }

.bs-footer-column h4 {
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 800;
}

.bs-footer-column a {
    display: block;
    margin-bottom: 11px;
    font-size: 12px;
    color: #a7b4b8;
    transition: color 0.2s ease;
}

    .bs-footer-column a:hover {
        color: var(--bs-teal);
    }

.bs-footer-bottom {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    min-height: 65px;
    border-top: 1px solid #25353b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: #849196;
}

.bs-footer-bottom-links {
    display: flex;
    gap: 20px;
}

    .bs-footer-bottom-links a:hover {
        color: white;
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .bs-nav {
        gap: 20px;
        margin-right: 20px;
    }

    .bs-nav-link {
        font-size: 13px;
    }

    .bs-header-actions {
        gap: 8px;
    }

    .bs-list-property-btn {
        padding: 0 15px;
    }

    .bs-destination-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bs-destination-card:nth-child(4),
    .bs-destination-card:nth-child(5) {
        display: none;
    }

    .bs-property-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bs-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
    }

    .bs-trust-item:nth-child(2) {
        border-right: 0;
    }

    .bs-trust-item:nth-child(3) {
        padding-left: 0;
    }

    .bs-footer-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .bs-footer-brand {
        grid-column: span 3;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .bs-container {
        width: calc(100% - 30px);
    }

    .bs-header-inner {
        width: calc(100% - 30px);
        height: 70px;
    }

    .bs-logo {
        width: 115px;
    }

    .bs-logo-img {
        width: 105px;
    }

    .bs-nav,
    .bs-header-actions {
        display: none;
    }

    .bs-mobile-menu-btn {
        display: block;
    }

    .bs-mobile-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        border-top: 1px solid #eee;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        padding: 12px 15px;
    }

        .bs-mobile-menu.active {
            display: block;
        }

        .bs-mobile-menu > a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 10px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
        }

            .bs-mobile-menu > a:hover {
                background: #f1f8f8;
                color: var(--bs-teal);
            }

        .bs-mobile-menu i {
            width: 20px;
            color: var(--bs-teal);
        }

    .bs-mobile-divider {
        height: 1px;
        background: #eee;
        margin: 8px 0;
    }


    /* HERO */

    .bs-hero {
        margin-top: 70px;
        min-height: 620px;
        background-position: 62% center;
    }

    .bs-hero-overlay {
        background: linear-gradient( to bottom, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.84) 48%, rgba(255,255,255,0.1) 100% );
    }

    .bs-hero-container {
        width: calc(100% - 30px);
        min-height: 620px;
        align-items: flex-start;
        padding-top: 70px;
    }

    .bs-hero-content {
        margin-top: 0;
    }

    .bs-hero h1 {
        font-size: 52px;
        letter-spacing: -2px;
    }

    .bs-hero p {
        font-size: 16px;
    }

    .desktop-only {
        display: none;
    }


    /* SEARCH */

    .bs-search-wrapper {
        bottom: -170px;
        width: calc(100% - 30px);
    }

    .bs-search-box {
        border-radius: 20px;
        padding: 10px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        min-height: auto;
    }

    .bs-search-field {
        height: 65px;
        padding: 8px 12px;
        border-right: 0;
        border-bottom: 1px solid #e8eeee;
    }

    .bs-location-field {
        grid-column: span 2;
        border-bottom: 1px solid #e8eeee;
    }

    .bs-guests-field {
        border-bottom: 0;
    }

    .bs-search-button {
        width: 100%;
        height: 50px;
        border-radius: 12px;
        grid-column: span 2;
    }


    /* TRUST */

    .bs-trust-section {
        padding-top: 205px;
    }

    .bs-trust-grid {
        grid-template-columns: 1fr;
    }

    .bs-trust-item,
    .bs-trust-item:first-child,
    .bs-trust-item:nth-child(3) {
        padding: 13px 0;
        border-right: 0;
        border-bottom: 1px solid #edf0f0;
    }

        .bs-trust-item:last-child {
            border-bottom: 0;
        }


    /* SECTIONS */

    .bs-section {
        padding: 42px 0;
    }

    .bs-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

        .bs-section-heading h2 {
            font-size: 30px;
        }

    .bs-view-all {
        margin-top: 2px;
    }


    /* DESTINATIONS */

    .bs-destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bs-destination-card {
        height: 190px;
    }

        .bs-destination-card:nth-child(4),
        .bs-destination-card:nth-child(5) {
            display: block;
        }

        .bs-destination-card:nth-child(5) {
            grid-column: span 2;
        }


    /* PROPERTY */

    .bs-property-grid {
        grid-template-columns: 1fr;
    }

    .bs-property-image {
        height: 240px;
    }


    /* HOST */

    .bs-host-section {
        grid-template-columns: 1fr;
    }

    .bs-host-image {
        min-height: 320px;
    }

    .bs-host-content {
        padding: 45px 25px;
    }

        .bs-host-content h2 {
            font-size: 34px;
        }

    .bs-host-benefits {
        grid-template-columns: 1fr;
        gap: 14px;
    }


    /* CTA */

    .bs-final-cta {
        min-height: 390px;
    }

    .bs-final-cta-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .bs-final-logo img {
        margin: 0 auto;
    }

    .bs-final-divider {
        width: 80px;
        height: 1px;
        margin: 0 auto;
    }

    .bs-final-cta h2 {
        font-size: 30px;
    }

    .bs-final-button {
        margin: 0 auto;
    }


    /* FOOTER */

    .bs-footer-container {
        width: calc(100% - 30px);
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
        padding: 45px 0;
    }

    .bs-footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }

    .bs-footer-bottom {
        width: calc(100% - 30px);
        padding: 18px 0;
        min-height: auto;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .bs-hero h1 {
        font-size: 43px;
    }

    .bs-hero {
        min-height: 600px;
    }

    .bs-hero-container {
        min-height: 600px;
        padding-top: 55px;
    }

    .bs-destination-grid {
        grid-template-columns: 1fr;
    }

    .bs-destination-card,
    .bs-destination-card:nth-child(5) {
        grid-column: auto;
        height: 210px;
    }

    .bs-property-image {
        height: 220px;
    }

    .bs-footer-container {
        grid-template-columns: 1fr;
    }

    .bs-footer-brand {
        grid-column: auto;
    }
}
