/* Contact Page Specific Styles */
.contact-page .contact-section,
.contact-section.contact-page-section {
  display: block;
  background: transparent;
  width: 100%;
}

/* Common Kicker Line */
.contact-section .kicker-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #43b05c;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.contact-section .kicker-line .pipe {
  color: #43b05c;
  font-weight: 800;
  font-size: 1.1rem;
}

/* ----------------------------------------------------
   1. Top Contact Info Cards Wrapper
---------------------------------------------------- */
.contact-info-wrapper {
  background-color: #f7f9fb;
  padding: clamp(48px, 6vw, 20px) 0;
  border-bottom: 1px solid #edf2f7;
}

.contact-info-card {
  padding: 10px;
}

.contact-info-card .info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #43b05c;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(67, 176, 92, 0.2);
}

.contact-info-card .info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.contact-info-card .info-text {
  font-size: 0.925rem;
  color: #666666;
  line-height: 1.65;
  margin: 0;
  max-width: 340px;
}

.contact-info-card .info-text a {
  color: #666666;
  transition: color 0.25s ease;
}

.contact-info-card .info-text a:hover {
  color: #43b05c;
}

/* ----------------------------------------------------
   2. Main Certification & Form Wrapper
---------------------------------------------------- */
.contact-form-wrapper {
  background-color: #ffffff;
  padding: clamp(60px, 8vw, 110px) 0;
}

.cert-left-content {
  padding-right: clamp(0px, 3vw, 40px);
}

.cert-headline {
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: #0d0d0d;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.cert-subtext {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2b2b2b;
  line-height: 1.5;
  margin-bottom: 24px;
}

.cert-desc {
  font-size: 0.925rem;
  color: #777777;
  line-height: 1.85;
  margin: 0;
}

/* Underline Form Styling */
.contact-form {
  padding-top: 10px;
}

.form-group-underline {
  position: relative;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-label-custom {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: 110px;
}

.form-control-underline {
  flex: 1;
  width: 100%;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  background: transparent;
  border-radius: 0;
  padding: 8px 0 10px 0;
  font-size: 1rem;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control-underline:focus {
  border-bottom-color: #43b05c;
}

.form-control-underline::placeholder {
  color: #aaa;
}

.btn-contact-submit {
  background-color: #43b05c;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 13px 56px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: 10px;
}

.btn-contact-submit:hover {
  background-color: #38974e;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(67, 176, 92, 0.3);
}

/* ----------------------------------------------------
   3. FAQ Accordion Wrapper
---------------------------------------------------- */
.contact-faq-wrapper {
  background-color: #f7f9fb;
  padding: clamp(60px, 8vw, 110px) 0;
}

.faq-header {
  margin-bottom: 40px;
}

.faq-headline {
  font-size: clamp(2.5rem, 4.2vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: #0d0d0d;
  margin: 0;
  text-transform: uppercase;
}

.faq-accordion-list {
  border-top: 1px solid #e0e0e0;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.25s ease;
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-trigger-title {
  display: flex;
  align-items: center;
  gap: 28px;
}

.faq-num {
  font-size: 1.65rem;
  font-weight: 800;
  color: #1a1a1a;
  min-width: 55px;
}

.faq-title-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
}

.faq-arrow-icon {
  font-size: 1.35rem;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-arrow-icon {
  color: #43b05c;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  opacity: 0;
}

.faq-item.active .faq-content {
  max-height: 300px;
  opacity: 1;
}

.faq-content-inner {
  padding: 0 0 32px 83px;
  color: #666666;
  font-size: 0.94rem;
  line-height: 1.85;
  max-width: 900px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .cert-left-content {
    padding-right: 0;
  }
}

@media (max-width: 767.98px) {
  .faq-trigger-title {
    gap: 16px;
  }

  .faq-num {
    font-size: 1.3rem;
    min-width: 42px;
  }

  .faq-title-text {
    font-size: 1.08rem;
  }

  .faq-content-inner {
    padding-left: 58px;
    font-size: 0.88rem;
  }

  .btn-contact-submit {
    width: 100%;
    text-align: center;
  }
  .contact-info-wrapper{padding: 20px 0}
  .contact-info-wrapper .g-4{--bs-gutter-y:0!important;}

  .form-group-underline{margin-bottom: 5px}
  .contact-form-wrapper{padding: 10px 0}
  .contact-form-wrapper .row { row-gap:0!important;}
  .cert-desc{line-height: 1.6;display: none}
  .contact-form-wrapper .gy-5{--bs-gutter-y:0!important;}
}

@media (max-width: 575.98px) {
  .form-group-underline {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .form-label-custom {
    min-width: auto;
  }
}

