/* ===================================================
   HERO SEARCH SECTION
=================================================== */
.hero-search-main {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Overlay */
.hero-search-main .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0)
    );
    z-index: 1;
}

/* Content Wrapper */
.hero-search-main .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
}

/* ===================================================
   SEARCH BAR
=================================================== */
.hero-search-main .hero-search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 12px;
    border-radius: 40px;
    background: linear-gradient(90deg, #b3133b, #d4476c);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

/* Icon */
.hero-search-main .search-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

/* Input */
.hero-search-main .hero-search-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
}

.hero-search-main .hero-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.85);
}

/* Button */
.hero-search-main .hero-search-box button {
    background: rgba(0, 0, 0, 0.55);
    border: none;
    border-radius: 30px;
    padding: 5px 26px;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.hero-search-main .hero-search-box button:hover {
    background: rgba(0, 0, 0, 0.75);
}

/* ===================================================
   RESPONSIVE
=================================================== */

/* Tablets */
@media (max-width: 991px) {
    .hero-search-main {
        min-height: 320px;
        padding: 24px;
    }

    .hero-search-main .hero-search-box {
        padding: 8px 10px;
    }

    .hero-search-main .hero-search-box button {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-search-main {
        min-height: 260px;
        padding: 16px;
    }

    .hero-search-main .hero-content {
        max-width: 100%;
    }

    .hero-search-main .hero-search-box {
        border-radius: 16px;
        padding: 6px;
        gap: 8px;
    }

    .hero-search-main .search-icon {
        width: 36px;
        height: 36px;
    }

    .hero-search-main .hero-search-box input {
        font-size: 14px;
    }

    .hero-search-main .hero-search-box button {
        padding: 8px 14px;
        font-size: 13px;
        border-radius: 12px;
    }
}

/* Small Phones */
@media (max-width: 400px) {
    .hero-search-main .hero-search-box button {
        display: none;
    }
}
