.navbar-section {
    background-color: #f5f0e8;
    box-shadow: none;
    padding: ;
}

html {
    scroll-behavior: smooth;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    margin-left: 106px;
}

/* .navbar-menu {
    margin-left: 400px;
} */

.navbar-brand {
    margin-left: 30px;
}

.navbar .nav-link {
    font-size: 12px;
    font-weight: 600;
}

.navbar .nav-link:hover {
    background-color: #eb6161be;
    border-radius: 20px;
    transition: 0.3s;
}

/* Sticky Navbar */
.navbar-section {
    position: sticky;
    top: 0;
    z-index: 999;

}

.line {
    border: solid 0.2px rgba(0, 0, 0, 0.461);
    border-radius: 5px;
}

.navbar-brand {
    color: rgba(240, 6, 6, 0.87);
    font-weight: 700;
}

.navbar-brand:hover {
    color: rgba(240, 6, 6, 0.87);
    font-weight: 700;

}

.btn-rounded {
    border: solid 1px;
    border-radius: 10px;
    font-size: 12px;
    text-decoration: none;
    color: black;
    padding: 5px 15px;
}

.btn-rounded:hover {
    background-color: #eb6161be;
    transition: 0.3s;
}

.dropdown-menu {
    background: #fff;
    border-radius: 10px;
    padding: 6px 0;
    /* min-width: 100px; */

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

    font-size: 12px;

    display: none;
    transition: transform 0.3s ease;
}



/* items */
.dropdown-menu li {

    cursor: pointer;
}



/* arrow  rotation smooth*/
.dropdown-icon {
    transition: transform 0.3s ease;
}

.dropdown.show .dropdown-icon {
    transform: rotate(180deg);
}



.hero-section {
    background:
        linear-gradient(90deg, rgba(220, 38, 38, 0.708) 40%, rgba(220, 38, 38, 0.2) 60%, transparent),
        url('../images/hyd.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* 
    padding: 100px 0 150px; */
    color: white;
    position: relative;

}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
}

.hero-content p {
    margin-top: 10px;
    font-size: 18px;
}

.tabs {
    margin-top: 20px;
}

.tabs button {
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    margin-right: 10px;
    cursor: pointer;
}

.tabs .active {
    background: black;
    color: white;
}

.search-btn .arrow {
    font-size: 19px !important;
    margin-top: 4px;
}

.tabs .new {
    background: #444;
    color: white;
    position: relative;
}

.tabs {
    display: inline-flex;
    background: #f1f1f1;
    border-radius: 50px;
    padding: 5px;
}

/*  tabs color change */
.tabs {
    position: relative;
    display: inline-flex;
    background: #f1f1f1;
    border-radius: 50px;
    padding: 5px;
    overflow: hidden;
}

