/* =========================================================
   BCSTEP CONTACT SECTION
   Pure HTML + CSS
   ========================================================= */

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
  background: linear-gradient(180deg, #effcf9 0%, #ffffff 48%, #effbf7 100%);
  color: #0f172a;
}

/* -- Background Glows -- */
.contact-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(120px);
}
.contact-glow-left {
  top: -160px;
  left: -160px;
  width: 500px;
  height: 500px;
  background: rgba(16, 185, 129, 0.16);
}
.contact-glow-right {
  right: -80px;
  bottom: -100px;
  width: 450px;
  height: 450px;
  background: rgba(20, 184, 166, 0.12);
  filter: blur(140px);
}

/* -- Container -- */
.contact-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* -- Header -- */
.contact-header {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}
.contact-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 14px;
  border: 1px solid #a7ead5;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: #047857;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.contact-header h2 {
  margin: 20px 0 0;
  color: #0f172a;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.contact-header h2 span {
  color: #059669;
}
.contact-header p {
  max-width: 650px;
  margin: 14px auto 0;
  color: #475569;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

/* -- Main Grid -- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

/* -- Form Card -- */
.contact-form-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  padding: 32px;
  box-shadow: 0 20px 70px -25px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.contact-card-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(236, 253, 245, 0.18));
}
.contact-form {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* -- Form Heading -- */
.form-heading {
  margin-bottom: 2px;
}
.form-heading h3 {
  margin: 0;
  color: #0f172a;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
.form-heading p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

/* -- Form Row -- */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* -- Inputs -- */
.form-field {
  width: 100%;
}
.form-field input,
.form-field textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(203, 213, 225, 0.65);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.72);
  color: #0f172a;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.form-field input {
  height: 42px;
  padding: 0 14px;
}
.form-field textarea {
  min-height: 108px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.55;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #94a3b8;
}
.form-field input:hover,
.form-field textarea:hover {
  border-color: rgba(148, 163, 184, 0.8);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: #10b981;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.08), 0 8px 25px rgba(15, 23, 42, 0.05);
}

/* -- Submit Button -- */
.request-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  margin-top: 2px;
  padding: 0 26px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(90deg, #10b981 0%, #047857 100%);
  color: #ffffff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.request-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(5, 150, 105, 0.24);
}
.request-button:active {
  transform: translateY(0);
}
.button-arrow {
  margin-left: 8px;
  font-size: 17px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.request-button:hover .button-arrow {
  transform: translateX(4px);
}

/* -- Contact Details -- */
.contact-details {
  padding-top: 2px;
}
.details-heading {
  margin-bottom: 24px;
}
.details-heading h3 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
.details-heading p {
  max-width: 500px;
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
}

/* -- Details List -- */
.details-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* -- Detail Card -- */
.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 74px;
  box-sizing: border-box;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 5px 18px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.contact-detail-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09);
}

/* -- Detail Icon -- */
.detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #059669;
  color: #ffffff;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
}
.detail-icon svg {
  width: 18px;
  height: 18px;
}

/* -- Detail Content -- */
.detail-content {
  min-width: 0;
  padding-top: 1px;
}
.detail-content h4 {
  margin: 0 0 3px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}
.detail-content p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
  word-break: break-word;
}

/* =========================================================
   BCSTEP FAQ SECTION
   ========================================================= */

.faq-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
  background: #ffffff;
}

/* -- FAQ Glows -- */
.faq-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}
.faq-glow-left {
  top: -128px;
  left: -128px;
  width: 400px;
  height: 400px;
  background: rgba(16, 185, 129, 0.12);
  filter: blur(120px);
}
.faq-glow-right {
  top: 33%;
  right: -160px;
  width: 500px;
  height: 500px;
  background: rgba(20, 184, 166, 0.08);
  filter: blur(140px);
}
.faq-glow-bottom {
  bottom: -80px;
  left: 50%;
  width: 350px;
  height: 350px;
  background: rgba(16, 185, 129, 0.07);
  transform: translateX(-50%);
  filter: blur(120px);
}

