/* Plans Section */
.plans-section {
  padding: 70px 0;
  background: #FFFFFF;
}

.plans-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.plan-card {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 580px;
}

.plan-card.location-photo {
  flex-direction: row-reverse;
}

.plan-image {
  position: relative;
  width: 450px;
  height: 580px;
  flex-shrink: 0;
}

.plan-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.plan-label {
  position: absolute;
  top: 50%;
  left: -55%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-family: 'Lisu Bosa', serif;
  font-weight: 200;
  font-size: 45px;
  line-height: 45px;
  letter-spacing: 2.7px;
  text-align: center;
  color: rgba(43, 56, 142, 0.8);
  white-space: nowrap;
}

.location-photo .plan-label {
  left: auto;
  right: -40px;
  color: rgba(20, 74, 135, 0.8);
}

.plan-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.plan-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-category {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 2.24px;
  text-align: center;
  color: #B33D31;
  align-self: flex-start;
}

.plan-title {
  font-family: 'Yu Mincho', serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 40.8px;
  color: #251D03;
  text-align: center;
  margin: 0;
}

.plan-divider {
  margin-top: 8px;
}

.divider-line {
  width: 100%;
  height: 3.69px;
  object-fit: contain;
}

.plan-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.plan-description {
  font-family: 'Yu Mincho', serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: #251D03;
}

.plan-price {
  font-family: 'Yu Mincho', serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 38.4px;
  color: #251D03;
}

.price-note {
  font-weight: 400;
  font-size: 16px;
}

.plan-includes,
.plan-booking {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.includes-title,
.booking-title {
  font-family: 'Yu Mincho', serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 25.6px;
  color: #251D03;
  margin: 0;
}

.includes-text,
.booking-text {
  font-family: 'Yu Mincho', serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: #251D03;
}

.plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 38px;
  background: linear-gradient(135deg, #B33D31, #8B2E24);
  color: #FFFFFF;
  border-radius: 80px;
  font-family: 'Yu Mincho', serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 28.8px;
  text-align: center;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 16px;
}

.plan-btn:hover {
  background: linear-gradient(135deg, #8B2E24, #B33D31);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(179, 61, 49, 0.3);
}

.plan-btn .btn-icon {
  width: 24px;
  height: 24px;
}

/* Mobile Styles */
@media (max-width: 1024px) {
  .plans-container {
    max-width: 800px;
  }
  
  .plan-card {
    gap: 30px;
  }
  
  .plan-image {
    width: 350px;
    height: 450px;
  }
  
  .plan-title {
    font-size: 28px;
    line-height: 34px;
  }
}

@media (max-width: 768px) {
  .plans-container {
    padding: 0 16px;
    gap: 60px;
  }
  
  .plan-card {
    flex-direction: column;
    gap: 20px;
    min-height: auto;
  }
  
  .plan-card.location-photo {
    flex-direction: column;
  }
  
  .plan-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
  }
  
  .plan-label {
    position: static;
    transform: none;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .plan-title {
    font-size: 24px;
    line-height: 28px;
  }
  
  .plan-price {
    font-size: 20px;
    line-height: 32px;
  }
}

@media (max-width: 480px) {
  .plans-container {
    padding: 0 12px;
    gap: 40px;
  }
  
  .plan-image {
    height: 250px;
  }
  
  .plan-title {
    font-size: 20px;
    line-height: 24px;
  }
  
  .plan-description,
  .includes-text,
  .booking-text {
    font-size: 14px;
    line-height: 22px;
  }
  
  .plan-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}
