/* Hero Slider Component */
.vl-hero-section {
  position: relative;
  background: var(--hero-bg, #006A82);
  border-radius: var(--radius-lg, 24px);
  overflow: hidden;
  color: var(--white);
  padding: 60px 48px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .vl-hero-section {
    padding: 36px 20px;
    min-height: auto;
    border-radius: var(--radius-md, 12px);
  }
}

.vl-hero-slider-container {
  position: relative;
  width: 100%;
}

.vl-hero-slide {
  display: none;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.vl-hero-slide.is-active {
  display: grid;
  opacity: 1;
}

@media (max-width: 991px) {
  .vl-hero-slide {
    grid-template-columns: 1fr;
  }
}

.vl-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.vl-hero-title {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .vl-hero-title {
    font-size: 28px;
  }
}

.vl-hero-description {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 540px;
}

.vl-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.vl-hero-btn-primary {
  background: var(--white);
  color: var(--black-turquoise);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vl-hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.vl-hero-btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.2s ease;
}

.vl-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

.vl-hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vl-hero-media img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.vl-hero-nav-dashes {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.vl-hero-dash {
  width: 32px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vl-hero-dash.is-active {
  width: 48px;
  background: var(--white);
}

/* Hero card action buttons hover states */
.btn-card-dark:hover,
.btn-card-dark:focus,
a.btn-card-dark:hover,
a.btn-card-dark:focus {
  color: var(--white);
  opacity: 0.92;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-card-light:hover,
.btn-card-light:focus,
a.btn-card-light:hover,
a.btn-card-light:focus {
  color: var(--black-turquoise);
  opacity: 0.92;
  transform: translateY(-1px);
  text-decoration: none;
}

