/* Enhanced Form Container - Centered Content */
.form-container {
  max-width: 700px;
  margin: 60px auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  font-family: 'Lora', serif;
  color: #333;
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
  line-height: 1.6;
  text-align: center; /* ✅ center-align all text */
}

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

/* Centered bullet list */
.form-container ul {
  list-style: none;
  padding-left: 0;
  display: inline-block;
  text-align: left;
}

.form-container li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
  font-size: 15px;
}

.form-container li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

/* Contact link and bold phone styling */
.form-container a {
  color: var(--coffee);
  text-decoration: underline;
}

.form-container strong {
  color: var(#5a3825);
}

/* Form Layout */
form {
  display: flex;
  flex-direction: column;
  text-align: left; /* keep labels and inputs aligned */
}

/* Labels */
form label {
  font-family: 'Playfair Display', serif;
  margin: 12px 0 5px;
  color: var(--dark);
  font-weight: bold;
}

/* Inputs, selects, textareas */
form input,
form select,
form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Lora', serif;
  margin-bottom: 12px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

/* 🎯 Focus state */
form input:focus,
form textarea:focus,
form select:focus {
  border-color: var(--coffee);
  outline: none;
  box-shadow: 0 0 6px rgba(90, 56, 37, 0.2);
}

/* Submit Button */
form button {
  margin-top: 15px;
  padding: 14px;
  background: var(--coffee);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

form button:hover {
  background: var(--coffee-dark);
  transform: translateY(-2px);
}

/* Disabled Button */
form button:disabled {
  background: #999;
  cursor: not-allowed;
}

/* Success & Error Messages */
.success-msg {
  text-align: center;
  color: var(--success);
  font-weight: bold;
  margin-top: 20px;
}

.error-msg {
  text-align: center;
  color: var(--error);
  font-weight: bold;
  margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .form-container {
    padding: 20px;
    margin: 30px 15px;
  }

  form button {
    font-size: 14px;
    padding: 12px;
  }

  .form-container li {
    font-size: 14px;
  }
}


/* ✅ Modal for Email Duplication Check */
.calendar-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.calendar-modal {
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  animation: fadeIn 0.3s ease-in-out;
  font-family: 'Lora', serif;
  text-align: center;
}

.calendar-modal p {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 16px;
}

.calendar-modal button {
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  border-radius: 6px;
  margin: 0 5px;
}

.calendar-modal button:first-child {
  background-color: #28a745; /* green */
  color: white;
}

.calendar-modal button:last-child {
  background-color: #dc3545; /* red */
  color: white;
}
.recaptcha-notice{
text-align:center;
font-size:12px;
color:#c59d5f;
margin-top:10px;
}

.recaptcha-notice a{
color:#c59d5f;
text-decoration:underline;
}

.recaptcha-notice a:hover{
color:#ffffff;
}