.home-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.brand span { color: var(--blue); }

.home-hero {
  background: linear-gradient(148deg, #C8DCFF 0%, #DAEAFF 28%, #EDF4FF 60%, #F6FAFF 100%);
  padding: 80px 24px 76px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(18,86,211,0.13) 0%, transparent 60%);
  top: -320px;
  right: -250px;
  pointer-events: none;
}

.home-hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,72,26,0.07) 0%, transparent 60%);
  bottom: -240px;
  left: -180px;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(18,86,211,0.1);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.35s forwards;
}

.hero-title span { color: var(--blue); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-dim);
  line-height: 1.72;
  max-width: 460px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.home-search-wrap {
  max-width: 660px;
  margin: 0 auto 52px;
  position: relative;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.65s forwards;
}

.search-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(12,31,63,0.18), 0 2px 8px rgba(12,31,63,0.08);
  border: 1px solid var(--border);
}

.search-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 0 4px;
}

.search-tab {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.search-tab input[type=radio] { display: none; }

.search-tab span {
  display: block;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.search-tab:has(input:checked) span {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.search-input-row {
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 20px;
  gap: 10px;
}

.search-icon {
  color: var(--text-faint);
  font-size: 15px;
  flex-shrink: 0;
}

.home-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  min-width: 0;
  height: 46px;
}
.home-search-input::placeholder { color: var(--text-faint); }

.home-search-btn {
  background: var(--coral);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 0 28px;
  height: 46px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
  flex-shrink: 0;
}
.home-search-btn:hover { background: var(--coral-hover); }
.home-search-btn:active { transform: scale(0.97); }

.home-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 200;
  overflow: hidden;
}

.suburb-option {
  padding: 10px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  transition: background 0.12s;
}
.suburb-option:hover { background: var(--bg); }
.suburb-option strong { color: var(--text); flex: 1; font-weight: 500; }
.suburb-option span { color: var(--text-dim); font-size: 12px; }
.suburb-option em { color: var(--text-faint); font-size: 11px; font-style: normal; margin-left: auto; }

.providers {
  opacity: 0;
  animation: fadeUp 0.7s ease 0.85s forwards;
}

.providers-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}

.provider-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.provider-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  padding: 0 14px;
}

.provider-sep {
  width: 1px;
  height: 12px;
  background: var(--border-strong);
  display: inline-block;
}

@media (max-width: 600px) {
  .home-header { padding: 0 16px; }
  .home-hero { padding: 56px 16px 56px; }
  .search-input-row { flex-wrap: wrap; padding: 10px; }
  .home-search-btn { width: 100%; justify-content: center; border-radius: var(--radius); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-title, .hero-sub, .home-search-wrap, .providers {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