/* buttons */
.tabs button {
    position: relative;
    z-index: 2;
    border: none;
    background: transparent;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

/* active text */
/* .tabs button.active {
    color: #fff;
} */

/* sliding background */
.tab-slider {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(50% - 5px);
    height: calc(100% - 10px);
    background: #000;
    border-radius: 50px;
    transition: transform 0.3s ease;
    z-index: 1;
}



/* Search Box */
.search-box {
    background: #eee;
    border-radius: 20px;
    padding: 30px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-left: 35px;
    margin-right: 50px;

}

.search-item label {
    font-size: 14px;
    color: #666;
}

.search-item2 {
    cursor: pointer;
}

.search-item1 span,
.search-item2 span,
.search-item3 span {
    font-size: 12px;
    color: #1d1a1af2;
}

.search-item1 p,
.search-item2 p,
.search-item3 p {
    margin-top: 15px;
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.divider1 {
    width: 3px;
    height: 60px;
    background: #ccc;
    margin-left: 180px;
}

.divider2 {
    width: 3px;
    height: 60px;
    background: #ccc;

}


/* Responsive */
@media (max-width: 768px) {
    .search-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .divider {
        display: none;
    }

    .search-btn {
        width: 100%;
    }
}


/* Cities Section */

.cities {
    margin-top: 6.5rem;
}


.cities-container {
    max-width: 98.75rem;
    margin: 0px 65px 0px 77px;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    text-align: center;
}

/* city card */
.city img {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    object-fit: cover;
    cursor: pointer;
    margin-left: 20px;

}

.city img:hover {
    box-shadow: #000 0px 5px 15px !important;
    transition: all 0.3s ease;

}

.city p {
    margin-top: 10px;
    font-size: 14px;


}

@media (min-width: 1400px) {
    .city p {
        font-size: 14px;
        margin-top: 14px;

    }
}

/* dark card */
.city.dark {
    background: #333;
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 16px;

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

/*  cities Responsive */

@media (max-width: 992px) {
    .cities-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .city p {
        margin-top: 10px;
        font-size: 14px;
        margin-left: -19px;

    }

    .city img {
        width: 70px;
        height: 70px;
        border-radius: 16px;
        object-fit: cover;
        cursor: pointer;

    }



}

@media (max-width: 576px) {
    .cities-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-rounded {
        border: solid 1px;
        border-radius: 10px;
        font-size: 12px;
        text-decoration: none;
        color: black;
        padding: 5px 15px;
        margin-left: -13px;
    }
}

.tabs {
    font-size: 12px;
}

.search-item1 {
    font-size: 12px;
}

.search-item2 {
    font-size: 12px;
}

.search-item3 {
    font-size: 12px;
}

.search-item1 {
    position: relative;
    cursor: pointer;
}

/* dropdown hidden */
.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 150px;
    background: #fff;
    border-radius: 10px;
    color: #333;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 100;
}

.dropdown-list li {
    padding: 8px 15px;
    cursor: pointer;
    list-style: none;
}

.dropdown-list li:hover {
    background: #f5f5f5;
}


/*dropdown cities*/

.search-item1 {
    position: relative;
    cursor: pointer;
}

/* hide by default */
.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 12px;
    margin-top: 5px;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

    display: none;
    z-index: 999;
}

/* show when active */
.search-item1.active .dropdown-list {
    display: block;
}

/* list style */
.dropdown-list li {
    padding: 10px 15px;
    cursor: pointer;
}

.dropdown-list li:hover {
    background: #f5f5f5;
}

/* show dropdown */
/* make calendar center popup */
.flatpickr-calendar {
    margin-top: 10px;
    width: 700px !important;
    border-radius: 20px !important;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    position: relative;
}

/* 2 months spacing */
.flatpickr-months {
    justify-content: space-between;
}

/* bigger days */
.flatpickr-day {
    border-radius: 50%;
}

/* overlay background (dim effect) */
body.flatpickr-open::before {
    content: "";
    position: static;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9998;
}

/* time picker */
.search-item3 {
    position: relative;
    cursor: pointer;

}

.time-list {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* when dropdown open */
.search-item3.active .time-list {
    max-height: 300px;
}

/* smooth fade + slide for items */
.time-list div {
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}

.search-item3.active .time-list div {
    opacity: 1;
    transform: translateY(0);
}

/* chage time to Guest count*/
.time-box,
.guest-box {
    display: none;
    position: absolute;
    top: 100%;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.search-item3.active .time-box,
.search-item3.active .guest-box {
    display: block;
}

.row-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.search-item3 {
    position: relative;
}

/* popup */
.guest-box {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 350px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

/* show */
.search-item3.active .guest-box {
    display: block;
}

/* horizontal layout */
.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* each block */
.item {
    text-align: center;
}

/* counter style */
.counter {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

/* buttons */
.counter button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #f1f1f1;
    cursor: pointer;
    font-weight: bold;
}

/* number */
.counter .value {
    min-width: 20px;
    text-align: center;
}

--------------------------------------------

/* dropdown box */
.time-box {
    position: absolute;
    top: 70px;
    left: 0;
    width: 350px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    display: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.search-item3.active .time-box {
    display: block;
}

/* AM PM toggle */
.time-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.time-toggle button {
    border: none;
    padding: 6px 15px;
    border-radius: 20px;
    background: #eee;
    margin: 0 5px;
    cursor: pointer;
}

.time-toggle .active {
    background: #4f46e5;
    color: #fff;
}

/* time grid */
.time-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    color: #333;
}

.time-list div {
    padding: 8px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
}

.time-list div:hover {
    background: #f1f1f1;
}

.time-list .selected {
    background: #ddd;
}

/* button hover */
.search-btn {
    background: #ed171e;
    color: #fff;
    border: none;
    padding-left: 60px;
    padding-right: 40px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

/* hide arrow initially */
.search-btn .arrow {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
}

.arrow {
    font-size: 14px;

}

/* show arrow only on hover */
.search-btn:hover .arrow {
    opacity: 1;
    transform: translateX(0);

}

.search-btn:hover {
    background: #df6b6f;
    color: #fff;
    transition: 0.3s;
}


/* responsive styles */


img {
    max-width: 100%;
    height: auto;
}

/*  tab screen*/

@media (max-width: 992px) {

    .hero-content {
        margin-left: 0 !important;
        text-align: center;
    }

    .tabs {
        justify-content: center;
    }

    .search-box {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .search-item1,
    .search-item2,
    .search-item3 {
        width: 100%;
    }

    .divider1,
    .divider2 {
        display: none;
    }

    .search-btn {
        width: 100%;
        text-align: center;
    }

    .cities-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .navbar .nav-link:hover {

        background-color: transparent;
        color: #eb6161be;

    }

    .button {
        margin-top: 3px;

    }
}

/* 
   mobile screen
 */
@media (max-width: 576px) {

    .navbar-container {
        padding: 0 10px;
    }

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

    .hero-content p {
        font-size: 14px;
    }

    .tabs button {
        font-size: 12px;
        padding: 8px;
    }

    .search-box {
        padding: 10px;
        border-radius: 15px;
    }

    .search-item1 span,
    .search-item2 span,
    .search-item3 span {
        font-size: 12px;
    }

    .search-item1 p,
    .search-item2 p,
    .search-item3 p {
        font-size: 14px;
    }

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

    .city p {
        font-size: 13px;
    }
}

/* h3 all font weight */
h3 {
    font-weight: 700;
}

/* large screen */

@media (min-width: 1200px) {

    .container {
        max-width: 1200px;
    }

    .search-box {
        padding: 20px 30px;
    }

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

    .hero-content p {
        font-size: 18px;
    }
}


/*hero section style*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
} */

/* HERO SECTION  */

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


.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
    margin-left: 80px;
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.8rem;
    margin-left: 80px;
}

/* ========== TABS ========== */
.tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    padding: 6px;
    position: relative;
    margin-left: 80px;
    margin-top: 0px;
    top: 55px;

}

.tab-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(50% - 6px);
    height: calc(100% - 12px);
    /* background: white; */
    border-radius: 50px;
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    z-index: 0;
}

.tab-posi {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgb(255, 136, 0);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}



/* ========== SEARCH BOX ========== */
.search-box {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 32px;
    padding: 1.2rem 1.8rem;
    margin-top: 1rem;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-left: 80px;
    position: relative;
    top: 53px;
}

.search-item1,
.search-item2,
.search-item3 {
    flex: 1;
    cursor: pointer;
    position: relative;
    padding: 0.4rem 0.5rem;
    border-radius: 20px;
}


.search-item1 p,
.search-item2 p,
.search-item3 p {
    font-weight: 700;
    font-size: 12px;
    margin: 0.25rem 0 0;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.divider1,
.divider2 {
    width: 1px;
    height: 48px;
    background: #e2e8f0;
    margin-left: 12px;
}

.search-btn {
    background: #E31E24;
    border: none;
    padding: 0.85rem 3.25rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    transition: 0.25s;
    white-space: nowrap;
    cursor: pointer;
}

.search-btn:hover {
    background: #e85151;

}

/* ========== LOCATION DROPDOWN ========== */
.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 0.6rem 0;
    display: none;
    z-index: 200;
    max-height: 260px;
    overflow-y: auto;
}

.search-item1.active .dropdown-list {
    display: block;
}

.dropdown-list li {
    padding: 0.7rem 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.1s;
}

.dropdown-list li:hover {
    background: #fef2f2;
    color: #E31E24;
}

/* ========== DATE POPUP ========== */
.date-popup {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border-radius: 28px;
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.3);
    width: 595px;

    max-width: 85vw;
    z-index: 1000;
    display: none;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-item2.active .date-popup {
    display: block;
}

.date-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.date-popup-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
}

.close-date-popup {
    background: #f1f5f9;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.2s;
}

.close-date-popup:hover {
    background: #E31E24;
    color: white;
}

.calendar-months {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.month-card {
    flex: 1;
    min-width: 260px;
}

.month-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #E31E24;
    text-align: center;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    font-size: 0.7rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.day {
    text-align: center;
    padding: 8px 4px;
    border-radius: 40px;
    color: black;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.15s;
}

.day:hover {
    background: #fee2e2;
    color: #b91c1c;
}

.day.selected {
    background: #E31E24;
    color: white;
}

.day.in-range {
    background: #fecaca;
    color: #991b1b;
}

.day.disabled {
    color: #cbd5e1;
    cursor: not-allowed;
    background: transparent;
}

.date-popup-footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #edf2f7;
    padding-top: 1rem;
}

.selected-range-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #334155;
}

.apply-date-btn {
    background: #E31E24;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.2s;
}

.apply-date-btn:hover {
    background: #b91c1c;
}

/* ========== TIME DROPDOWN ========== */
.time-box {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 320px;
    background: white;
    border-radius: 28px;
    padding: 1.2rem;
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.2);
    z-index: 300;
}

.search-item3.active .time-box {
    display: block;
}

.time-toggle {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 1rem;
}

.time-toggle button {
    border: none;
    background: #f1f5f9;
    padding: 0.4rem 1.4rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.time-toggle button.active {
    background: #E31E24;
    color: white;
}

.time-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-height: 210px;
    overflow-y: auto;
}

.time-list div {
    padding: 0.6rem 0;
    text-align: center;
    background: #f8fafc;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.15s;
}

.time-list div:hover {
    background: #E31E24;
    color: white;
}

/* ========== GUEST DROPDOWN ========== */
.guest-box {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 200%;
    background: white;
    border-radius: 28px;
    padding: 1.2rem;
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.2);
    z-index: 300;
}

