.themes-hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: var(--space-8);
  align-items: center;
}

.themes-hero-text {
  position: relative;
}

.themes-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.themes-hero-links {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}

.themes-hero-separator {
  color: var(--color-text-muted);
}

.themes-hero-figure,
.themes-corporate-figure,
.themes-booking-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.themes-hero-image,
.themes-corporate-image,
.themes-booking-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themes-grid {
  align-items: stretch;
}

.themes-card-tight .card-body p:last-child {
  margin-bottom: 0;
}

.themes-corporate-section {
  padding-top: var(--space-10);
}

.themes-corporate-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: var(--space-8);
  align-items: center;
}

.themes-corporate-text p:last-child {
  margin-bottom: 0;
}

.themes-corporate-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.themes-subsection-header {
  max-width: 42rem;
  margin-bottom: var(--space-6);
}

.themes-booking-card {
  height: 100%;
}

.themes-booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: var(--space-4);
  align-items: center;
}

.themes-booking-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}

.themes-callout-contact {
  margin-top: var(--space-4);
}

.themes-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.18), transparent 55%),
    rgba(15, 23, 42, 0.95);
}

.themes-bottom-links-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 1024px) {
  .themes-hero,
  .themes-corporate-grid,
  .themes-booking-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .themes-hero-media,
  .themes-corporate-media,
  .themes-booking-media {
    order: -1;
  }
}

@media (max-width: 768px) {
  .themes-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .themes-corporate-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .themes-bottom-links {
    padding: var(--space-5);
  }

  .themes-bottom-links-actions {
    width: 100%;
    flex-direction: column;
  }

  .themes-booking-actions {
    width: 100%;
  }
}
