.search-hero {
    background: radial-gradient(ellipse at top, rgba(201,162,39,0.12), transparent 60%),
                radial-gradient(ellipse at bottom right, rgba(27,154,160,0.12), transparent 60%),
                var(--navy);
    padding: 50px 0 40px;
    text-align: center;
}
.search-hero h1 {
    font-size: clamp(28px, 4vw, 38px);
    background: linear-gradient(90deg, var(--gold-light), var(--teal-light));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    margin-bottom: 8px;
}
.search-hero .subtitle { color: var(--text-muted); margin-bottom: 32px; font-size: 16px; }

.search-form-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 20px;
    padding: 24px; max-width: 1000px; margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.search-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
}
@media (max-width: 900px) {
    .search-form-grid { grid-template-columns: 1fr 1fr; }
}
.sf-field { text-align: left; position: relative; }
.sf-field label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.sf-field input {
    width: 100%; background: var(--navy); border: 1px solid var(--border); color: var(--text);
    padding: 12px 14px; border-radius: 10px; font-size: 14px;
}
.sf-field input:focus { outline: none; border-color: var(--teal); }
.sf-submit { display: flex; }
#sf-search-btn {
    width: 100%; background: var(--gold); color: var(--navy); border: none;
    padding: 13px 24px; border-radius: 10px; font-weight: 700; font-size: 15px; cursor: pointer;
    white-space: nowrap;
}
#sf-search-btn:hover { background: var(--gold-light); }

.sf-suggestions {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-light);
    border: 1px solid var(--border); border-radius: 10px; margin-top: 4px;
    max-height: 240px; overflow-y: auto; z-index: 20; display: none; text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.sf-suggestions.show { display: block; }
.sf-suggestion-item { padding: 10px 14px; font-size: 14px; cursor: pointer; border-bottom: 1px solid var(--border); }
.sf-suggestion-item:last-child { border-bottom: none; }
.sf-suggestion-item:hover { background: rgba(255,255,255,0.04); }

.sf-loading, .sf-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.sf-results-title { text-align: center; margin: 40px 0 24px; font-size: 22px; color: var(--text); }
.sf-results-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px;
    padding-bottom: 60px;
}
.sf-price-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 16px;
    padding: 20px; text-align: center; transition: transform 0.2s, border-color 0.2s;
}
.sf-price-card:hover { transform: translateY(-4px); border-color: var(--teal); }
.sf-price-airline { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.sf-price-value { font-size: 26px; font-weight: 800; color: var(--gold-light); margin-bottom: 6px; }
.sf-price-date { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.sf-book-btn {
    background: var(--teal); color: white; border: none; padding: 10px 20px;
    border-radius: 8px; font-weight: 700; font-size: 14px; cursor: pointer; width: 100%;
}
.sf-book-btn:hover { background: var(--teal-light); }

/* Booking modal */
.booking-modal-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7);
    z-index: 200; align-items: center; justify-content: center; padding: 20px;
}
.booking-modal-overlay.show { display: flex; }
.booking-modal {
    background: var(--navy-light); border: 1px solid var(--border); border-radius: 16px;
    max-width: 900px; width: 100%; max-height: 85vh; overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.booking-modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 24px; border-bottom: 1px solid var(--border); font-weight: 700; font-size: 16px;
    color: var(--gold-light); position: sticky; top: 0; background: var(--navy-light);
}
.booking-modal-header button {
    background: none; border: none; color: var(--text-muted); font-size: 18px; cursor: pointer;
}
.booking-modal-body { padding: 24px; }
.widget-empty { text-align: center; padding: 40px 20px; color: var(--text-muted); }
