
#hero-18 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 68vh;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  text-align: right;
}
#hero-18 .hero-overlay-18 {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#hero-18 .container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
#hero-18 .hero-content-wrapper-18 {
  max-width: 680px;
  margin-right: 0;
  margin-left: auto;
}
#hero-18 .hero-title-18 {
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-18 .hero-subtitle-18 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-18 .hero-cta-button-18 {
  display: inline-block;
  padding: 0.8rem 2.1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}
#hero-18 .hero-cta-button-18:hover {
  transform: translateY(-2px);
  filter: brightness(110%);
}
@media (max-width: 767.98px) {
  #hero-18 {
    min-height: 60vh;
    padding: 4rem 0;
    text-align: center;
    justify-content: center;
  }
  #hero-18 .container {
    justify-content: center;
  }
  #hero-18 .hero-content-wrapper-18 {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  #hero-18 .hero-title-18 {
    font-size: 2.4rem;
  }
  #hero-18 .hero-subtitle-18 {
    font-size: 1.1rem;
  }
}



#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;
  }
}



#faq-1 {
  padding: 60px 0;
  background-color: #f8f9fa;
}
#faq-1 .faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
#faq-1 .faq-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#faq-1 .accordion-button {
  background-color: #17a2b8;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 15px;
  font-size: 16px;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s;
}
#faq-1 .accordion-button:hover {
  background-color: #138496;
}
#faq-1 .accordion-body {
  padding: 20px;
  background-color: #ffffff;
  border-left: 2px solid #17a2b8;
}



#call-to-action-19 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.cta-features-intro h2 {
  font-weight: 700;
  color: #212529;
}
.cta-features-intro p {
  color: #6c757d;
  font-size: 1.1rem;
}
.cta-features-list {
}
.cta-feature-item {
  padding: 1rem;
}
.cta-feature-icon i {
  margin-bottom: 1rem;
}
.cta-feature-title {
  font-weight: 600;
  color: #343a40;
}
.cta-feature-description {
  color: #6c757d;
  font-size: 0.9rem;
}
.cta-features-button .btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta-features-button .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.cta-features-button .btn i {
  margin-left: 8px;
}


