/* ===== BOOKING PAGE STYLES ===== */

/* Page Title Section */
.page-title {
  padding: 120px 0 60px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/placeholder.svg?height=400&width=1920");
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-glow);
  animation: fadeInDown 1s ease;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  animation: fadeIn 1s ease 0.3s both;
}

.breadcrumb a {
  color: var(--primary-color);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary-dark);
}

.breadcrumb .separator {
  margin: 0 10px;
  color: var(--text-light);
}

.breadcrumb .current {
  color: var(--white);
}

/* Booking Section */
.booking-section {
  padding: 80px 0;
  background-color: var(--dark-bg);
  position: relative;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-top: 50px;
}

/* Booking Info Cards */
.booking-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  animation: fadeInRight 0.5s ease forwards;
}

.info-card:nth-child(1) {
  animation-delay: 0.1s;
}

.info-card:nth-child(2) {
  animation-delay: 0.3s;
}

.info-card:nth-child(3) {
  animation-delay: 0.5s;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.info-icon {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.info-card:hover .info-icon {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: rotateY(360deg);
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.info-card p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.info-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-card ul li {
  margin-bottom: 10px;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 215, 0, 0.2);
  padding-bottom: 8px;
}

.info-card ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.info-card ul li span {
  color: var(--white);
  font-weight: 600;
}

.contact-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin: 10px 0;
  direction: ltr;
  text-shadow: 0 0 5px var(--primary-glow);
}

.location-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.location-link i {
  margin-right: 5px;
  transition: transform 0.3s ease;
}

.location-link:hover {
  color: var(--primary-dark);
}

.location-link:hover i {
  transform: translateX(-5px);
}

/* Booking Form */
.booking-form-container {
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
  animation: fadeInLeft 0.5s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--white);
}

.form-group .required {
  color: var(--danger-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border-radius: var(--border-radius);
  background-color: var(--secondary-color);
  border: 1px solid var(--border-color);
  color: var(--white);
  font-family: "Vazirmatn", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--primary-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.input-icon {
  position: relative;
}

.input-icon input {
  padding-left: 40px;
}

.input-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
}

.form-actions {
  margin-top: 10px;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.benefit-card {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  transform: translateY(50px);
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.benefit-card:nth-child(1) {
  animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
  animation-delay: 0.3s;
}

.benefit-card:nth-child(3) {
  animation-delay: 0.5s;
}

.benefit-card:nth-child(4) {
  animation-delay: 0.7s;
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  color: var(--secondary-color);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: rotateY(360deg);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-info {
    order: 2;
  }

  .booking-form-container {
    order: 1;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-title h1 {
    font-size: 2.2rem;
  }

  .booking-section {
    padding: 60px 0;
  }

  .benefits-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .booking-form-container {
    padding: 20px;
  }

  .info-card {
    padding: 20px;
  }
}

/* Flatpickr Custom Styles */
.flatpickr-calendar {
  background: var(--light-bg) !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: var(--box-shadow) !important;
  font-family: "Vazirmatn", sans-serif !important;
}

.flatpickr-day {
  color: var(--text-color) !important;
  font-family: "Vazirmatn", sans-serif !important;
}

.flatpickr-day.selected {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
}

.flatpickr-day:hover {
  background: var(--primary-glow) !important;
  color: var(--secondary-color) !important;
}

.flatpickr-day.today {
  border-color: var(--primary-color) !important;
}

.flatpickr-months .flatpickr-month {
  color: var(--primary-color) !important;
  font-family: "Vazirmatn", sans-serif !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  color: var(--primary-color) !important;
  font-family: "Vazirmatn", sans-serif !important;
}

.flatpickr-time input {
  color: var(--text-color) !important;
  font-family: "Vazirmatn", sans-serif !important;
}

/* Persian Calendar Specific Styles */
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: var(--primary-color) !important;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  border-top-color: var(--primary-color) !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  color: var(--primary-color) !important;
  fill: var(--primary-color) !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: var(--primary-dark) !important;
  fill: var(--primary-dark) !important;
}

.flatpickr-weekday {
  color: var(--primary-color) !important;
  font-family: "Vazirmatn", sans-serif !important;
}

.numInputWrapper span {
  border-color: var(--border-color) !important;
}

.numInputWrapper span:hover {
  background: var(--primary-glow) !important;
}

.numInputWrapper span.arrowUp:after {
  border-bottom-color: var(--primary-color) !important;
}

.numInputWrapper span.arrowDown:after {
  border-top-color: var(--primary-color) !important;
}


/* Add these styles to your booking.css file */

.date-picker-container {
  display: flex;
  align-items: center;
}

.date-select-group {
  display: flex;
  gap: 10px;
  width: 100%;
}

.date-select-group select {
  flex: 1;
  padding: 12px 15px;
  border-radius: var(--border-radius);
  background-color: var(--secondary-color);
  border: 1px solid var(--border-color);
  color: var(--white);
  font-family: "Vazirmatn", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffd700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 16px;
  padding-left: 35px;
}

.date-select-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--primary-glow);
}

/* Remove flatpickr styles since we're not using it for the date picker anymore */
.flatpickr-calendar {
  display: none !important;
}

@media (max-width: 576px) {
  .date-select-group {
    flex-direction: column;
    gap: 10px;
  }
}


