/* Booking Modal Styles */
.booking-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

.booking-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.booking-modal {
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  margin: auto;
}

.booking-modal-header {
  padding: 25px 30px;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.booking-modal-title {
  font-family: "Philosopher", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #2c2c2c;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  line-height: 1;
}

.booking-modal-close:hover {
  color: #d3b369;
}

.booking-modal-body {
  padding: 30px;
}

.booking-form-group {
  margin-bottom: 20px;
}

.booking-form-label {
  display: block;
  font-family: "Philosopher", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-form-input,
.booking-form-select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-family: "Alegreya Sans", sans-serif;
  font-size: 16px;
  color: #2c2c2c;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.booking-form-input:focus,
.booking-form-select:focus {
  outline: none;
  border-color: #d3b369;
}

.booking-form-input::placeholder {
  color: #999;
}

.booking-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.booking-form-submit {
  width: 100%;
  padding: 15px;
  background-color: #d3b369;
  color: #2c2c2c;
  border: 2px solid #d3b369;
  border-radius: 4px;
  font-family: "Philosopher", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 10px;
}

.booking-form-submit:hover {
  background-color: transparent;
  color: #d3b369;
}

.booking-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.booking-form-message {
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  display: none;
  font-family: "Alegreya Sans", sans-serif;
  font-size: 14px;
}

.booking-form-message.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.booking-form-message.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.booking-form-loading {
  display: none;
  text-align: center;
  padding: 10px;
  color: #666;
  font-family: "Alegreya Sans", sans-serif;
  font-size: 14px;
}

.booking-form-loading.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 767px) {
  .booking-modal {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
    margin: 0;
  }

  .booking-modal-overlay.active {
    padding: 0;
    align-items: flex-start;
  }

  .booking-modal-header {
    padding: 20px;
  }

  .booking-modal-title {
    font-size: 20px;
  }

  .booking-modal-body {
    padding: 20px;
  }

  .booking-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-form-input,
  .booking-form-select {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

@media (max-width: 479px) {
  .booking-modal-header {
    padding: 15px;
  }

  .booking-modal-title {
    font-size: 18px;
  }

  .booking-modal-body {
    padding: 15px;
  }
}

/* Contact Form Styles */
.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background-color: transparent;
  padding: 0;
}

.contact-form-group {
  margin-bottom: 25px;
}

.contact-form-label {
  display: block;
  font-family: "Philosopher", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-family: "Alegreya Sans", sans-serif;
  font-size: 16px;
  color: #2c2c2c;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.contact-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: #d3b369;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: #999;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form-submit {
  width: 100%;
  padding: 15px;
  background-color: #d3b369;
  color: #2c2c2c;
  border: 2px solid #d3b369;
  border-radius: 4px;
  font-family: "Philosopher", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 10px;
}

.contact-form-submit:hover {
  background-color: transparent;
  color: #d3b369;
}

.contact-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form-message {
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  display: none;
  font-family: "Alegreya Sans", sans-serif;
  font-size: 14px;
}

.contact-form-message.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.contact-form-message.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-form-loading {
  display: none;
  text-align: center;
  padding: 10px;
  color: #666;
  font-family: "Alegreya Sans", sans-serif;
  font-size: 14px;
}

.contact-form-loading.active {
  display: block;
}

/* Responsive Styles for Contact Form */
@media (max-width: 767px) {
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-input,
  .contact-form-textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

.gallery-slider-2 .gallery-slider-left-2 .slider-arrow-embed-2,
.gallery-slider-2 .gallery-slider-right-2 .slider-arrow-embed-2 {
  display: block;
}
