.concerns-section {
  padding: 100px 172px;
}

/* ---- Outer glass panel ---- */

.concerns-wrap {
  padding: 50px;
}

.concerns-heading {
  margin: 0 auto;
  max-width: 19ch;
  font-size: 50px;
  text-align: center;
  margin-bottom: 50px;
  line-height: normal;
  font-weight: 700;
}
/* ---- Cards ---- */

.concern-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 40px 20px;
  height: 100%;
}

.concern-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.concern-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.concern-title {
  margin: 0;
  font-family: var(--raleway);
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
}

/* Hidden extra cards, revealed by "View More" */

.concern-extra {
  display: none;
}

.concerns-grid.is-expanded .concern-extra {
  display: block;
}

.concerns-wrap .concerns-grid.row {
  justify-content: center;
}

/* ---- View More toggle ---- */

.view-more-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 50px auto 0;
  padding: 0;
  background: none;
  border: none;
  color: var(--textColor);
  font-family: var(--worksans);
  font-size: 16px;
  font-weight: 400;
  opacity: 0.8;
  cursor: pointer;
}

.view-more-btn:hover {
  opacity: 1;
}

.view-more-btn svg {
  transition: transform 0.3s ease-in-out;
}

.view-more-btn.is-open svg {
  transform: rotate(180deg);
}

/* ---- Book Now CTA ----
   Visuals come from global.css's .white-glass-bg + .white-glass-bg-hover
   (glass at rest, gold fill on hover). This class only adds
   sizing/typography/positioning. */

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 399px;
  height: 56px;
  padding: 0 32px;
  font-family: var(--worksans);
  font-size: 20px;
  font-weight: 500;
  color: var(--textColor);
}

.concern-card {
  position: relative;
  overflow: hidden;
}

.concern-default,
.concern-hover-text {
  transition: opacity 0.3s ease-out;
}

.concern-hover-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
}

.concern-hover-text p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin: 0;
}

/* Only cards with a text value respond to hover */
.concern-card.has-hover-text:hover .concern-default {
  opacity: 0;
}

.concern-card.has-hover-text:hover .concern-hover-text {
  opacity: 1;
  pointer-events: auto;
  animation: kf_10143_25877_opacity_0 0.3s linear;
}

@keyframes kf_10143_25877_opacity_0 {
  0% {
    animation-timing-function: ease-out;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.concern-default,
.concern-hover-text {
  transition: opacity 0.3s ease-out;
}

.concern-default {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
}

.concern-hover-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
}

.concerns-cta.text-center {
  margin-top: 50px;
}

/* ---- Responsive ---- */

@media (max-width: 1199px) {
  .concerns-wrap {
    padding: 50px 30px 40px;
  }

  .concern-title {
    font-size: 18px;
    line-height: 22px;
  }
  .concerns-section {
    padding: 70px 30px;
  }
  .concerns-heading {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .concern-icon img {
    width: 32px;
    height: 32px;
  }
  .concerns-heading {
    font-size: 20px;
  }
  .concerns-wrap {
    padding: 40px 20px 30px;
    border-radius: 24px;
  }

  .concern-card {
    padding: 24px 12px;
    gap: 12px;
  }

  .concern-icon {
    width: 36px;
    height: 36px;
  }

  .concern-title {
    font-size: 15px;
    line-height: 19px;
  }

  .cta-btn {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    height: 48px;
    font-size: 14px;
  }
  .concerns-section {
    padding: 50px 20px;
  }
  .hero-stat p {
    font-size: 13px;
  }
  .hero-stat-number {
    font-size: 32px !important;
  }
}
