.wrap_800px {
    width: 800px;
}

section.form-section {}


section.form-section .wpcf7 {
  /* Overall form container styling */
  padding: 40px; /* Ample padding around the entire form */
  background-color: #f9f9f9; /* Light background for a clean look */
  border: 1px solid #e0e0e0; /* Subtle border */
  border-radius: 8px; /* Slightly rounded corners */
  font-family: "Segoe UI", Arial, sans-serif; /* Modern, readable font */
  color: #333; /* Darker text for readability */
  max-width: 800px; /* Constrain max width for better readability on large screens */
  margin: 40px auto; /* Center the form with generous top/bottom margin */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Soft shadow for depth */
}

section.form-section .wpcf7 p {
  margin-bottom: 25px; /* More space between form fields/paragraphs */
}

section.form-section .wpcf7 label {
  display: block; /* Make labels take full width */
  margin-bottom: 10px; /* Space between label and input */
  font-weight: bold; /* Bold labels for emphasis */
  font-size: 1.1em; /* Slightly larger font for labels */
  color: #555; /* Slightly muted color for labels */
}

/* Style for all text inputs, tel, email, date, and textarea */
section.form-section .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
section.form-section .wpcf7-textarea {
  width: 100%; /* Full width for input fields */
  padding: 15px 20px; /* Generous padding inside input fields */
  border: 1px solid #ccc; /* Standard border */
  border-radius: 5px; /* Rounded corners for inputs */
  font-size: 1em; /* Standard font size */
  line-height: 1.5; /* Good line height for text */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for focus */
  background-color: #ffffff; /* White background for inputs */
}

/* Focus state for input fields */
section.form-section .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):focus,
section.form-section .wpcf7-textarea:focus {
  border-color: #007bff; /* Highlight border on focus */
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); /* Soft glow on focus */
  outline: none; /* Remove default outline */
}

/* Specific styling for select dropdowns */
section.form-section .wpcf7-select {
  -webkit-appearance: none; /* Remove default select arrow for better custom styling */
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="#333333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>'); /* Custom dropdown arrow */
  background-repeat: no-repeat;
  background-position: right 15px center; /* Position arrow */
  background-size: 20px; /* Size of arrow */
  padding-right: 45px; /* Space for the custom arrow */
}

/* Placeholder text style */
section.form-section .wpcf7-form-control::placeholder {
  color: #a0a0a0;
  opacity: 1; /* Ensure placeholder is visible */
}

/* Hidden groups (for conditional fields) */
section.form-section .wpcf7cf-hidden {
  opacity: 1; /* Ensure visibility if they become active */
  transition: opacity 0.5s ease-in-out; /* Smooth transition for hidden fields */
  /* You might want to add max-height and overflow: hidden for a true slide-down effect when they are revealed by JavaScript */
}

/* Submit button styling */
section.form-section .wpcf7-submit {
  display: block; /* Make the button a block element */
  width: auto; /* Auto width based on content */
  min-width: 200px; /* Minimum width for the button */
  padding: 15px 30px; /* Generous padding */
  margin: 30px auto 10px auto; /* Center the button with good vertical spacing */
  background-color: #28a745; /* Green for a positive action */
  color: #fff; /* White text */
  border: none; /* No border */
  border-radius: 5px; /* Rounded corners */
  font-size: 1.2em; /* Larger font size */
  font-weight: bold; /* Bold text */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover effects */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* Soft shadow */
}

section.form-section .wpcf7-submit:hover {
  background-color: #218838; /* Darker green on hover */
  transform: translateY(-2px); /* Slight lift effect */
}

section.form-section .wpcf7-submit:active {
  background-color: #1e7e34; /* Even darker green on click */
  transform: translateY(0); /* Return to original position */
}

/* Error and validation messages */
section.form-section .wpcf7-not-valid-tip {
  color: #dc3545; /* Red for errors */
  font-size: 0.9em;
  margin-top: 5px;
  display: block;
}

section.form-section .wpcf7-response-output {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
}

section.form-section .wpcf7-mail-sent-ok {
  background-color: #d4edda; /* Light green for success */
  color: #155724; /* Dark green text */
  border: 1px solid #c3e6cb;
}

section.form-section .wpcf7-mail-sent-ng,
section.form-section .wpcf7-validation-errors {
  background-color: #f8d7da; /* Light red for errors */
  color: #721c24; /* Dark red text */
  border: 1px solid #f5c6cb;
}

/* Specific adjustments for date input if needed */
section.form-section input[type="date"].wpcf7-form-control {
  padding: 15px 20px; /* Ensure consistent padding for date input */
}

/* Media queries for responsiveness */
@media (max-width: 600px) {
  section.form-section .wpcf7 {
    padding: 20px;
    margin: 20px auto;
  }

  section.form-section .wpcf7 label {
    font-size: 1em;
  }

  section.form-section .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
  section.form-section .wpcf7-textarea {
    padding: 12px 15px;
  }

  section.form-section .wpcf7-submit {
    min-width: 150px;
    padding: 12px 20px;
    font-size: 1em;
  }
}



h2.reserve-section__title {
    /* color: #fff; */
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    margin-bottom: 0.5em;
    font-family: 'Oswald', sans-serif;
}

label {
    margin-bottom: 0.5em;
    display: inline-block;
}