.search-item3.active .guest-box {
    display: block;
}

.guest-row {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.item {
    text-align: center;
    flex: 1;
}

.item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
}

.counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.counter button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    cursor: pointer;
    font-weight: bold;
    transition: 0.15s;
}

.counter button:hover {
    background: #E31E24;
    color: white;
}

/* ========== CITIES SECTION ========== */
/* .cities {
    margin: 4rem 0;
} */

.cities-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1rem;
    text-align: center;
    padding: 0 1rem;
}

.navbar-menu {
    flex-grow: inherit;
    flex-basis: auto;
    align-items: center;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .search-box {
        flex-direction: column;
        align-items: stretch;
    }

    .divider1,
    .divider2 {
        display: none;
    }

    .date-popup {
        width: 90vw;
        left: -10px;
        right: -10px;
    }

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

    .navbar-container {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar-menu {
        flex-direction: column;
    }

    .navbar-menu {
        flex-grow: inherit !important;
        flex-basis: auto;
        align-items: center;
    }

}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0 3rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .tabs button {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .search-box {
        padding: 1rem;
        margin: 0;
    }

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

    .tabs {
        margin-bottom: 10px;
        margin-left: 0px;
    }
}


/* Global  root styles calling */

:root {
    --red: #e8272b;
    --red-light: #fff0f0;
    --dark: #1a1a2e;
    --text: #2d2d2d;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg: #ffffff;
    --bg2: #f8f9fa;
    --radius: 12px;
    --shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.14);
}


/* ── SECTION WRAPPER ── */
.section {
    padding: clamp(36px, 6vw, 72px) clamp(16px, 5vw, 72px);
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 8px;
}

.section-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.section-header p {
    color: var(--muted);
    font-size: 0.82rem;
    margin-top: 4px;
}

.view-all {
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}

.view-all:hover {
    text-decoration: underline;
}

/* ── FILTER TABS ── */
.filters {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-btn {
    border: 1.5px solid var(--border);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    background: #fff;
    transition: all .2s;
    color: var(--text);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.location-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--red);
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red);
    background: #fff;
    cursor: pointer;
}

.location-btn svg {
    width: 14px;
    height: 14px;
}

/* ── HOTEL CARDS ── */
.cards-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    transition: box-shadow .25s, transform .25s;
    cursor: pointer;
}

.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.card-img {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: var(--bg);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

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

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--red);
    color: #fff;
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 0.7rem;
    font-weight: 700;
}

.card-body {
    padding: 14px;
}

.card-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    background: #fdecea;
    color: var(--red);
}

.tag.red {
    background: #fdecea;
    color: var(--red);
}

.tag.blue {
    background: #fdecea;
    color: var(--red);
}

.card-title {
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.card-location {
    font-size: 0.75rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.rating {
    display: flex;
    gap: 3px;
    align-items: center;
}

.star {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-val {
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 2px;
    color: #fbbf24;
    margin-top: 4px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    background-color: var(--bg);
    border-top: none;
}

.durations {
    display: flex;
    gap: 6px;
    margin-top: -9px;
    margin-left: -16px;
}

.durations2 {
    display: flex;
    gap: 6px;
    margin-left: -20px;
}

.dur {
    font-size: 0.7rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 3px 8px;
    color: var(--muted);
}

.durations2 .dur:hover {
    background-color: var(--red);
    color: #fff
}

.price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--red);
    margin-top: 9px;
    margin-left: -18px;
}

.price span {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--muted);
}

.book-btn {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    margin-top: 28px;
}

.book-btn2 {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    margin-top: 33px;
}

.book-btn2:hover {
    background: #c41f23;
}


.cards-grid2 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}


/* ── STAY TYPES ── */
.stay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stay-card {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    cursor: pointer;
}

.stay-card:hover {
    border-color: var(--red);
    box-shadow: 0 4px 20px rgba(232, 39, 43, .12);
}

.stay-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.stay-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--red);
    background: var(--red-light);
    border-radius: 4px;
    padding: 2px 8px;
    margin-bottom: 8px;
}

.stay-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.stay-card ul {
    list-style: none;
}

.stay-card ul li {
    font-size: 0.78rem;
    color: var(--muted);
    padding: 3px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.stay-card ul li::before {
    content: '*';
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── BENEFITS ── */
.benefits-section {
    background: var(--red-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit {
    text-align: center;
    padding: 20px 16px;
    background: #ffff;
    border-radius: 25px;
}

.benefit-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.benefit h4 {
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 6px;
}

.benefit p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ── MILESTONES ── */
.milestones {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: clamp(36px, 6vw, 64px) clamp(16px, 5vw, 72px);
}

.milestones h3 {
    margin-bottom: 25px;
    font-weight: 700;
}

.milestones h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 36px;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.milestone-item {
    background-color: #1a2a4d;
    border-radius: 20px;
    padding: 10px;
}

.milestone-item .num {
    font-size: 3rem;
    color: var(--red);
    font-weight: 900;
}

.milestone-item .label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, .6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ── TESTIMONIALS ── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testi-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.testi-card .stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 8px;
}

.testi-card p {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 14px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    font-size: 0.82rem;
}

.author-time {
    font-size: 0.7rem;
    color: var(--muted);
}

/* ── APP CTA ── */
.app-cta {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    color: #fff;
    padding: clamp(36px, 6vw, 72px) clamp(16px, 5vw, 72px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.app-cta h3 {
    font-weight: 700;

}

.app-cta-text {
    max-width: 480px;
}

.app-cta-text .downloads {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 8px;
}

.app-cta-text h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 8px;
}

.app-cta-text p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 24px;
}

.app-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    backdrop-filter: blur(4px);
}

.app-btn:hover {
    background: rgba(255, 255, 255, .2);
}

.app-qr {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 8px;
    text-align: center;
}

/* ── FAQ ── */
.faq-section {
    background: var(--bg2);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.faq-q {
    padding: 16px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 12px;
}

.faq-q::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--red);
    font-weight: 400;
    flex-shrink: 0;
}

.faq-item.open .faq-q::after {
    content: '−';
}

.faq-a {
    display: none;
    padding: 0 20px 16px;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
}

.faq-item.open .faq-a {
    display: block;
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .8);
    padding: clamp(36px, 5vw, 64px) clamp(16px, 5vw, 72px) 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 12px;
    color: var(--bg);
}

.footer-brand p {
    font-size: 0.78rem;
    line-height: 1.7;
    color: var(--bg2);
    margin-bottom: 16px;

}

.footer-contact {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.8;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
    margin-left: 15px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;


}

.footer-col ul li a {
    font-size: 0.78rem;
    color: var(--bg2);
    transition: color .2s;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, .35);
}

/* ── MOBILE NAV MENU ── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 60px 0 0 0;
    background: #fff;
    z-index: 99;
    padding: 24px;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid var(--border);
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-menu .nav-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.95rem;
}

/* HOTEL BOOKING — RESPONSIVE MEDIA QUERIES  */


