
#hero-11 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 65vh;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  text-align: left;
  color: #ffffff;
  --hero-overlay-color: rgba(0, 0, 0, 0.5);
}
#hero-11::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
}
#hero-11 .container {
  position: relative;
  z-index: 2;
}
#hero-11 .hero-content-wrapper-11 {
  max-width: 650px;
  margin-left: 0;
  margin-right: auto;
}
#hero-11 .hero-title-11 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-11 .hero-subtitle-11 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-11 .hero-cta-button-11 {
  display: inline-block;
  padding: 0.8rem 2.1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
}
#hero-11 .hero-cta-button-11:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) {
  #hero-11 {
    min-height: 60vh;
    padding: 4rem 0;
    text-align: center;
    justify-content: center;
  }
  #hero-11 .hero-content-wrapper-11 {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  #hero-11 .hero-title-11 {
    font-size: 2.4rem;
  }
  #hero-11 .hero-subtitle-11 {
    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-24 {
  padding: 60px 0;
  background-color: #fff;
}
#faq-24 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2rem;
}
#faq-24 .faq-tabs-nav {
  margin-bottom: 2.5rem;
  border-bottom-color: #dee2e6;
  justify-content: center;
}
#faq-24 .faq-tabs-nav .nav-link {
  color: #495057;
  background-color: transparent;
  border-color: transparent transparent #dee2e6;
  border-bottom-width: 2px;
  padding: 0.8rem 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
#faq-24 .faq-tabs-nav .nav-link i {
  font-size: 1.1em;
  opacity: 0.7;
}
#faq-24 .faq-tabs-nav .nav-link:hover {
  color: #0d6efd;
  border-color: transparent transparent #adb5bd;
}
#faq-24 .faq-tabs-nav .nav-link.active {
  color: #0d6efd;
  font-weight: 600;
  background-color: transparent;
  border-color: transparent transparent #0d6efd;
}
#faq-24 .faq-tabs-nav .nav-link.active i {
  opacity: 1;
}
#faq-24 .faq-pills-nav {
  margin-bottom: 2.5rem;
  justify-content: center;
}
#faq-24 .faq-pills-nav .nav-link {
  color: #495057;
  background-color: #e9ecef;
  border: none;
  border-radius: 50rem;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0.3rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}
#faq-24 .faq-pills-nav .nav-link i {
  font-size: 1.1em;
  opacity: 0.7;
}
#faq-24 .faq-pills-nav .nav-link:hover {
  background-color: #dee2e6;
  color: #000;
}
#faq-24 .faq-pills-nav .nav-link.active {
  color: #fff;
  font-weight: 600;
  background-color: #0d6efd;
}
#faq-24 .faq-pills-nav .nav-link.active i {
  opacity: 1;
}
#faq-24 .tab-content {
}
#faq-24 .tab-pane .faq-item-in-tab {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed #eee;
}
#faq-24 .tab-pane .faq-item-in-tab:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
#faq-24 .faq-question-in-tab {
  font-weight: 600;
  font-size: 1.1rem;
  color: #343a40;
  margin-bottom: 0.5rem;
}
#faq-24 .faq-answer-in-tab {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 0;
}



#call-to-action-8 {
  background-color: #17a2b8;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}
#call-to-action-8 h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}
#call-to-action-8 p {
  font-size: 18px;
  margin-bottom: 30px;
}
#call-to-action-8 .cta-btn {
  padding: 12px 30px;
  background-color: #fff;
  color: #17a2b8;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
#call-to-action-8 .cta-btn:hover {
  background-color: #e2e6ea;
  color: #17a2b8;
}
@media (max-width: 767.98px) {
  #call-to-action-8 h2 {
    font-size: 28px;
  }
  #call-to-action-8 p {
    font-size: 16px;
  }
}


