/* Contact Page Styles */

.contact-section {
  background-color: #f9f9f9;
  /* Light gray background suggested by design image context or clean default */
  font-family: 'Inter', sans-serif;
  /* Assuming Inter or similar */
}

/* Left Column */
.contact-left-content {
  padding-right: 2rem;
}

.icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(13, 110, 253, 0.1);
  /* Light primary color bg */
  border-radius: 8px;
  color: #0d6efd;
}

.contact-details h6 {
  font-size: 0.9rem;
  color: #000;
}

.contact-details p,
.contact-details a {
  font-size: 0.9rem;
  color: #6c757d;
}

.social-links .social-icon {
  margin-right: 10px;
  color: #333;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-links .social-icon:hover {
  color: #0d6efd;
}

/* Right Column Form */
.contact-form-wrapper {
  background-color: #fff;
  width: 100% !important;
  /* Form usually on white if section is grey, or transparent */
}

.form-control {
  background-color: #f8f9fa;
  border: 1px solid #eee;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  border-radius: 8px;
}

.form-control:focus {
  background-color: #fff;
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.form-label {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #555;
}

/* Services Checkboxes */
.services-audit .form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-black {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-black:hover {
  background-color: #333;
  border-color: #333;
  color: #fff;
}


/* FAQ Section */
.faq-section {
  background-color: #fcfcfc;
}

.serif-font {
  font-family: "Playfair Display", serif;
  /* Or similar serif font */
}

.faq-list {
  border-top: 1px solid #eee;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 1.5rem 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #999;
  user-select: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  /* Adjust as needed */
  opacity: 1;
  margin-top: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-form-wrapper {
    padding-left: 0 !important;
    margin-top: 3rem;
  }
}