.col-12.col-sm-12.col-md-12.col-lg-9.mx-auto.pt-form {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  margin-bottom: 2rem;
  overflow: visible; /* Critical change - allows content to extend */
  margin: 2rem auto;
  background: white;
  min-height: 200px;
  position: relative;
  z-index: 1;
}

.address {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Ensure all direct children are visible */
.pt-form > * {
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  height: auto !important;
  width: auto !important;
}

/* Specific fix for submit button */
.pt-form input[type="submit"] {
  display: block !important;
  margin: 30px auto;
  padding: 12px 40px;
  background: #FF7F50;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s;
}

.pt-form input[type="submit"]:hover {
  background: #e56a1a;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ==================== */
/* CONTACT ENQUIRY SECTION */
/* ==================== */
.contact_enquiry {
  background: #318d9b;
  padding: 2rem;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  color: white;
  border-radius: 8px 8px 0 0;
  padding-bottom: 2rem;
  margin-bottom: 0;
}

.contact_enquiry h2 {
  color: #000 !important;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.contact_enquiry h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #FF7F50;
}

/* ==================== */
/* ADDRESS SECTION STYLES */
/* ==================== */
.col-lg-6.aos-init.aos-animate {
	margin: 0;
	padding: 0;
}
.contact_addr.aos-init.aos-animate {
  Background: #F0F0F0;
  padding: 2rem;
  border-radius: 0 0 8px 8px;
  margin-top: -5px;
}

.contact_addr.aos-init.aos-animate ul.col-lg-6 address {
  display: grid;
  gap: 1rem;
  font-style: normal;
}

.contact_addr.aos-init.aos-animate ul.col-lg-6 address li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact_addr.aos-init.aos-animate ul.col-lg-6 address li i {
  font-size: 1.25rem;
}

li.contact_addr h3 {
  color: #000 !important;
font-weight: 400px;
border-bottom: none;
}

li.contact_addr p {
  color: #000;
}

li.contact_addr a {
  text-decoration: none;
  color: #000;
}

li.contact_addr a:hover {
  color: #037B90;
}

/* ==================== */
/* FORM INPUT STYLES */
/* ==================== */
input:not([type="submit"]),
textarea,
select {
  border: 1.5px solid #ccc !important;
  background: #f8f9fa !important;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  width: 100%;
  transition: all 0.3s ease;
}

input:not([type="submit"]):focus,
textarea:focus,
select:focus {
  border-color: #FF7F50 !important;
  box-shadow: 0 0 0 3px rgba(49, 141, 155, 0.2);
  background: white !important;
  outline: none;
}

/* Submit button styling */
input[type="submit"] {
  background: #FF7F50;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

input[type="submit"]:hover {
  background: #037B90;
  transform: translateY(-2px);
}

/* ==================== */
/* RESPONSIVE ADJUSTMENTS */
/* ==================== */
@media (max-width: 992px) {
  .contact_enquiry,
  .contact_addr.aos-init.aos-animate {
    padding: 1.5rem;
  }

  .contact_addr.aos-init.aos-animate ul.col-lg-6 address {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .contact_addr.aos-init.aos-animate ul.col-lg-6 address {
    grid-template-columns: repeat(2, 1fr);
  }
}
