/* Homepage Slider + Icon Menu */
.home-hero {
    position: relative;
}

.hero-slide {
    min-height: 430px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.25));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-search-wrapper {
    position: relative;
    z-index: 5;
    margin-top: -45px;
    padding: 0 20px;
}

.hero-search-box {
    background: #fff;
    border-radius: 20px;
    padding: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.icon-menu-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 18px 12px;
    height: 100%;
    transition: all .2s ease;
    color: #212529;
}

.icon-menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
    border-color: #f2c94c;
    color: #212529;
}

.icon-menu-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #fff7db;
    color: #b88700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 10px;
}

.icon-menu-card span {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .hero-slide {
        min-height: 360px;
        padding: 30px;
    }

    .hero-search-wrapper {
        margin-top: -30px;
    }

    .hero-search-box {
        padding: 14px;
    }
}
