/* Contact Form Container */
.contact-form {
  max-width: 700px !important;
  margin: 50px auto !important;
  padding: 20px !important;
  background: #fff !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
  font-family: 'Inter', sans-serif !important;
}

/* Headings inside the form (if used) */
.contact-form h2 {
  font-size: 24px !important;
  font-weight: 600 !important;
  text-align: center !important;
  margin-bottom: 20px !important;
}

/* Input, Textarea Styling */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100% !important;
  padding: 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  margin-bottom: 15px !important;
  font-family: 'Inter', sans-serif !important;
  transition: border-color 0.3s ease !important;
}

.contact-form textarea {
	height: 150px;
}

/* Focus State */
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
  border-color: #B38F43 !important;
  outline: none !important;
}

/* Submit Button Styling */
.contact-form input[type="submit"] {
  padding: 12px 20px !important;
  background-color: #48b6f1 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
  font-family: 'Inter', sans-serif !important;
}

.contact-form input[type="submit"]:hover {
  background-color: #0d395e !important;
}

/* Label Styling */
.contact-form label {
  font-size: 16px !important;
  display: block !important;
  margin-bottom: 5px !important;
  font-family: 'Inter', sans-serif !important;
  margin-top: 10px;
}

/* Checkbox Styling (if added later) */
.contact-form input[type="checkbox"] {
  margin-right: 10px !important;
}

/* Error Message Styling */
.contact-form .wpcf7-not-valid-tip {
  color: red !important;
  font-size: 14px !important;
  margin-top: -10px !important;
  margin-bottom: 10px !important;
  display: block !important;
}

/* Success or Error Response Output */
.contact-form .wpcf7-response-output {
  margin: 10px 0 !important;
  padding: 10px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  background: #f9f9f9 !important;
  font-size: 14px !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-form {
	width: 100%;
    padding: 20px;
  }



  .contact-form h2 {
    font-size: 20px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form input[type="submit"] {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 16px;
  }

  .contact-form h2 {
    font-size: 18px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form input[type="submit"] {
    font-size: 14px;
  }


}

.isarva-link {
  color: inherit; /* Matches the existing text color */
  text-decoration: none; /* Removes underline */
}

.isarva-link:hover {
  color: #B38F43; /* Gold hover color */
}

body {
  margin: 0 auto;
  box-sizing: border-box;
	margin:0 auto;
}

    .isarva-link:hover {
        color: #48B6F1 !important;
    }
</style>

.price-discounted {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff; /* Bootstrap primary blue */
}

.price-original {
  font-size: 20px;
  text-decoration: line-through;
  color: #dc3545; /* Bootstrap red */
  margin-left: 8px;
}

.reservation-box a {
  color: #0d395e;
  text-decoration: none;
}

.reservation-box a:hover {
  color: #48b6f1;
}


