body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f6f8fc;
    color: #333;
}

/* ===== TOP BAR ===== */
.top-mini {
    background: #1e88ff;
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
}

/* ===== HEADER ===== */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

/* ===== BRAND ===== */
.brand {
    font-size: 20px;
    font-weight: 700;
    color: #1e88ff;
}

.brand span {
    color: #ff7b2b;
}

.tagline {
    font-size: 11px;
    color: #777;
}

/* ===== SEARCH ===== */
.search-box {
    background: #f1f3f6;
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
}

/* ===== SUGGESTIONS ===== */
.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    margin-top: 6px;
    overflow: hidden;
    display: none;
    z-index: 999;
}

.suggestions div {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
}

.suggestions div:hover {
    background: #f1f3f6;
}

/* service title */
.service-title {
    text-align: center;
    margin: 50px 0 15px;
    font-size: 22px;
    font-weight: 600;
}


/* FEATURES */
.features {
    background: #ffffff;
    padding: 55px 20px;
}

.features-wrap {
    max-width: 1050px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.feature-box {
    background: #f7f9ff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .05);
}

.feature-box i {
    font-size: 26px;
    color: #ff8a00;
    margin-bottom: 10px;
}


/* ===== ICON ===== */
.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f1f3f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== MENU ===== */
.menu a {
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== CTA ===== */
.cta-btn {
    background: linear-gradient(90deg, #1e88ff, #ff7b2b);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    padding: 10px 22px;
}

/* ===== MOBILE ===== */
@media(max-width:991px) {
    .navbar-collapse {
        background: #fff;
        margin-top: 10px;
        border-radius: 20px;
        padding: 15px;
    }

    .menu {
        display: block;
    }

    .menu a {
        padding: 10px 0;
    }

    .cta-btn {
        width: 100%;
        margin-top: 12px;
    }
}

/* ===== DESKTOP FIX (KEY PART) ===== */
@media(min-width:992px) {

    .navbar {
        padding: 8px 0;
    }

    .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        gap: 25px;
    }

    .menu {
        display: flex;
        gap: 25px;
    }

    .menu a {
        padding: 0;
        font-size: 14px;
    }

    .search-box {
        width: 260px;
        padding: 6px 12px;
    }

    .cta-btn {
        width: auto;
        padding: 8px 18px;
        font-size: 14px;
    }

    /* ===== SERVICES DROPDOWN (DESKTOP) ===== */

    .services-menu {
        width: 420px;
        border-radius: 18px;
        animation: fadeUp .25s ease;
    }

    .service-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        font-size: 14px;
        color: #333;
        border-radius: 12px;
        text-decoration: none;
        transition: .2s;
    }

    .service-link i {
        font-size: 18px;
        color: #1e88ff;
    }

    .service-link:hover {   
        background: #f1f3f6;
        transform: translateX(3px);
    }
}

/* subtle animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* HERO */
.hero {
    background: linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(0, 0, 0, .75)),
        url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    padding: 110px 20px 140px;
    text-align: center;
    color: #fff;
}

.hero-logo {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-logo span {
    color: #ff7a00;
}

.hero h2 {
    font-size: 30px;
    font-weight: 600;
    margin: 10px 0 25px;
}

/* SEARCH BAR */
.hero-search-box {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 50px;
    padding: 15px;
    display: flex;
    gap: 10px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, .25);
    position: relative;
}

/* #heroSuggestions{
        position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    z-index: 9999;
} */
.hero-search-box select,
.hero-search-box input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 40px;
    border: 1px solid #ddd;
    outline: none;
}

.hero-search-box button {
    padding: 12px 25px;
    border-radius: 40px;
    border: none;
    background: linear-gradient(45deg, #2a6cff, #ff8a00);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 18px;
    background: #0f172a;
    color: #ddd;
}


/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

/* Tablets */
@media(max-width:1024px) {
    .hero {
        padding: 90px 15px 110px;
    }

    .hero h2 {
        font-size: 26px;
    }
}

/* Medium tablets & small laptops */
@media(max-width:820px) {
    .hero-search-box {
        flex-wrap: wrap;
        border-radius: 30px;
    }

    .hero-search-box select,
    .hero-search-box input {
        flex: 100%;
        border-radius: 30px;
    }

    .hero-search-box button {
        width: 100%;
        border-radius: 30px;
    }
}

/* Mobile Phones */
@media(max-width:600px) {
    .hero-logo {
        font-size: 26px;
    }

    .hero h2 {
        font-size: 20px;
    }

    .hero {
        padding: 70px 15px 90px;
    }
}

/* Small Mobile */
@media(max-width:400px) {
    .hero h2 {
        font-size: 18px;
    }

}


/* ===== SERVICES ===== */
.services {
    padding: 40px 0;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 32px;
    color: #1e88ff;
}

/* GRID card*/
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    padding: 25px 20px 45px;
    max-width: 1100px;
    margin: auto;
}

.card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, .08);
    overflow: hidden;
    position: relative;
    transition: .3s;
}

.card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

/* BADGES */
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.badge.featured {
    left: auto;
    right: 12px;
    background: #f59e0b;
}

/* BODY */
.card-body {
    padding: 15px;
}

.category {
    font-size: 12px;
    color: #2563eb;
    font-weight: 600;
}

.card-body h3 {
    margin: 5px 0 6px;
    font-size: 18px;
}

.rating {
    color: #ffa800;
    font-size: 14px;
}

.location {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    background: #eef3ff;
    padding: 5px 10px;
    border-radius: 20px;
}

/* PRICE GRID */
.price-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.price {
    background: #f8fafc;
    border-radius: 12px;
    padding: 8px;
    text-align: center;
    font-size: 13px;
}

.price span {
    display: block;
    font-weight: 600;
    color: #111;
}

/* FOOTER */
.card-footer {
    padding: 12px 15px;
    background: #fafafa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-footer a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
}

.card-footer a.btn {
    background: #2563eb;
    color: #fff;
    padding: 7px 14px;
    border-radius: 20px;
}

.main-footer {
    text-align: left;
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 0;
    margin-top: 60px;
}

.footer-brand h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.footer-brand h4 span {
    color: #ff7b2b;
}

.footer-brand p {
    font-size: 14px;
    margin: 12px 0 18px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: linear-gradient(45deg, #1e88ff, #ff7b2b);
}

.footer-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 13.5px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff7b2b;
    padding-left: 5px;
}

/* POPULAR SEARCHES */
.popular-searches li a::before {
    content: "›";
    margin-right: 6px;
    color: #ff7b2b;
}

/* CONTACT */
.footer-contact {
    list-style: none;
    padding: 0;
    margin-top: 12px;
    font-size: 13.5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-contact i {
    color: #ff7b2b;
}

/* BOTTOM BAR */
.footer-bottom {
    background: #020617;
    margin-top: 40px;
    padding: 14px 0;
    font-size: 13px;
    color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
    }
}