#formResponse {
  display: none;
  margin-top: 15px;
  padding: 12px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
}

/* success */
#formResponse.success {
  display: block;
  background: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
}

/* error */
#formResponse.error {
  display: block;
  background: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}



.page-hero-contact {
  position: relative;
  background-image: url("../img/contact-us.1224aae2fbb2.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 2rem 0rem;
  color: #fff;
  overflow: hidden;
  height: 80vh;
}

.page-hero-contact .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.page-hero-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-hero-contact .page-hero-content {
  position: absolute;
  bottom: 3rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  text-shadow: 0 2px 2px rgb(0, 0, 0);
}

.page-hero-text h1 {
  line-height: 1.3;
}

.page-hero-text p {
  margin: 0;
  line-height: 1.6;
  font-size: 16px;
  width: 100%;
  max-width: 320px;
}

.page-hero-cta a {
  padding: 0.75rem 1.5rem;
  background-color: #d4b401;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  text-shadow: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.335);
}

.sections{
  padding: 2rem 0 4rem;
}

.contact-details-section {
  padding: 2rem 0rem;
}

.contact-details-content {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-details-section .section-line {
  margin: 0;
}

.contact-card {
  display: flex;
  gap: 1rem;
  color: #0b1f3a;
  background-color: #ffffff;
  box-shadow: 0 -6px 20px #1565c029;
  border-radius: 0.5rem;
  padding: 1rem;
  height: 100%;
  transition: all 0.3s ease;
}

.contact-card-icon {
  width: 40px;
  height: 40px;
}

.contact-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-right: 1rem;
}

.contact-card-icon img {
  height: 100%;
}

.contact-card-text span {
  font-weight: 500;
  font-size: 18px;
}
.contact-card-text p {
  margin: 0;
  font-size: 14px;
  font-style: italic;
}

.contact-card-text a {
  text-decoration: none;
  color: #0b1f3a;
  font-size: 12px;
  font-weight: 500;
}

.contact-card-text ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1.5rem;
}
.contact-card-text ul li {
  list-style: circle;
  font-size: 14px;
}

.contact-form-container {
  max-width: 450px;
  border-radius: 0.5rem;
  background-color: #ffffff;
  padding: 2rem 1rem;
  box-shadow: 0 0 8px #00000029;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-title h5 {
  margin: 0;
}

.form-title img {
  width: 35px;
  height: 35px;
}

.contact-form-container p{
  color: #0b1f3a;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

/* Input & Textarea Elements */
.form-control {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #e5e7eb; /* Soft grey border matching the reference screenshot */
  border-radius: 8px;
  box-sizing: border-box;
  outline: none;
  transition: all 0.2s ease-in-out;
}

/* Soft Placeholder Text Styling */
.form-control::placeholder {
  color: #758090; /* Muted slate/grey color */
  opacity: 1;
}

/* Interactive Focus States */
.form-control:focus {
  border-color: #001e3d; /* Highlight border with signature navy when active */
  box-shadow: 0 0 0 3px rgba(0, 30, 61, 0.05);
}

/* Fixed Textarea Height & Polish */
.textarea-control {
  min-height: 120px;
  resize: vertical; /* Allows users to drag scale vertically only */
}

/* Golden/Amber Submit Button */
.btn-submit {
  margin-top: 1rem;
  width: 100%;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background-color: #c48200;
  border: 1px solid #c48200;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.5s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.btn-submit:hover {
  background-color: #0a8f3d;
  border: 1px solid #0a8f3d;
}

.btn-submit:active {
  transform: translateY(1px);
}
