/* Main container for the form */
.cus-form-container {
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}

/* Styling for form groups (label + input) */
.cus-form-group {
  margin-bottom: 1.5rem;
}

/* Form field labels */
.cus-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 500;
}

/* General styling for input and textarea fields */
.cus-input,
.cus-textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #d1d1d6;
  border-radius: 8px;
  font-size: 1rem;
  color: #1c1c1e;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus state for form fields */
.cus-input:focus,
.cus-textarea:focus {
  outline: none;
  border-color: #007aff;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.2);
}

/* Textarea specific styling */
.cus-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit button styling */
.cus-submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(45deg, var(--primary-orange), var(--berry-red));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
}

/* Submit button hover effect */
.cus-submit-btn:hover {
  background-color: #005ecb;
}

/* Submit button disabled state */
.cus-submit-btn:disabled {
  background-color: #a0c3ff;
  cursor: not-allowed;
}

/* Status message styling (for error) */
.cus-status-message {
  text-align: center;
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 500;
  display: none; /* Hidden by default */
}

.cus-status-message.cus-error {
  background-color: #fdeeee;
  color: #ff3b30;
  display: block;
}

/* Thank you view styling */
.cus-thank-you-view {
  display: none; /* Hidden by default */
  text-align: center;
  color: white;
}
.cus-thank-you-text {
  font-size: 1.1rem;
  color: white;
  line-height: 1.6;
  margin-top: 1rem;
}

.contact-div {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
}

@media screen and (max-width: 768px) {
  .contact-div {
    flex-direction: column;
    align-items: center;
  }
  .cus-form-container {
    width: 90%;
  }

  .cus-input,
  .cus-textarea {
    font-size: 0.9rem;
  }
  .cus-submit-btn {
    font-size: 1rem;
  }

  .contact-title {
    text-align: center;
  }

  .contact-text {
    text-align: center;
  }
  .map-container {
    width: 100%;
  }
}

.map-container {
  width: 95%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
