
#contact-14 {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}
#contact-14::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 10, 10, 0.75);
  z-index: 1;
}
#contact-14 .container {
  position: relative;
  z-index: 2;
}
#contact-14 .section-header {
  text-align: center;
  margin-bottom: 40px;
}
#contact-14 .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
#contact-14 .section-description {
  font-size: 1.1rem;
  margin-bottom: 0;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#contact-14 .contact-form-overlay {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 35px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}
#contact-14 .form-label {
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #eee;
}
#contact-14 .form-control {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 10px 15px;
  color: #fff;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
#contact-14 .form-control::placeholder {
  color: #ccc;
}
#contact-14 .form-control:focus {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: #c8a45d;
  color: #fff;
  box-shadow: none;
}
#contact-14 .btn-submit-contact {
  background-color: #c8a45d;
  border: none;
  color: #111;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  width: 100%;
}
#contact-14 .btn-submit-contact:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}
#contact-14 .quick-contacts-section {
  text-align: center;
  margin-top: 40px;
}
#contact-14 .quick-contacts-title {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 15px;
  font-weight: 500;
}
#contact-14 .quick-contacts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 25px;
}
#contact-14 .quick-contacts-list li a {
  font-size: 1.5rem;
  color: #ddd;
  transition: color 0.3s ease, transform 0.3s ease;
}
#contact-14 .quick-contacts-list li a:hover {
  color: #c8a45d;
  transform: scale(1.1);
}
#contact-14 .contact-alert {
  display: none;
  margin-top: 15px;
  padding: 10px 15px;
  border-radius: 4px;
  color: #fff;
}
#contact-14 .contact-alert.success {
  background-color: rgba(40, 167, 69, 0.8);
  border: 1px solid rgba(40, 167, 69, 0.9);
}
#contact-14 .contact-alert.error {
  background-color: rgba(220, 53, 69, 0.8);
  border: 1px solid rgba(220, 53, 69, 0.9);
}
@media (max-width: 767.98px) {
  #contact-14 {
    padding: 60px 0;
  }
  #contact-14 .section-title {
    font-size: 2.2rem;
  }
  #contact-14 .contact-form-overlay {
    padding: 25px;
  }
}