/* ── LARGE DESKTOP (1400px+) ── */
@media (min-width: 1400px) {
    .navbar-container {
        margin-left: 140px;
        margin-right: 140px;
    }

    .hero-content h1 {
        font-size: 4.5rem;
    }

    .search-box {
        margin-left: 100px;
        margin-right: 100px;
    }

    .tabs {
        margin-left: 100px;
    }

    .hero-content p {
        margin-left: 100px;
    }
}


/* ── DESKTOP (1025px – 1199px) ── */
@media (max-width: 1199px) {
    .navbar-container {
        margin-left: 20px;
        margin-right: 20px;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 2fr 1fr;
        gap: 24px;
    }
}

.search-item1 p,
.search-item2 p,
.search-item3 p {
    font-weight: 700;
    font-size: 12px;
    margin: 0.25rem 0 0;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
}




/* ── TABLET LANDSCAPE (993px – 1024px) ── */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
        margin-left: 40px;
    }

    .hero-content p {
        margin-left: 40px;
    }

    .tabs {
        margin-left: 40px;
    }

    .search-box {
        margin-left: 40px;
        margin-right: 40px;
    }

    .cities-container {
        grid-template-columns: repeat(9, 1fr);
        gap: 1.2rem;
        margin: 0 40px;
    }

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

    .milestones-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

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

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


}

@media (min-width: 1024px) {
    .city p {
        margin-left: 0px;
    }
}

.search-item1 p,
.search-item2 p,
.search-item3 p {
    font-weight: 700;
    font-size: 12px;
    margin: 0.25rem 0 0;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



/* Footer — tablet to laptop fix */
@media (min-width: 768px) and (max-width: 1199px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
        gap: 20px !important;
    }

    footer {
        padding: 40px 32px 20px !important;
    }
}

