/* Program page refresh */
.program-hero .hero-panel {
  padding: 60px 70px;
}

@media (max-width: 991px) {
  .program-hero .hero-panel {
    padding: 45px 30px;
  }
}

.program-section {
  border-top: none;
}

.program-header {
  margin-bottom: 30px;
}

.program-header p {
  margin-top: 10px;
}

.program-empty {
  border-radius: 12px;
  padding: 20px 24px;
}

.program-grid {
  margin-top: 20px;
}

.program-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 18px 45px rgba(8, 17, 19, 0.12);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(8, 17, 19, 0.16);
}

.program-card p {
  margin-bottom: 18px;
}

/* Offer page - Fixed image sizes */
.travel_category .single_travel figure {
  overflow: hidden;
  margin: 0;
  height: 300px;
}

.travel_category .single_travel figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.travel_category .single_travel:hover figure img {
  transform: scale(1.05);
}

/* Responsive image heights */
@media (max-width: 768px) {
  .travel_category .single_travel figure {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .travel_category .single_travel figure {
    height: 300px;
  }
}

/* Reservation form refresh */
.reservation-section {
  border-top: none;
  padding-top: 80px;
  padding-bottom: 100px;
}

.reservation-alert {
  border-radius: 12px;
  padding: 20px 24px;
}

.reservation-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 24px 60px rgba(8, 17, 19, 0.14);
}

.reservation-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.reservation-tag {
  background: #f1f5f8;
  color: #081113;
  border-radius: 999px;
  font-size: 12px;
  padding: 6px 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reservation-summary {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
  padding: 20px 24px;
  background: #f9fafc;
  border-radius: 16px;
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.summary-item span {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: #7a7a7a;
}

.summary-item p {
  margin: 0;
  color: #5e5e5e;
}

.summary-full {
  border-top: 1px solid rgba(8, 17, 19, 0.08);
  padding-top: 16px;
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

@media (max-width: 991px) {
  .reservation-card {
    padding: 28px 24px;
  }
}
