/* ========================================
   HERO
======================================== */
.searchtour {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 650px;
    padding: 100px 20px;

    text-align: center;
    overflow: hidden;

    background: url("https://www.traluxutravel.com/images/arenal01.jpg")
        center center / cover no-repeat;
}

.searchtour::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.55) 100%
    );
}

/* ========================================
   CONTENT
======================================== */
.searchtour-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.searchtour-title {
    margin-bottom: 16px;

    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;

    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.searchtour-subtitle {
    margin-bottom: 45px;

    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* ========================================
   SEARCH FORM
======================================== */
.search-form {
    display: flex;
    justify-content: center;
}

.search-input-group {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    max-width: 760px;

    background: #fff;
    border-radius: 70px;

    overflow: visible;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.18),
        0 3px 10px rgba(0, 0, 0, 0.08);
}

/* ========================================
   INPUT
======================================== */
.search-input {
    flex: 1;
    height: 68px;

    border: none;
    outline: none;

    padding: 0 28px;

    font-size: 1rem;
    color: #333;

    background: transparent;
}

.search-input::placeholder {
    color: #888;
}

/* ========================================
   BUTTON
======================================== */
.search-btn {
    border: none;

    height: 56px;
    min-width: 150px;

    margin-right: 6px;
    padding: 0 30px;

    border-radius: 50px;

    background: rgb(179, 134, 69);
    color: #fff;

    font-weight: 600;
    font-size: 0.95rem;

    cursor: pointer;

    transition: all 0.25s ease;
}

.search-btn:hover {
    background: rgb(155, 114, 55);
    transform: translateY(-1px);
}

/* ========================================
   RESULTS
======================================== */
.search-results {
    position: absolute;

    top: calc(100% + 10px);
    left: 0;
    right: 0;

    background: #fff;

    border-radius: 20px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15);

    overflow: hidden;

    z-index: 100;

    max-height: 350px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 22px;

    color: #333;
    text-decoration: none;

    transition: all 0.2s ease;

    border-bottom: 1px solid #f2f2f2;
}

.search-result-item:hover {
    background: rgba(179, 134, 69, 0.08);
    color: rgb(179, 134, 69);
}

.search-result-item i {
    color: rgb(179, 134, 69);
}

.search-no-results {
    padding: 18px;
    text-align: center;
    color: #888;
}

/* ========================================
   MOBILE
======================================== */
@media (max-width: 768px) {

    .searchtour {
        min-height: 500px;
        padding: 70px 20px;
    }

    .searchtour-title {
        font-size: 2.8rem;
    }

    .searchtour-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .search-input-group {
        flex-direction: column;
        background: white;
        border-radius: 24px;
        padding: 15px;
    }

    .search-input {
        width: 100%;
        height: auto;
        padding: 14px;
        text-align: center;
    }

    .search-btn {
        width: 100%;
        margin: 12px 0 0;
    }

    .search-results {
        left: 15px;
        right: 15px;
    }
}