/* Modern Search Section */

.search-section-modern {
    background: linear-gradient(135deg, rgba(15, 143, 172, 0.05) 0%, rgba(198, 144, 87, 0.05) 100%);
    padding: 60px 0;
    border-bottom: 2px solid rgba(15, 143, 172, 0.1);
}

.search-container {
    max-width: 700px;
    margin: 0 auto;
}

/* Search Header */
.search-header {
    text-align: center;
    margin-bottom: 40px;
}

.search-header h2 {
    font-family: 'Jost', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.search-header p {
    font-size: 16px;
    color: #666;
}

/* Modern Search Form */
.modern-search-form {
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 143, 172, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.search-input-wrapper:focus-within {
    box-shadow: 0 15px 40px rgba(15, 143, 172, 0.25);
    border-color: var(--theme-color);
}

.search-icon {
    position: absolute;
    left: 18px;
    color: var(--theme-color);
    pointer-events: none;
    z-index: 1;
}

.search-input {
    flex: 1;
    border: none;
    padding: 16px 18px 16px 50px;
    font-size: 16px;
    outline: none;
    color: #333;
    background: transparent;
    font-family: 'Jost', sans-serif;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #e53052, rgb(117 41 54));
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif;
}

.search-btn:hover {
    background: linear-gradient(135deg, #e53052, rgb(117 41 54));
    transform: translateX(2px);
}

.search-btn svg {
    transition: transform 0.3s ease;
}

.search-btn:hover svg {
    transform: translateX(4px);
}

/* Popular Searches */
.popular-searches {
    text-align: center;
}

.popular-searches p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.search-tag {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    border: 2px solid #eee;
    border-radius: 24px;
    color: var(--theme-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-tag:hover {
    background: linear-gradient(135deg, #e53052, rgb(117 41 54));
    border-color: var(--theme-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 143, 172, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-section-modern {
        padding: 40px 0;
    }

    .search-header h2 {
        font-size: 24px;
    }

    .search-header p {
        font-size: 14px;
    }

    .search-icon {
        left: 14px;
    }

    .search-input {
        padding: 14px 14px 14px 45px;
        font-size: 15px;
    }

    .search-btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .search-tags {
        gap: 10px;
    }

    .search-tag {
        padding: 7px 14px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .search-section-modern {
        padding: 30px 15px;
    }

    .search-container {
        max-width: 100%;
    }

    .search-header h2 {
        font-size: 20px;
    }

    .search-header p {
        font-size: 13px;
    }

    .search-input-wrapper {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 20px;
    }

    .search-icon {
        left: 14px;
        top: 14px;
    }

    .search-input {
        padding: 14px 14px 14px 45px;
        font-size: 15px;
        width: 100%;
    }

    .search-btn {
        padding: 12px 20px;
        font-size: 13px;
        justify-content: center;
        border-radius: 0 0 8px 8px;
    }

    .search-tags {
        gap: 8px;
    }

    .search-tag {
        padding: 6px 12px;
        font-size: 11px;
    }

    .popular-searches p {
        font-size: 12px;
    }
}
