hero-services-grid {
}
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card-image {
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-soft);
}
.service-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.service-card-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.service-link {
  margin-top: var(--space-2);
}
.highlight-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.highlight-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.host-section {
  align-items: flex-start;
}
.host-list,
.host-card-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.host-card {
  align-self: stretch;
}
.package-grid {
  align-items: stretch;
}
.package-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.package-card-featured {
  box-shadow: var(--shadow-elevated);
}
.package-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.testimonials-layout {
  align-items: stretch;
}
.testimonial-visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.testimonial-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}
.booking-grid {
  align-items: stretch;
}
.booking-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.contact-cta {
  display: flex;
  justify-content: center;
  background: radial-gradient(circle at top left, #fffaf3 0, #f8f3ea 55%, #f0e3d2 100%);
}
.contact-cta-text {
  max-width: 720px;
}
.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
}
.contact-cta-note {
  font-size: var(--font-size-sm);
  color: var(--color-neutral-600);
}
.btn-block {
  width: 100%;
}
@media (max-width: 1024px) {
  .testimonial-visual img {
    max-height: 420px;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  .testimonial-visual {
    order: -1;
  }
}
