/* ============================================
   Ghasla Booking - Public Styles
   ============================================ */

/* Unified Buttons (Home + WhatsApp) */
.ghasla-btn-home,
.ghasla-btn-whatsapp {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #28a745; /* unified green */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.ghasla-btn-home:hover,
.ghasla-btn-whatsapp:hover {
  background: #218838;
}

/* Button Group Layout */
.ghasla-btn-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Booking Form Wrapper */
.ghasla-booking-wrapper {
  max-width: 500px;
  margin: 30px auto;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  font-family: Arial, Helvetica, sans-serif;
}

.ghasla-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #28a745;
  margin-bottom: 20px;
}

/* Form Sections */
.ghasla-section {
  margin-bottom: 15px;
}

.ghasla-section label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.ghasla-section .req {
  color: red;
}

/* Inputs, Selects, and Textareas */
.ghasla-section input,
.ghasla-section select,
.ghasla-section textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: #fafafa;
}

.ghasla-section input:focus,
.ghasla-section select:focus,
.ghasla-section textarea:focus {
  outline: none;
  border-color: #28a745;
  background: #fff;
  box-shadow: 0 0 4px rgba(40, 167, 69, 0.4);
}

.ghasla-section textarea {
  resize: vertical;
  min-height: 80px;
}

/* Submit Button */
.ghasla-submit-btn {
  background: #28a745;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 6px;
  width: 100%;
  transition: background 0.3s ease;
}

.ghasla-submit-btn:hover {
  background: #218838;
}

/* Thank You Page */
.ghasla-thank-you-wrapper {
  max-width: 500px;
  margin: 30px auto;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.ghasla-thank-title {
  font-size: 22px;
  font-weight: bold;
  color: #28a745;
  margin-bottom: 10px;
}

.ghasla-thank-message {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.ghasla-summary {
  text-align: left;
  margin: 15px auto;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.ghasla-summary p {
  margin: 6px 0;
  font-size: 14px;
}

/* Error or Success Messages */
#ghasla-booking-response {
  margin-top: 15px;
  padding: 12px;
  border-radius: 6px;
  display: none;
}

#ghasla-booking-response.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#ghasla-booking-response.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Mobile Responsive */
@media screen and (max-width: 600px) {
  .ghasla-booking-wrapper,
  .ghasla-thank-you-wrapper {
    padding: 15px;
    margin: 15px;
  }

  .ghasla-title {
    font-size: 20px;
  }

  .ghasla-submit-btn {
    font-size: 15px;
    padding: 10px;
  }
}
