/*  CONTACT & BOOKING TWO-COLUMN LAYOUT */

.contact-booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 5%;
}

.contact-booking-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.booking-card,
.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8f5e8;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.booking-card h2,
.contact-card h2 {
  margin-top: 0;
  font-size: 1.6rem;
  color: #1e5720;
  position: relative;
  padding-bottom: 0.5rem;
}

.booking-card h2:after,
.contact-card h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #2e8b57;
  border-radius: 2px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
  font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #2e8b57;
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  display: none;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
  animation: fadeIn 0.5s ease;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
  animation: fadeIn 0.5s ease;
}

.contact-info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed #e0e0e0;
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.contact-info a {
  color: #2e8b57;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/*  RESPONSIVE DESIGN - MEDIA QUERIES */

/* Tablet View (max-width: 768px) */
@media (max-width: 768px) {
 .contact-booking-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .booking-card h2:after,
  .contact-card h2:after {
    width: 40px;
  }
}