/* Search Form Styling */
.site-search {
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    margin: 20px 0;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.search-input-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: #ffb600;
    box-shadow: 0 6px 20px rgba(255, 182, 0, 0.15);
}

.search-input-field {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    outline: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background: white;
}

.search-input-field::placeholder {
    color: #999;
    font-weight: 400;
}

.search-input-field:focus {
    background-color: #fafafa;
}

.search-submit-btn {
    background-color: #ffb600;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    color: #036830;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit-btn:hover {
    background-color: #ffc107;
    transform: scale(1.05);
}

.search-submit-btn:active {
    transform: scale(0.98);
}

.search-submit-btn i {
    font-size: 20px;
}

.aon-banner-large2-title {
    font-size: 24px;
    font-weight: 700;
    color: #036830;
    text-align: center;
    margin: 20px 0;
    letter-spacing: -0.5px;
}

/* No Results Message */
.no-results {
    margin: 30px auto !important;
    max-width: 600px;
    text-align: center;
    border-left: 4px solid #ffb600 !important;
    padding: 20px !important;
    background-color: #fffbf0 !important;
    border-radius: 4px;
}

.no-results p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

.no-results strong {
    color: #036830;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-search {
        padding: 20px 15px;
    }
    
    .search-form {
        max-width: 100%;
    }
    
    .search-input-wrapper {
        border-radius: 6px;
    }
    
    .search-input-field {
        padding: 14px 15px;
        font-size: 15px;
    }
    
    .search-submit-btn {
        padding: 0 18px;
        font-size: 16px;
    }
    
    .aon-banner-large2-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .site-search {
        padding: 15px 10px;
    }
    
    .search-input-wrapper {
        border-radius: 5px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }
    
    .search-input-field {
        padding: 12px 12px;
        font-size: 14px;
    }
    
    .search-submit-btn {
        padding: 0 15px;
        font-size: 16px;
    }
    
    .search-submit-btn i {
        font-size: 18px;
    }
    
    .aon-banner-large2-title {
        font-size: 16px;
        margin: 15px 0;
    }
}

/* Suggestions dropdown */
.search-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-suggestions li {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.search-suggestions li:hover {
    background: #f9f9f9;
}

.search-suggestions a {
    color: #333;
    text-decoration: none;
    display: block;
}

.search-suggestions a:hover {
    color: #036830;
}
