.booking-hero {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  padding: var(--space-24) 0 var(--space-16);
  position: relative;
  overflow: hidden;
}

.booking-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(15, 23, 42, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.booking-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.booking-hero__title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-6);
  color: var(--color-text-heading);
}

.booking-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.booking-hero__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.booking-hero__feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: var(--weight-medium);
  color: var(--color-text-heading);
}

.booking-hero__icon {
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  color: var(--color-text-inverse);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.booking-hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.booking-hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.booking-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.booking-section {
  padding: var(--space-24) 0;
}

.booking-section--alt {
  background-color: var(--color-bg-alt);
}

.booking-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.booking-section__grid--reversed .booking-section__content {
  order: 2;
}

.booking-section__grid--reversed .booking-section__image-wrapper {
  order: 1;
}

.booking-section__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
  color: var(--color-text-heading);
}

.booking-section__text {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: var(--leading-relaxed);
}

.booking-section__list {
  list-style: none;
  margin-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.booking-section__list li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--color-text);
}

.booking-section__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: var(--weight-bold);
}

.booking-section__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.booking-section__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.booking-locations {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.booking-location__tag {
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary-light);
  color: var(--color-text-heading);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

.booking-features {
  padding: var(--space-24) 0;
  background-color: var(--color-bg);
}

.booking-features--dark {
  background-color: var(--color-primary);
}

.booking-features__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-12);
}

.booking-features__main-title {
  font-size: var(--text-3xl);
  color: var(--color-text-heading);
  margin-bottom: var(--space-4);
}

.booking-features__intro {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
}

.booking-features--dark .booking-features__main-title,
.booking-features--dark .booking-features__intro {
  color: var(--color-text-inverse);
}

.booking-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.booking-features__grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.booking-feature-card {
  background: var(--color-bg-elevated);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.booking-feature-card--light {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.booking-feature-card--light .booking-feature-card__title,
.booking-feature-card--light .booking-feature-card__text {
  color: var(--color-text-inverse);
}

.booking-feature-card__icon {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.booking-feature-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--color-text-heading);
}

.booking-feature-card__text {
  color: var(--color-text);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.booking-feature-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.booking-feature-card__list li {
  position: relative;
  padding-left: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.booking-feature-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: var(--weight-bold);
}

.booking-services {
  padding: var(--space-24) 0;
  background-color: var(--color-bg-alt);
}

.booking-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.booking-service-block {
  background: var(--color-bg-elevated);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.booking-service-block--image {
  display: grid;
  grid-template-rows: auto 1fr;
}

.booking-service-block__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.booking-service-block__content {
  padding: var(--space-8);
}

.booking-service-block__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--color-text-heading);
}

.booking-service-block__text {
  color: var(--color-text);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.booking-service-block__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.booking-service-block__list li {
  position: relative;
  padding-left: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text);
}

.booking-service-block__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: var(--weight-bold);
}

.booking-cta {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e293b 100%);
}

.booking-cta__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.booking-cta__title {
  font-size: var(--text-4xl);
  color: var(--color-text-inverse);
  margin-bottom: var(--space-6);
}

.booking-cta__text {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.booking-cta__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.booking-cta__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.booking-cta__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.btn--large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

@media (max-width: 1024px) {
  .booking-hero__grid,
  .booking-section__grid,
  .booking-cta__wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  
  .booking-section__grid--reversed .booking-section__content,
  .booking-section__grid--reversed .booking-section__image-wrapper {
    order: unset;
  }
  
  .booking-hero {
    padding: var(--space-16) 0;
  }
  
  .booking-hero__title {
    font-size: var(--text-4xl);
  }
  
  .booking-features__grid--three {
    grid-template-columns: 1fr;
  }
  
  .booking-services__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .booking-hero__title {
    font-size: var(--text-3xl);
  }
  
  .booking-features__grid {
    grid-template-columns: 1fr;
  }
  
  .booking-cta__title {
    font-size: var(--text-3xl);
  }
  
  .booking-cta__actions,
  .booking-hero__actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}