.navbar-section {
    background-color: #FBFBFB;
    box-shadow: none;
}

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;
}

.city img:hover {
    box-shadow: #000 0px 5px 15px !important;
    transition: all 0.3s ease;

}

.city p {
    margin-top: 10px;
    font-size: 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;
    }


}

@media (max-width: 576px) {
    .cities-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.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;
    }
}

.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(9, 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;
    }
}

/* 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 {
        gap: 12px;
    }


}




/* ── 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;
    }

    /* 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;
    }
}