/* ===========================================
   HERO COMPONENT
   =========================================== */

.hero {
  background: linear-gradient(135deg, #eaf7f7 0%, #f4fbfb 45%, #eef9f9 100%);
  position: relative;
  overflow: hidden;
  z-index: -1;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(10,127,127,.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 385px;
  gap: 36px;
  align-items: center;
  padding: 56px 0 52px;
  position: relative;
  z-index: 1;
}

/* Left side */
.hero__content {}
.hero__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.hero__avatars {
  display: flex;
}
.hero__avatars img {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-right: -11px;
  object-fit: cover;
  background: var(--teal-light);
}
.hero__rating-label strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}
.hero__rating-label span {
  font-size: 12px;
  color: var(--text-muted);
}
.hero__title {
  font-size: clamp(28px, 3.5vw, 45px);
  font-weight: 900;
  line-height: 1.17;
  color: #111;
  margin-bottom: 16px;
}
.hero__sub {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
  max-width: 510px;
  margin-bottom: 30px;
}
.hero__search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid #d6e8e8;
  border-radius: var(--r-xl);
  padding: 11px 14px 11px 20px;
  max-width: 440px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  margin-bottom: 22px;
  transition: border-color var(--t), box-shadow var(--t);
}
.hero__search:hover {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,127,127,.1);
}
.hero__search-icon { font-size: 17px; color: var(--teal); flex-shrink: 0; }
.hero__search-text { flex: 1; font-size: 14px; color: #999; }
.hero__search-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.hero__links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero__links a {
  font-size: 13.5px;
  color: var(--teal);
  font-weight: 600;
  display: flex; align-items: center; gap: 4px;
  transition: opacity var(--t);
}
.hero__links a:hover { opacity: .72; }
.hero__links a svg { width: 11px; height: 11px; }
.hero__links-sep { color: #ccc; font-size: 15px; }

/* Right form card */
.hero__form-card {
  background: var(--teal);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  color: #fff;
  box-shadow: 0 10px 44px rgba(10,127,127,.28);
}
.hero__form-card h3 {
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
}
.hero__form-card p {
  font-size: 12.5px;
  opacity: .88;
  text-align: center;
  line-height: 1.55;
  margin-bottom: 18px;
}
.form-field { margin-bottom: 10px; }
.form-field input,
.form-field select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.94);
  font-size: 13.5px;
  color: #333;
  transition: border-color var(--t);
}
.form-field input:focus,
.form-field select:focus {
  border-color: var(--orange);
  background: #fff;
}
.form-field input::placeholder { color: #aaa; }
.form-field select { cursor: pointer; }

.form-field--phone {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 8px;
}
.form-field__prefix {
  display: flex; align-items: center;
  background: rgba(255,255,255,.94);
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.22);
  padding: 10px 12px;
  font-size: 13.5px;
  color: #555;
  font-weight: 600;
}
.form-field__consent {
  font-size: 11px;
  opacity: .78;
  text-align: center;
  line-height: 1.55;
  margin-bottom: 14px;
}
.form-field__consent a { text-decoration: underline; }
.form-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  padding: 13px;
  border-radius: var(--r-xl);
  font-size: 15px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background var(--t);
  letter-spacing: .2px;
}
.form-submit:hover { background: var(--orange-dark); }

/* Journey tabs */
.journey {
  background: #fff;
  padding-bottom: 32px;
}
.journey__card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  overflow: hidden;
  margin-top: -8px;
  position: relative;
  z-index: 5;
}
.journey__header {
  background: var(--teal);
  text-align: center;
  padding: 13px;
}
.journey__header span {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.journey__tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: #fff;
  overflow-x: auto;
}
.journey__tab {
  flex: 1;
  min-width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #666;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--t);
}
.journey__tab:hover { color: var(--teal); }
.journey__tab.is-active {
  color: var(--teal);
  border-bottom-color: var(--teal);
  background: #fafffe;
}
.journey__tab-icon { font-size: 16px; }

.journey__panel { padding: 22px 26px; display: none; }
.journey__panel.is-active { display: block; }
.journey__selects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.journey__select-wrap label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.journey__select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddeaea;
  border-radius: 10px;
  font-size: 14px;
  color: #555;
  background: #fff;
  cursor: pointer;
}
.journey__select:focus { border-color: var(--teal); }
.journey__search-btn {
  display: block;
  margin: 0 auto;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 11px 36px;
  border-radius: var(--r-xl);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--t);
}
.journey__search-btn:hover { background: var(--teal-dark); }

@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; padding: 44px 0 40px; }
  .hero__form-card { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .journey__selects { grid-template-columns: 1fr; }
}