/* Footer — tablet portrait (768px – 992px) */
@media (min-width: 768px) and (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 28px !important;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


/* ── TABLET PORTRAIT (768px – 992px) ── */
@media (max-width: 992px) {

    /* Navbar */


    .navbar-container {
        margin-left: 16px;
        margin-right: 16px;
        flex-direction: row;
        height: auto;
        padding: 12px 0;
    }

    .navbar-brand {
        margin-left: 0;
    }


    /* Hero */
    .hero-section {
        background: linear-gradient(180deg, rgba(220, 38, 38, 0.85) 0%, rgba(220, 38, 38, 0.5) 100%),
            url('../images/hotel.png');
        background-size: cover;
        background-position: center;
    }



    .hero-content {
        text-align: center;
        padding: 48px 24px 60px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        margin-left: 0;
    }

    .hero-content p {
        font-size: 1rem;
        margin-left: 0;
    }

    .tabs {
        margin-left: 0;
        justify-content: center;
    }

    .search-box {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-left: 0;
        margin-right: 0;
        border-radius: 20px;
        padding: 20px;
    }

    .search-item1,
    .search-item2,
    .search-item3 {
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 12px;
    }

    .search-item3:last-of-type {
        border-bottom: none;
    }

    .divider1,
    .divider2 {
        display: none;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        border-radius: 14px;
        font-size: 1rem;
    }

    /* Date popup */
    .date-popup {
        width: 95vw;
        left: 50%;
        transform: translateX(-50%);
    }

    .calendar-months {
        flex-direction: column;
        gap: 1rem;
    }

    /* Time / Guest dropdowns */
    .time-box,
    .guest-box {
        width: 100%;
        left: 0;
    }

    /* Cities */
    .cities {
        margin-top: 3rem;
    }

    .cities-container {
        grid-template-columns: repeat(5, 1fr);
        margin: 0 24px;
        gap: 1rem;
    }

    /* Cards */
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Stay grid */
    .stay-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Milestones */
    .milestones-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials */
    .testi-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* App CTA */
    .app-cta {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .app-btns {
        justify-content: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
        gap: 16px !important;
    }

    .footer-brand {
        grid-column: auto !important;
    }

    footer {
        padding: 36px 24px 20px !important;
    }
}


/* ── MOBILE LARGE (577px – 767px) ── */
@media (max-width: 767px) {

    /* Section spacing */
    .section {
        padding: 32px 16px;
    }

    /* Hero */
    .hero-content {
        padding: 36px 16px 48px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    /* Cities */
    .cities-container {
        grid-template-columns: repeat(3, 1fr);
        margin: 0 16px;
        gap: 0.75rem;
    }

    .city img {
        width: 60px;
        height: 60px;
    }

    /* Cards */
    .cards-grid,
    .cards-grid2 {
        grid-template-columns: 1fr;
    }

    /* Stay grid */
    .stay-grid {
        grid-template-columns: 1fr;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Milestones */
    .milestones {
        padding: 36px 16px;
    }

    .milestones-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Testimonials */
    .testi-grid {
        grid-template-columns: 1fr;
    }

    /* App CTA */
    .app-cta img {
        width: 80px;
        height: 80px;
    }

    /* FAQ */
    .faq-list {
        max-width: 100%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
    }
}

/* Cities — horizontal scroll on mobile device */
@media (max-width: 767px) {
    .cities-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        gap: 1.2rem;
        padding: 0 16px 12px;
        margin: 0;
        scrollbar-width: none;
        /* Firefox */
    }

    .cities-container::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .city {
        flex: 0 0 auto;
        width: 72px;
    }

    .city img {
        width: 64px;
        height: 64px;
        border-radius: 14px;
    }

    .city p {
        font-size: 11px;
        text-align: center;
        margin-top: 6px;
        margin-left: -7px;
    }
}

/* Mobile + Tablet same side toggle */

.navbar-toggler {
    border: none;
    box-shadow: none !important;
    padding: 6px 10px;
}

/* Mobile + Tablet */
@media (max-width: 991px) {

    .navbar-collapse {

        top: 100%;
        right: 0;
        width: 280px;

    }

    .navbar-nav .nav-item {
        margin-top: -20px;
    }


}




/* ── MOBILE SMALL (max 576px) ── */
@media (max-width: 576px) {

    /* Navbar */
    .navbar-container {
        margin-left: 8px;
        margin-right: 8px;
        padding: 10px 0;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    /* Hero */
    .hero-content {
        padding: 28px 12px 40px;
    }

    .hero-content h1 {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.82rem;
        margin-bottom: 1.2rem;
    }

    .tabs button {
        padding: 0.4rem 0.9rem;
        font-size: 0.72rem;
    }

    .search-box {
        padding: 14px;
        border-radius: 16px;
    }

    .search-item1 p,
    .search-item2 p,
    .search-item3 p {
        font-size: 13px;
    }

    .search-btn {
        font-size: 0.9rem;
        padding: 12px 16px;
    }

    /* Date popup */
    .date-popup {
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 16px;
        padding: 1rem;
    }

    .day {
        padding: 6px 2px;
        font-size: 0.78rem;
    }

    /* Cities */
    .cities {
        margin-top: 2rem;
    }

    .cities-container {
        grid-template-columns: repeat(3, 1fr);
        margin: 0 12px;
        gap: 12px;
    }

    .city img {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }

    .city p {
        font-size: 11px;
        margin-top: 6px;
        margin-left: 13px;
    }

    /* Section header */
    .section-header {
        flex-direction: column;
        gap: 4px;
    }

    .section-header h3 {
        font-size: 1.1rem;
    }

    .section-header p {
        font-size: 0.78rem;
    }

    /* Filters */
    .filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 5px 12px;
        font-size: 0.72rem;
    }

    /* Cards */
    .cards-grid,
    .cards-grid2 {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .card-img {
        height: 140px;
    }

    .card-body {
        padding: 12px;
    }



    /* Stay grid */
    .stay-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stay-card {
        padding: 18px 16px;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .benefit {
        padding: 16px;
        border-radius: 16px;
    }

    /* Milestones */
    .milestones-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .milestone-item .num {
        font-size: 2rem;
    }

    .milestone-item .label {
        font-size: 0.7rem;
    }

    /* Testimonials */
    .testi-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .testi-card {
        padding: 16px;
    }

    /* App CTA */
    .app-cta {
        padding: 32px 16px;
        gap: 20px;
    }

    .app-cta h3 {
        font-size: 1.4rem;
    }

    .app-cta-text p {
        font-size: 0.8rem;
    }

    .app-btns {
        flex-direction: column;
        align-items: center;
    }

    .app-btn {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }

    /* FAQ */
    .faq-section {
        padding: 32px 16px;
    }

    .faq-q {
        font-size: 0.82rem;
        padding: 14px 16px;
    }

    .faq-a {
        font-size: 0.78rem;
        padding: 0 16px 14px;
    }

    /* Footer */
    footer {
        padding: 32px 16px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 28px;
    }

    .footer-brand .logo {
        font-size: 1.1rem;
    }

    .footer-col h4 {
        font-size: 0.78rem;
    }

    .footer-col ul li a {
        font-size: 0.76rem;
    }
}


/* ── VERY SMALL MOBILE (max 380px) ── */
@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 1.45rem;
    }

    .tabs button {
        font-size: 0.66rem;
        padding: 0.35rem 0.7rem;
    }

    .cities-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .city img {
        width: 44px;
        height: 44px;
    }

    .city p {
        font-size: 10px;

    }

    .milestone-item .num {
        font-size: 1.7rem;
    }

    .search-box {
        padding: 10px;
    }
}


/* Tablet = Desktop View */

@media (min-width:768px) and (max-width:991.98px) {

    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-toggler {
        display: none !important;
    }

    .navbar-nav {
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }

    .navbar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* ===== StayZio common footer - updated responsive version ===== */
.stayzio-footer,
footer.stayzio-footer{
    background:#f7f3ef !important;
    color:#6f6258 !important;
    border-top:1px solid #e8dfd7;
    padding:64px 0 22px !important;
    margin-top:40px;
}
.stayzio-footer-inner{
    width:min(1180px, calc(100% - 48px));
    margin:0 auto;
    display:grid;
    grid-template-columns:1.45fr 1fr 1fr 1fr;
    gap:72px;
    align-items:start;
}
.stayzio-footer-logo{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#191514 !important;
    text-decoration:none !important;
    font-family:Georgia, 'Times New Roman', serif;
    font-size:20px;
    font-weight:800;
    margin-bottom:16px;
}
.stayzio-footer-logo img{
    width:56px;
    height:52px;
    object-fit:contain;
    border-radius:8px;
}
.stayzio-footer-logo span span{color:#ef2b2d;}
.stayzio-footer-brand p{
    max-width:260px;
    margin:0 0 22px;
    color:#6f6258;
    font-size:15px;
    line-height:1.75;
}
.stayzio-socials{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
.stayzio-socials a{
    width:34px;
    height:34px;
    border:1px solid #e2d9d2;
    background:#fffdfb;
    border-radius:4px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#1d1714 !important;
    text-decoration:none !important;
    font-size:11px;
    font-weight:800;
    text-transform:lowercase;
    transition:.2s ease;
}
.stayzio-socials a:hover{
    background:#ef2b2d;
    border-color:#ef2b2d;
    color:#fff !important;
    transform:translateY(-2px);
}
.stayzio-footer-col h5{
    color:#17120f;
    font-size:12px;
    line-height:1;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:4px;
    margin:5px 0 22px;
}
.stayzio-footer-col a{
    display:block;
    color:#6f6258 !important;
    text-decoration:none !important;
    font-size:15px;
    line-height:1.65;
    margin-bottom:8px;
    transition:.2s ease;
}
.stayzio-footer-col a:hover{
    color:#ef2b2d !important;
    padding-left:4px;
}
@media(max-width:900px){
    .stayzio-footer,
    footer.stayzio-footer{
        padding:40px 0 26px !important;
        margin-top:32px;
    }
    .stayzio-footer-inner{
        width:min(100% - 32px, 720px);
        grid-template-columns:1fr 1fr;
        gap:32px 28px;
    }
    .stayzio-footer-brand{
        grid-column:1/-1;
        padding-bottom:8px;
        border-bottom:1px solid #e8dfd7;
    }
    .stayzio-footer-brand p{max-width:100%;}
}
@media(max-width:560px){
    .stayzio-footer,
    footer.stayzio-footer{
        padding:34px 0 24px !important;
        margin-top:24px;
    }
    .stayzio-footer-inner{
        width:calc(100% - 28px);
        grid-template-columns:1fr;
        gap:22px;
    }
    .stayzio-footer-logo{
        font-size:19px;
        margin-bottom:12px;
    }
    .stayzio-footer-logo img{
        width:50px;
        height:46px;
    }
    .stayzio-footer-brand p{
        font-size:14px;
        line-height:1.65;
        margin-bottom:18px;
    }
    .stayzio-footer-col{
        padding:18px 0 0;
        border-top:1px solid #e8dfd7;
    }
    .stayzio-footer-col h5{
        font-size:11px;
        letter-spacing:3px;
        margin-bottom:14px;
    }
    .stayzio-footer-col a{
        font-size:14px;
        padding:4px 0;
        margin-bottom:4px;
    }
}

/* ===== StayZio production branding, hamburger menu and splash loader ===== */
.stayzio-main-brand,
.navbar-brand.stayzio-main-brand,
.brand.stayzio-main-brand{
    display:inline-flex !important;
    align-items:center !important;
    gap:10px !important;
    color:#17120f !important;
    text-decoration:none !important;
    font-family:Georgia, 'Times New Roman', serif !important;
    font-weight:900 !important;
    letter-spacing:-.03em !important;
    white-space:nowrap !important;
}
.stayzio-brand-logo{
    width:44px;
    height:44px;
    object-fit:contain;
    border-radius:8px;
    flex:0 0 auto;
}
.stayzio-brand-text{font-size:22px;line-height:1;color:#17120f;}
.stayzio-brand-text span{color:#ef2b2d;}
.navbar-brand.stayzio-main-brand{margin-left:0 !important;}
.navbar-container{margin-left:auto !important;margin-right:auto !important;}
.site-hamburger,
.main-site-hamburger{
    width:44px;
    height:44px;
    border:1.5px solid #eadfda;
    background:#fff;
    border-radius:14px;
    color:#ef2b2d;
    align-items:center;
    justify-content:center;
    font-size:1.08rem;
    flex-shrink:0;
    box-shadow:0 8px 24px rgba(17,24,39,.08);
}
.main-site-hamburger{display:none;}
.smm-brand{
    display:inline-flex !important;
    align-items:center;
    gap:9px;
    text-decoration:none !important;
    color:#17120f !important;
    padding:0 !important;
    border-radius:0 !important;
}
.smm-brand .stayzio-brand-logo{width:42px;height:42px;}
.smm-brand .stayzio-brand-text{font-size:20px;}
.site-mobile-menu .smm-head .smm-brand:hover{background:transparent !important;}
.site-mobile-menu a.smm-brand i{display:none;}
.stayzio-loader{
    position:fixed;
    inset:0;
    z-index:99999;
    background:#fffaf7;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:opacity .4s ease, visibility .4s ease;
}
.stayzio-loader.hide{opacity:0;visibility:hidden;pointer-events:none;}
.stayzio-loader-card{
    width:min(78vw,260px);
    border-radius:28px;
    background:#fff;
    border:1px solid #f0e7e1;
    box-shadow:0 24px 70px rgba(239,43,45,.16);
    padding:28px 24px 24px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
}
.stayzio-loader-card img{width:86px;height:86px;object-fit:contain;border-radius:18px;animation:stayzioPulse 1.2s ease-in-out infinite;}
.stayzio-loader-name{font-family:Georgia, 'Times New Roman', serif;font-size:28px;font-weight:900;color:#17120f;line-height:1;}
.stayzio-loader-name span{color:#ef2b2d;}
.stayzio-loader-line{width:120px;height:5px;background:#ffe5e5;border-radius:999px;overflow:hidden;margin-top:6px;}
.stayzio-loader-line span{display:block;width:44%;height:100%;background:#ef2b2d;border-radius:999px;animation:stayzioLoad 1s ease-in-out infinite;}
@keyframes stayzioPulse{0%,100%{transform:scale(1)}50%{transform:scale(1.06)}}
@keyframes stayzioLoad{0%{transform:translateX(-120%)}100%{transform:translateX(260%)}}

/* Footer logo uses uploaded production PNG */
.stayzio-footer-logo img{content:url('../images/stayzio-logo.png');}

@media(max-width:991px){
    .navbar-section .navbar{padding:0 !important;}
    .navbar-container.container{
        height:auto !important;
        min-height:72px !important;
        width:100% !important;
        max-width:100% !important;
        padding:12px 16px !important;
        display:flex !important;
        align-items:center !important;
        justify-content:space-between !important;
        gap:12px !important;
        margin:0 !important;
    }
    .main-site-hamburger{display:inline-flex !important;}
    .navbar-brand.stayzio-main-brand{flex:1;min-width:0;}
    .navbar-brand .stayzio-brand-logo,
    .brand .stayzio-brand-logo{width:38px;height:38px;}
    .navbar-brand .stayzio-brand-text,
    .brand .stayzio-brand-text{font-size:20px;}
    .navbar-menu.collapse,
    .navbar-collapse{display:none !important;}
    .navbar-menu.collapse.show{display:none !important;}
    .navbar-toggler{display:none !important;}
    .topbar-inner .stayzio-main-brand{flex:1;min-width:0;}
}
@media(max-width:480px){
    .navbar-container.container{padding:10px 12px !important;}
    .site-hamburger,.main-site-hamburger{width:40px;height:40px;border-radius:12px;}
    .navbar-brand .stayzio-brand-logo,
    .brand .stayzio-brand-logo{width:34px;height:34px;}
    .navbar-brand .stayzio-brand-text,
    .brand .stayzio-brand-text{font-size:18px;}
    .stayzio-loader-card{padding:24px 20px 22px;border-radius:24px;}
    .stayzio-loader-card img{width:76px;height:76px;}
    .stayzio-loader-name{font-size:26px;}
}

/* ===== List Your Hotel Page ===== */
.navbar-nav .nav-link[href="list-your-hotel.php"], .list-hotel-top-link{font-weight:800;color:#ef2b2d!important;}
.list-hotel-page{background:#fffaf7;color:#17120f;overflow:hidden;}
.lyh-container{width:min(1180px,calc(100% - 32px));margin:0 auto;}
.lyh-hero{position:relative;padding:72px 0 56px;background:linear-gradient(135deg,#fffaf7 0%,#fff 45%,#fff1ef 100%);border-bottom:1px solid #f2e7df;}
.lyh-bg-shape{position:absolute;border-radius:999px;filter:blur(0);opacity:.8;pointer-events:none;}
.lyh-shape-1{width:340px;height:340px;background:#ffe1df;right:-110px;top:30px;}
.lyh-shape-2{width:220px;height:220px;background:#fff0c9;left:-90px;bottom:-80px;}
.lyh-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:1.15fr .85fr;gap:44px;align-items:center;}
.lyh-eyebrow{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:20px;}
.lyh-eyebrow span{display:inline-flex;align-items:center;border:1px solid #f2d7d3;background:#fff;border-radius:999px;padding:8px 13px;font-size:12px;font-weight:900;color:#ef2b2d;letter-spacing:.04em;box-shadow:0 8px 22px rgba(239,43,45,.06);}
.lyh-hero-copy h1{font-family:Georgia,'Times New Roman',serif;font-size:clamp(38px,5.5vw,68px);line-height:1.02;font-weight:900;margin:0 0 18px;color:#17120f;letter-spacing:-.04em;}
.lyh-hero-copy p{font-size:18px;line-height:1.75;color:#6c5a50;max-width:650px;margin:0 0 28px;}
.lyh-benefits-row{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;}
.lyh-benefits-row div{background:#fff;border:1px solid #f1e3dc;border-radius:22px;padding:18px;box-shadow:0 16px 45px rgba(35,24,18,.06);}
.lyh-benefits-row i{width:38px;height:38px;border-radius:14px;background:#ef2b2d;color:#fff;display:inline-flex;align-items:center;justify-content:center;margin-bottom:12px;}
.lyh-benefits-row b{display:block;font-size:15px;margin-bottom:6px;}.lyh-benefits-row small{display:block;color:#7a6a62;line-height:1.55;}
.lyh-form-card{background:#fff;border:1px solid #f0ded6;border-radius:30px;padding:28px;box-shadow:0 28px 80px rgba(35,24,18,.12);}
.lyh-form-head{display:flex;gap:14px;align-items:flex-start;margin-bottom:22px;}.lyh-form-head>span{width:50px;height:50px;border-radius:17px;background:#ef2b2d;color:#fff;display:flex;align-items:center;justify-content:center;font-size:20px;flex:0 0 auto;}
.lyh-form-head h3{margin:0 0 6px;font-size:25px;font-weight:900;}.lyh-form-head p{margin:0;color:#786961;font-size:14px;line-height:1.5;}
.lyh-field{margin-bottom:14px;}.lyh-field label{display:block;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.07em;color:#9b8a81;margin-bottom:7px;}.lyh-field input{width:100%;height:52px;border:1px solid #eadbd4;border-radius:15px;padding:0 16px;font-weight:700;color:#17120f;background:#fff;outline:none;transition:.2s;}.lyh-field input:focus{border-color:#ef2b2d;box-shadow:0 0 0 4px rgba(239,43,45,.08);}
.lyh-check{display:flex;gap:10px;align-items:flex-start;color:#7a6a62;font-size:13px;line-height:1.4;margin:8px 0 18px;}.lyh-check input{margin-top:2px;accent-color:#ef2b2d;}
.lyh-submit{width:100%;height:54px;border:0;border-radius:16px;background:#ef2b2d;color:#fff;font-weight:900;font-size:16px;box-shadow:0 16px 35px rgba(239,43,45,.24);display:flex;align-items:center;justify-content:center;gap:10px;}
.lyh-stats{background:#17120f;color:#fff;padding:22px 0;}.lyh-stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}.lyh-stats-grid div{text-align:center;padding:12px;}.lyh-stats strong{display:block;font-size:32px;font-weight:900;color:#fff;}.lyh-stats span{font-size:13px;color:#d9cec8;font-weight:700;}
.lyh-section{padding:70px 0;}.lyh-title{text-align:center;max-width:760px;margin:0 auto 34px;}.lyh-title span{font-size:12px;text-transform:uppercase;letter-spacing:.14em;color:#ef2b2d;font-weight:900;}.lyh-title h2{font-size:clamp(30px,4vw,46px);line-height:1.12;font-weight:900;margin:10px 0 0;letter-spacing:-.03em;}.lyh-title p{color:#725f56;line-height:1.7;margin-top:12px;}.lyh-title-left{text-align:left;margin:0;}
.lyh-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}.lyh-steps div{background:#fff;border:1px solid #f0e2db;border-radius:26px;padding:26px;box-shadow:0 16px 45px rgba(35,24,18,.06);position:relative;}.lyh-steps em{display:flex;width:44px;height:44px;border-radius:50%;background:#ef2b2d;color:#fff;align-items:center;justify-content:center;font-style:normal;font-weight:900;margin-bottom:18px;}.lyh-steps h3{font-size:20px;font-weight:900;margin-bottom:8px;}.lyh-steps p{margin:0;color:#74645c;line-height:1.6;font-size:14px;}
.lyh-why{background:#fff;}.lyh-why-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:36px;align-items:start;}.lyh-feature-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;}.lyh-feature-grid div{background:#fffaf7;border:1px solid #f0e2db;border-radius:24px;padding:24px;}.lyh-feature-grid i{width:42px;height:42px;border-radius:15px;background:#fff;color:#ef2b2d;display:flex;align-items:center;justify-content:center;margin-bottom:14px;box-shadow:0 10px 28px rgba(239,43,45,.08);}.lyh-feature-grid h3{font-size:18px;font-weight:900;margin-bottom:8px;}.lyh-feature-grid p{margin:0;color:#74645c;line-height:1.6;font-size:14px;}
.lyh-faq-wrap{background:#fffaf7;}.lyh-faq{max-width:850px;margin:0 auto;display:grid;gap:12px;}.lyh-faq details{background:#fff;border:1px solid #f0e2db;border-radius:18px;padding:18px 20px;box-shadow:0 10px 30px rgba(35,24,18,.04);}.lyh-faq summary{cursor:pointer;font-weight:900;font-size:16px;}.lyh-faq p{color:#74645c;line-height:1.65;margin:12px 0 0;}
.lyh-cta{padding:0 0 70px;background:#fffaf7;}.lyh-cta-box{background:linear-gradient(135deg,#17120f,#3b211c);color:#fff;border-radius:30px;padding:36px;display:flex;align-items:center;justify-content:space-between;gap:24px;box-shadow:0 24px 70px rgba(35,24,18,.18);}.lyh-cta-box h2{font-size:34px;font-weight:900;margin:0 0 8px;}.lyh-cta-box p{margin:0;color:#d6c9c2;}.lyh-cta-box a{background:#ef2b2d;color:#fff;border-radius:999px;padding:15px 24px;font-weight:900;text-decoration:none;white-space:nowrap;display:inline-flex;align-items:center;gap:10px;}
@media(max-width:991px){.lyh-hero{padding:44px 0 36px;}.lyh-hero-grid,.lyh-why-grid{grid-template-columns:1fr;gap:28px;}.lyh-benefits-row,.lyh-steps,.lyh-stats-grid{grid-template-columns:repeat(2,1fr);}.lyh-form-card{max-width:620px;margin:0 auto;}.lyh-title-left{text-align:center;margin:0 auto 8px;}.lyh-cta-box{flex-direction:column;text-align:center;}.list-hotel-top-link{display:none!important;}}
@media(max-width:600px){.lyh-container{width:min(100% - 24px,1180px);}.lyh-hero-copy h1{font-size:38px;}.lyh-hero-copy p{font-size:15px;}.lyh-eyebrow{gap:8px;}.lyh-eyebrow span{font-size:10px;padding:7px 10px;}.lyh-benefits-row,.lyh-steps,.lyh-feature-grid,.lyh-stats-grid{grid-template-columns:1fr;}.lyh-form-card{border-radius:24px;padding:20px;}.lyh-section{padding:46px 0;}.lyh-stats strong{font-size:28px;}.lyh-cta{padding-bottom:46px;}.lyh-cta-box{padding:26px 18px;border-radius:24px;}.lyh-cta-box h2{font-size:28px;}.lyh-submit{height:52px;}}

/* ===== StayZio Production Hero Slider - Red Brand Overlay ===== */
.stayzio-hero-slider{
    min-height:520px!important;
    padding:76px 0 108px!important;
    background:none!important;
    overflow:visible!important;
    isolation:isolate;
}
.stayzio-hero-slider .container{position:relative;z-index:3;max-width:1180px;}
.hero-slide{
    position:absolute;inset:0;
    background-size:cover;background-position:center;
    opacity:0;transform:scale(1.04);
    transition:opacity .8s ease,transform 5s ease;
    z-index:0;
}
.hero-slide.active{opacity:1;transform:scale(1);}
.stayzio-red-overlay{
    position:absolute;inset:0;z-index:1;
    background:linear-gradient(90deg,rgba(227,30,36,.95) 0%,rgba(227,30,36,.82) 36%,rgba(227,30,36,.38) 68%,rgba(227,30,36,.08) 100%);
}
.stayzio-hero-slider:after{
    content:"";position:absolute;left:0;right:0;bottom:-1px;height:110px;background:#fff;z-index:1;
}
.stayzio-hero-slider .hero-content{max-width:1180px;margin:0 auto;position:relative;z-index:4;}
.hero-kicker{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.28);color:#fff;border-radius:999px;padding:8px 14px;font-weight:800;font-size:13px;letter-spacing:.02em;margin-bottom:14px;backdrop-filter:blur(8px);}
.stayzio-hero-slider .hero-content h1{font-size:68px!important;line-height:.98;font-weight:900;color:#fff;margin:0 0 12px;letter-spacing:-.04em;text-shadow:0 8px 24px rgba(0,0,0,.18);}
.stayzio-hero-slider .hero-content p{font-size:18px!important;color:#fff;font-weight:800;margin:0 0 24px;max-width:560px;}
.stayzio-hero-tabs{background:rgba(255,255,255,.95)!important;box-shadow:0 10px 30px rgba(0,0,0,.14);margin-top:0!important;}
.stayzio-hero-tabs button{color:#222!important;}
.stayzio-hero-tabs button.active{color:#fff!important;}
.stayzio-hero-tabs .tab-slider{background:#111!important;}
.hero-dots{display:flex;gap:8px;margin-top:18px;}
.hero-dots button{width:10px;height:10px;border-radius:999px;border:0;background:rgba(255,255,255,.55);transition:.25s;cursor:pointer;}
.hero-dots button.active{width:30px;background:#fff;}
.stayzio-hero-slider .search-box{
    position:relative;z-index:5;margin:20px 0 -126px!important;background:#fff!important;border-radius:22px!important;padding:22px 24px!important;box-shadow:0 24px 55px rgba(17,24,39,.18)!important;border:1px solid rgba(255,255,255,.7);gap:0!important;overflow:visible;
}
.stayzio-hero-slider .search-item1,.stayzio-hero-slider .search-item2,.stayzio-hero-slider .search-item3{padding:0 24px;min-width:210px;}
.stayzio-hero-slider .search-item1{padding-left:10px;}
.stayzio-hero-slider .search-item1 span,.stayzio-hero-slider .search-item2 span,.stayzio-hero-slider .search-item3 span{font-size:12px!important;text-transform:uppercase;letter-spacing:.08em;color:#6b7280!important;font-weight:800;}
.stayzio-hero-slider .search-item1 p,.stayzio-hero-slider .search-item2 p,.stayzio-hero-slider .search-item3 p{font-size:16px!important;margin-top:10px!important;color:#111827!important;}
.stayzio-hero-slider .divider1,.stayzio-hero-slider .divider2{width:1px!important;height:64px!important;background:#e5e7eb!important;margin:0!important;}
.stayzio-hero-slider .search-btn{background:#e31e24!important;color:#fff!important;border:0;border-radius:16px!important;padding:18px 48px!important;font-weight:900;font-size:18px;box-shadow:0 12px 28px rgba(227,30,36,.25);}
.cities{margin-top:8.5rem!important;}
@media(max-width:991px){
  .stayzio-hero-slider{min-height:620px!important;padding:48px 0 120px!important;}
  .stayzio-red-overlay{background:linear-gradient(180deg,rgba(227,30,36,.88) 0%,rgba(227,30,36,.62) 48%,rgba(227,30,36,.25) 100%);}
  .stayzio-hero-slider .hero-content{text-align:center;padding:0 14px;}
  .stayzio-hero-slider .hero-content h1{font-size:46px!important;}
  .stayzio-hero-slider .hero-content p{font-size:15px!important;margin-left:auto;margin-right:auto;}
  .stayzio-hero-tabs{margin-left:auto;margin-right:auto;}
  .hero-dots{justify-content:center;}
  .stayzio-hero-slider .search-box{margin:24px 12px -144px!important;display:grid!important;grid-template-columns:1fr!important;padding:16px!important;gap:12px!important;border-radius:20px!important;}
  .stayzio-hero-slider .search-item1,.stayzio-hero-slider .search-item2,.stayzio-hero-slider .search-item3{width:100%;min-width:0;padding:14px 14px!important;border:1px solid #eef0f4;border-radius:15px;background:#fafafa;}
  .stayzio-hero-slider .divider1,.stayzio-hero-slider .divider2{display:none!important;}
  .stayzio-hero-slider .search-btn{width:100%;padding:16px 20px!important;border-radius:15px!important;}
  .cities{margin-top:10rem!important;}
}
@media(max-width:480px){
  .stayzio-hero-slider{min-height:670px!important;padding-top:34px!important;}
  .hero-kicker{font-size:11px;padding:7px 12px;}
  .stayzio-hero-slider .hero-content h1{font-size:38px!important;}
  .stayzio-hero-tabs button{padding:9px 14px!important;font-size:12px;}
}

/* ===== FINAL FIX: Brevistay-style compact hero + floating search strip ===== */
.stayzio-hero-slider{
  position:relative!important;
  min-height:390px!important;
  height:390px!important;
  padding:58px 0 0!important;
  overflow:visible!important;
  margin-bottom:92px!important;
}
.stayzio-hero-slider:after{display:none!important;content:none!important;}
.stayzio-hero-slider .container,
.stayzio-hero-slider .hero-content{position:static!important;}
.stayzio-hero-slider .hero-content{max-width:1180px!important;margin:0 auto!important;padding:0 20px!important;}
.stayzio-hero-slider .hero-content h1{font-size:62px!important;margin-bottom:10px!important;}
.stayzio-hero-slider .hero-content p{font-size:17px!important;margin-bottom:22px!important;}
.hero-kicker{display:none!important;}
.stayzio-hero-tabs{margin-top:0!important;}
.hero-dots{margin-top:16px!important;}
.stayzio-hero-slider .search-box{
  position:absolute!important;
  left:50%!important;
  bottom:-50px!important;
  transform:translateX(-50%)!important;
  width:min(78%,1120px)!important;
  margin:0!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  background:#fff!important;
  border-radius:18px!important;
  padding:20px 22px!important;
  box-shadow:0 18px 42px rgba(17,24,39,.16)!important;
  border:1px solid rgba(255,255,255,.8)!important;
  z-index:10!important;
}
.stayzio-hero-slider .search-item1,
.stayzio-hero-slider .search-item2,
.stayzio-hero-slider .search-item3{flex:1!important;min-width:0!important;padding:0 26px!important;}
.stayzio-hero-slider .search-item1{padding-left:10px!important;}
.stayzio-hero-slider .search-btn{min-width:172px!important;height:64px!important;padding:0 34px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;}
.cities{margin-top:0!important;padding-top:22px!important;}

@media(max-width:991px){
  .stayzio-hero-slider{
    min-height:560px!important;
    height:560px!important;
    padding:38px 0 0!important;
    margin-bottom:250px!important;
  }
  .stayzio-hero-slider .hero-content{text-align:center!important;padding:0 16px!important;}
  .stayzio-hero-slider .hero-content h1{font-size:44px!important;}
  .stayzio-hero-slider .hero-content p{font-size:15px!important;}
  .stayzio-hero-slider .search-box{
    width:calc(100% - 28px)!important;
    bottom:-220px!important;
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:12px!important;
    padding:16px!important;
    border-radius:22px!important;
  }
  .stayzio-hero-slider .search-item1,
  .stayzio-hero-slider .search-item2,
  .stayzio-hero-slider .search-item3{padding:14px!important;border:1px solid #eef0f4!important;border-radius:15px!important;background:#fafafa!important;}
  .stayzio-hero-slider .divider1,.stayzio-hero-slider .divider2{display:none!important;}
  .stayzio-hero-slider .search-btn{width:100%!important;min-width:0!important;height:56px!important;}
  .cities{padding-top:10px!important;}
}
@media(max-width:480px){
  .stayzio-hero-slider{height:520px!important;min-height:520px!important;margin-bottom:265px!important;}
  .stayzio-hero-slider .hero-content h1{font-size:36px!important;}
  .stayzio-hero-tabs{transform:scale(.92);transform-origin:center;}
  .stayzio-hero-slider .search-box{bottom:-236px!important;}
}
