/* ── Hero Header ──────────────────────────────────────── */
.header {
  margin: 12px 16px 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10,15,30,0.20);
}

.hero {
  background: linear-gradient(160deg,
    #0A0F1E 0%,
    #0F2044 30%,
    #0D3B6E 55%,
    #0A5C7A 75%,
    #0D7A7A 100%
  );
  padding: 28px 24px 44px;
  position: relative;
}

/* Decorative glow rings */
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
  pointer-events: none;
}

.hero-ornament {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: rgba(201,168,76,0.55);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(28px, 7vw, 38px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-title span {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 400;
  max-width: 380px;
}

/* Wave bottom of hero — replaced by card border-radius */
.hero-wave {
  display: none;
}

/* ── Floating Input Card ──────────────────────────────── */
.input-card {
  margin: 16px 16px 0;
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 8px 40px rgba(10,15,30,0.14), 0 2px 8px rgba(10,15,30,0.08);
  position: relative;
  z-index: 2;
}

/* ── Search Textarea ──────────────────────────────────── */
.search-textarea-wrap { position: relative; }

.search-textarea {
  width: 100%;
  min-height: 100px;
  padding: 14px 40px 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--text-dark);
  background: #F8FAFC;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  resize: vertical;
  line-height: 1.75;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.search-textarea::placeholder { color: var(--text-soft); }

.search-textarea:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px rgba(10,92,122,0.10);
  background: #FFFFFF;
}

.search-clear {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-soft);
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background 0.15s;
}

.search-clear:hover { color: var(--text-dark); background: rgba(0,0,0,0.06); }
.search-clear.hidden { display: none; }

.search-helper {
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ── Submit Button ────────────────────────────────────── */
.search-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 14px;
  padding: 15px;
  background: linear-gradient(135deg, var(--night-3), var(--teal-dark));
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 16px rgba(10,92,122,0.35);
}

.search-submit-btn:hover  { opacity: 0.9; }
.search-submit-btn:active { transform: scale(0.98); }
.search-submit-btn.hidden { display: none; }

