/* =========================================================
   SECTION RHYTHM & SPACING
========================================================= */

/* Improve vertical rhythm across sections */
.hn-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

@media (max-width: 768px) {
  .hn-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Alternate section backgrounds for visual rhythm */
.hn-section:nth-of-type(even) {
  background: #f8fafc;
}

.hn-section:nth-of-type(odd) {
  background: #ffffff;
}

/* Section headers */
.hn-section-title {
  margin-bottom: 8px;
}

.hn-section-subtitle {
  margin-bottom: 28px;
  color: #64748b;
}


/* =========================================================
   HERO – DEPTH & PREMIUM FEEL
========================================================= */

/* Hero overlay refinement */
.hn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.55)
  );
  z-index: 0;
}

.hn-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 24px;
}

/* Hero trust chips */
.hn-hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.hn-hero-trust-item {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}


/* =========================================================
   STARTING POINTS – EDITORIAL CARDS
========================================================= */

/* Route grid spacing */
.hn-route-grid {
  display: grid;
  gap: 28px;
}

@media (max-width: 768px) {
  .hn-route-grid {
    gap: 22px;
  }
}

/* Starting point cards */
.hn-route-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hn-route-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

.hn-route-media {
  position: relative;
}

.hn-route-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hn-route-media h3 {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: #ffffff;
  font-size: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hn-route-body {
  padding: 16px 18px;
}

.hn-route-body p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}


/* =========================================================
   EXPERIENCE DETAILS – AUTHORITY PANEL
========================================================= */

.hn-provider-section {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.hn-provider-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hn-provider-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 15px;
  color: #334155;
}

.hn-provider-list li:last-child {
  border-bottom: none;
}


/* =========================================================
   SLOTS – SECONDARY INFORMATION CARDS
========================================================= */

.hn-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.hn-card-title {
  font-size: 16px;
  margin-bottom: 6px;
}

.hn-card-subtext {
  font-size: 14px;
  color: #64748b;
}


/* =========================================================
   EXPERIENCE SUMMARY – READABILITY FOCUS
========================================================= */

.hn-experience-summary {
  background: linear-gradient(
    to bottom,
    #ffffff,
    #f9fafb
  );
  padding-top: 40px;
  padding-bottom: 40px;
}

.hn-experience-summary .hn-text-muted {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}


/* =========================================================
   FINAL CTA – DESTINATION FEEL
========================================================= */

.hn-provider-cta-box {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 24px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}


/* =========================================================
   STARTING POINTS – RESPONSIVE GRID (DESKTOP ROW)
========================================================= */

/* Default (mobile) stays stacked */

/* Tablet: 2 columns */
@media (min-width: 768px) {
  .hn-route-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 3 columns */
@media (min-width: 1100px) {
  .hn-route-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* =========================================================
   KAYAKING SLOTS – IMAGE CARDS
========================================================= */

.hn-slot-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .hn-slot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .hn-slot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hn-slot-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hn-slot-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.1);
}

.hn-slot-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hn-slot-body {
  padding: 18px;
}

/* Final CTA row */
.hn-cta-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;      /* critical for vertical alignment */
  margin: 10px auto;
  flex-wrap: nowrap;
}

/* Primary WhatsApp button (reference height) */
.hn-provider-cta-btn {
  height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 0px;
}

/* Icon-only CTA button (call) */
.hn-provider-icon-btn {
  width: 52px;              /* square = perfect alignment */
  height: 52px;
  padding: 0;               /* remove horizontal padding */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Icon sizing */
.hn-provider-icon-btn i {
  font-size: 18px;
  line-height: 1;
}