/* -- FAQ Header -- */
.faq-header {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 14px;
  border: 1px solid #a7ead5;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}
.faq-header h2 {
  margin: 20px 0 0;
  color: #0f172a;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.faq-header h2 span {
  color: #059669;
}
.faq-header p {
  max-width: 700px;
  margin: 14px auto 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
}

/* -- Accordion -- */
.bcstep-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bcstep-accordion .accordion-item {
  overflow: hidden;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  background: #f8fafc;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.bcstep-accordion .accordion-item:hover {
  border-color: #d5e9e2 !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

/* -- Accordion Button -- */
.bcstep-accordion .accordion-button {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 20px 24px;
  border: 0;
  background: #f8fafc;
  color: #0f172a;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  box-shadow: none !important;
}
.bcstep-accordion .accordion-button:hover {
  color: #059669;
}
.bcstep-accordion .accordion-button:not(.collapsed) {
  background: #f8fafc;
  color: #059669;
}
.bcstep-accordion .accordion-button::after {
  display: none; /* Remove Bootstrap default arrow */
}

/* -- Question Text -- */
.faq-question-text {
  flex: 1;
  padding-right: 20px;
}

/* -- Custom Icon -- */
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: #64748b;
  transition: transform 0.3s ease, color 0.3s ease;
}
.faq-icon svg {
  width: 18px;
  height: 18px;
}
.bcstep-accordion .accordion-button:not(.collapsed) .faq-icon {
  color: #059669;
  transform: rotate(180deg);
}

/* -- Answer -- */
.bcstep-accordion .accordion-collapse {
  background: #f8fafc;
}
.bcstep-accordion .accordion-body {
  padding: 0 24px 22px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
}

/* -- Image -- */
.faq-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.faq-image {
  display: block;
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(15, 23, 42, 0.08));
  transition: transform 0.4s ease;
}
.faq-image:hover {
  transform: translateY(-5px);
}

/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */

/* Tablet */
@media (max-width: 991.98px) {
  .faq-section {
    padding-top: 70px;
  }
  .faq-header {
    margin-bottom: 45px;
  }
  .faq-image-wrapper {
    margin-top: 10px;
  }
  .faq-image {
    max-width: 380px;
  }
}

@media (max-width: 900px) {
  .contact-section {
    padding: 70px 22px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-details {
    padding-top: 0;
  }
  .details-heading p {
    max-width: 650px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .contact-section {
    padding: 56px 16px;
  }
  .contact-header {
    margin-bottom: 40px;
  }
  .contact-header h2 {
    margin-top: 16px;
    font-size: 28px;
    letter-spacing: -0.02em;
  }
  .contact-header p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.65;
  }
  .contact-form-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
  .contact-form {
    gap: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .form-field input {
    height: 44px;
  }
  .form-field textarea {
    min-height: 120px;
  }
  .request-button {
    width: 100%;
  }
  .details-heading {
    margin-bottom: 20px;
  }
  .details-heading h3 {
    font-size: 18px;
  }
  .details-heading p {
    font-size: 13px;
  }
  .contact-detail-card {
    padding: 16px;
    border-radius: 18px;
  }
  .detail-icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }
  .detail-content p {
    font-size: 12.5px;
  }
  .contact-glow-left {
    width: 320px;
    height: 320px;
    top: -100px;
    left: -150px;
  }
  .contact-glow-right {
    width: 300px;
    height: 300px;
    right: -150px;
    bottom: -100px;
  }
}

@media (max-width: 575.98px) {
  .faq-section {
    padding-top: 55px;
  }
  .faq-header {
    margin-bottom: 35px;
    padding: 0 10px;
  }
  .faq-header h2 {
    margin-top: 16px;
    font-size: 28px;
  }
  .faq-header p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.65;
  }
  .faq-badge {
    font-size: 12px;
  }
  .bcstep-accordion {
    gap: 10px;
  }
  .bcstep-accordion .accordion-item {
    border-radius: 14px !important;
  }
  .bcstep-accordion .accordion-button {
    min-height: 62px;
    padding: 17px 18px;
    font-size: 13px;
  }
  .faq-question-text {
    padding-right: 15px;
  }
  .bcstep-accordion .accordion-body {
    padding: 0 18px 18px;
    font-size: 13px;
    line-height: 1.7;
  }
  .faq-image {
    max-width: 320px;
  }
  .faq-glow-left {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -150px;
  }
  .faq-glow-right {
    width: 300px;
    height: 300px;
    right: -150px;
  }
  .faq-glow-bottom {
    width: 250px;
    height: 250px;
  }
}

/* Very small mobile */
@media (max-width: 380px) {
  .contact-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .contact-header h2 {
    font-size: 25px;
  }
  .contact-form-card {
    padding: 20px 15px;
  }
  .contact-detail-card {
    gap: 11px;
  }
}