
/* =========================================================
   HERO & SEARCH BAR
   ========================================================= */
.hero-section {
    min-height: 680px;
    background-color: #0d1b2a;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(8, 18, 38, 0.72) 0%,
            rgba(12, 22, 45, 0.45) 60%,
            rgba(20, 35, 60, 0.55) 100%);
}

.hero-container {
    max-width: 1060px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2rem, 5.5vw, 3rem);
    line-height: 1.08;
    letter-spacing: 5px;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
}

.hero-subtitle {
    font-size: clamp(0.88rem, 1.8vw, 1.05rem);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
    font-weight: 300;
    line-height: 1.65;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.hero-search-wrapper {
    max-width: 960px;
}

.search-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32), 0 4px 16px rgba(0, 0, 0, 0.12);
}

.search-main-row {
    min-height: 76px;
    border-radius: 14px;
}

.search-field-txn {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.search-action-wrap {
    padding: 12px 16px 12px 10px;
    display: flex;
    align-items: center;
}

.txn-toggle {
    display: flex;
    background: #f4f5f7;
    border-radius: 8px;
    padding: 3px;
    gap: 2px;
}

.txn-btn {
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
}

.txn-btn.active {
    background: linear-gradient(135deg, #ff9500, #ff5e00);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 94, 0, 0.35);
    font-weight: 700;
}

.search-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, #e8e8e8 30%, #e8e8e8 70%, transparent);
    margin: 8px 0;
    flex-shrink: 0;
}

.search-field-keyword {
    padding: 14px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    position: relative;
}

.search-icon {
    color: #c8c8c8;
    font-size: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

.search-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    font-weight: 500;
    color: #0d1b2a;
    background: transparent;
}

.btn-search-main {
    background: linear-gradient(135deg, #ff9500 0%, #ff5e00 100%);
    border: none;
    color: white;
    font-size: 0.88rem;
    font-weight: 800;
    padding: 0 26px;
    height: 52px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 18px rgba(255, 94, 0, 0.42);
}

.advanced-filter-panel {
    padding: 24px 28px 26px;
    border-top: 1px solid #f0f0f0;
}

/* Mobile Search */
.mobile-search-card {
    background: white;
    border-radius: 14px;
    padding: 8px 8px 8px 16px;
    gap: 8px;
    align-items: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.btn-mobile-filter {
    background: #fff4e0;
    border: none;
    color: #ff8c00;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-mobile-search {
    background: linear-gradient(135deg, #ff9500, #ff5e00);
    border: none;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
