.hv-gateway {
  --hv-gateway-orange: #eb5c05;
  --hv-gateway-green: #009238;
  --hv-gateway-gold: #d4a853;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #fff;
  background: #070b10;
}

.hv-gateway-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.hv-gateway-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hv-gateway-top {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hv-gateway-top-logo img {
  max-height: 52px;
  width: auto;
}

.hv-gateway-help {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.hv-gateway-help a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.hv-gateway-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}

.hv-gateway-welcome {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hv-gateway-welcome::before,
.hv-gateway-welcome::after {
  content: '';
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hv-gateway-gold));
}

.hv-gateway-welcome::after {
  background: linear-gradient(90deg, var(--hv-gateway-gold), transparent);
}

.hv-gateway-welcome span {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hv-gateway-gold);
  font-weight: 600;
}

.hv-gateway-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.hv-gateway-title em {
  font-style: italic;
  color: var(--hv-gateway-gold);
}

.hv-gateway-sub {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.hv-gateway-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 24, 32, 0.45);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.35s ease;
}

.hv-gateway-card:hover {
  transform: translateY(-6px) scale(1.01);
  color: #fff;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.55);
}

.hv-gateway-card--hotel:hover {
  border-color: rgba(235, 92, 5, 0.65);
}

.hv-gateway-card--apartment:hover {
  border-color: rgba(0, 146, 56, 0.65);
}

.hv-gateway-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.hv-gateway-card:hover .hv-gateway-card-bg {
  transform: scale(1.06);
}

.hv-gateway-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 16, 0.35) 0%, rgba(7, 11, 16, 0.55) 40%, rgba(7, 11, 16, 0.92) 100%);
}

.hv-gateway-card-body {
  position: relative;
  z-index: 2;
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.hv-gateway-card-logo {
  max-height: 56px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.hv-gateway-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.hv-gateway-card-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 320px;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.hv-gateway-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hv-gateway-gold);
}

.hv-gateway-features span {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 72px;
}

.hv-gateway-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  min-width: 200px;
}

.hv-gateway-btn--hotel {
  background: var(--hv-gateway-orange);
  color: #fff;
  box-shadow: 0 8px 24px rgba(235, 92, 5, 0.45);
}

.hv-gateway-btn--apartment {
  background: var(--hv-gateway-green);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 146, 56, 0.4);
}

.hv-gateway-trust {
  border: 1px solid rgba(212, 168, 83, 0.35);
  border-radius: 16px;
  background: rgba(16, 24, 32, 0.55);
  padding: 1.25rem 1rem;
  margin-bottom: 2rem;
}

.hv-gateway-trust-item {
  text-align: center;
  padding: 0.5rem;
}

.hv-gateway-trust-item i {
  color: var(--hv-gateway-gold);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.hv-gateway-trust-item h3 {
  font-size: 0.8rem;
  font-weight: 600;
}

.hv-gateway-trust-item p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.hv-gateway-footer {
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.hv-gateway-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  margin-left: 0.5rem;
}

@media (max-width: 991.98px) {
  .hv-gateway-card {
    min-height: 380px;
  }
}
