/* FAQ Page Styles */

.faq-wrapper {
  padding-top: 120px; /* Below navbar */
  background: #f8fafc;
  overflow-x: hidden;
}

.f-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Contact Section (Top) */

.contact-section {
  display: flex;
  gap: 60px;
  padding: 60px 0;
  align-items: center;
}

.contact-text {
  flex: 1;
}

.contact-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 24px;
  line-height: 1.2;
}

.contact-text h1 span {
  color: #2563eb;
}

.contact-text p {
  font-size: 1.15rem;
  color: #64748b;
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-features {
  list-style: none;
}

.contact-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #475569;
  font-size: 1.05rem;
}

.contact-features li i {
  color: #2563eb;
  font-size: 1.2rem;
}

.contact-form-box {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
}

.form-group label span {
  color: #ef4444;
}

.form-control {
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  color: #1e293b;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.phone-input {
  display: flex;
  gap: 10px;
}

.phone-prefix {
  width: 80px;
  text-align: center;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.form-disclaimer {
  font-size: 0.8rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 16px;
}

/* FAQ Section (Bottom) */

.faq-section {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
}

.faq-header p {
  font-size: 1.15rem;
  color: #64748b;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  background: #fff;
  border-color: #cbd5e1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #1e293b;
}

.faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e2e8f0;
  border-radius: 8px;
  color: #475569;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  background: #2563eb;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
  color: #475569;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding-bottom: 24px;
}

.faq-answer ul {
  padding-left: 20px;
  margin-top: 10px;
}

.faq-answer li {
  margin-bottom: 6px;
}

/* Need Help App CTA */

.faq-cta-app {
  text-align: center;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #e2e8f0;
}

.faq-cta-app h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 20px;
}

.faq-cta-app a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-cta-app a:hover {
  transform: translateY(-2px);
}

.faq-cta-app a img {
  width: 200px;
}

.faq-cta-app p {
  padding: 4px 0;
  font-size: 1.5rem;
  color: #475569;
}

@media (width <= 992px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-text h1 {
    font-size: 2.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (width <= 992px) {
  .hero {
    padding: 150px 0 100px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (width <= 768px) {
  .floating-element {
    display: none;
  }

  .clients-bar {
    margin-top: 40px;
    padding: 30px;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    display: none;
  }
}

@media (width <= 576px) {
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .switch-track {
    width: 100%;
  }

  .switch-option {
    width: 50%;
    justify-content: center;
    padding: 12px 10px;
  }

  .slider-track {
    width: 100%;
  }

  .slider-button {
    width: 50%;
    justify-content: center;
    padding: 12px 10px;
  }

  .toggle-container {
    width: 100%;
  }

  .toggle-option {
    width: 50%;
    justify-content: center;
    min-width: auto;
    padding: 12px 10px;
  }

  .toggle-highlighter {
    width: 50%;
  }

  .testimonial-switcher {
    flex-direction: column;
  }

  .contact-form-box {
    width: 100%;
    padding: 16px;
  }

  .contact-form-box form {
    flex-direction: column;
  }

  .contact-form-box form .form-grid {
    grid-template-columns: 1fr;
  }
}
