/* ============================================
   VIMANIA - Explore/Anywhere Page Styles
   ============================================ */

/* Hero */
.hero {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display, 'Unbounded', sans-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hero-title span {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-secondary, #94a3b8);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Search Form */
.search-section {
    padding: 0 2rem 3rem;
}

.search-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card, #1e293b);
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    border-radius: var(--radius-xl, 28px);
    padding: 2rem;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1.5rem;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary, #94a3b8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-select, .form-input {
    padding: 1rem 1.25rem;
    background: var(--bg-primary, #020617);
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    border-radius: var(--radius-md, 12px);
    color: var(--text-primary, #f8fafc);
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-select:focus, .form-input:focus {
    outline: none;
    border-color: #8b5cf6;
}

/* Budget Slider */
.budget-display {
    text-align: center;
    margin-bottom: 0.75rem;
}

.budget-value {
    font-family: var(--font-display, 'Unbounded', sans-serif);
    font-size: 2rem;
    font-weight: 700;
    color: #8b5cf6;
}

.budget-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--bg-primary, #020617);
    -webkit-appearance: none;
    appearance: none;
}

.budget-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.4);
}

.budget-range {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted, #64748b);
    margin-top: 0.5rem;
}

/* Results */
.results-section {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.results-title {
    font-family: var(--font-display, 'Unbounded', sans-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

.results-count {
    color: var(--text-secondary, #94a3b8);
}

.results-count strong {
    color: #8b5cf6;
}

/* Destination Cards */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.dest-card {
    background: var(--bg-card, #1e293b);
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    border-radius: var(--radius-lg, 20px);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.dest-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dest-card.chollo {
    border-color: rgba(34, 197, 94, 0.3);
}

.dest-image {
    height: 140px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.dest-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-card, #1e293b), transparent);
}

.dest-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--success, #22c55e);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-md, 12px);
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 5;
}

.dest-body {
    padding: 1.25rem;
}

.dest-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.dest-emoji {
    font-size: 1.5rem;
}

.dest-name {
    font-family: var(--font-display, 'Unbounded', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
}

.dest-country {
    font-size: 0.85rem;
    color: var(--text-secondary, #94a3b8);
    margin-bottom: 1rem;
}

.dest-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted, #64748b);
    margin-bottom: 1rem;
}

.dest-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border, rgba(255,255,255,0.08));
}

.dest-price {
    font-family: var(--font-display, 'Unbounded', sans-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success, #22c55e);
}

.dest-btn {
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
    border-radius: var(--radius-md, 12px);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.dest-btn:hover {
    background: #8b5cf6;
    color: white;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary, #94a3b8);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-title {
    font-family: var(--font-display, 'Unbounded', sans-serif);
    font-size: 1.25rem;
    color: var(--text-primary, #f8fafc);
    margin-bottom: 0.5rem;
}

/* Out of Budget */
.out-of-budget {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border, rgba(255,255,255,0.08));
}

.out-of-budget-title {
    font-size: 1rem;
    color: var(--text-muted, #64748b);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mini-dest {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card, #1e293b);
    border: 1px solid var(--border, rgba(255,255,255,0.08));
    border-radius: var(--radius-xl, 28px);
    margin: 0.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary, #94a3b8);
    text-decoration: none;
    transition: all 0.2s;
}

.mini-dest:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.mini-dest-price {
    color: #f59e0b;
    font-weight: 600;
}

/* Button */
.btn {
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-md, 12px);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .search-form {
        grid-template-columns: 1fr;
    }
    .hero { padding: 2rem 1rem; }
    .search-box { padding: 1.5rem; }
    .destinations-grid { grid-template-columns: 1fr; }
}
