

/* Contact Section */
.contact-section {
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  max-width: 500px;
}

.contact-info p {
  margin-bottom: 30px;
  line-height: 1.8;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 151, 181, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: rotateY(180deg);
}

.info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.info-content p {
  margin-bottom: 0;
  color: #555;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-color);
  position: relative;
  padding: 80px 0;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a97b5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Enhanced FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  background-color: var(--white);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark-color);
  transition: color 0.3s ease;
  padding-right: 40px;
}

.faq-toggle {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(26, 151, 181, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.faq-toggle i {
  color: var(--primary-color);
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 25px;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

/* Active state styling */
.faq-item.active {
  box-shadow: 0 10px 40px rgba(26, 151, 181, 0.1);
  border-color: rgba(26, 151, 181, 0.1);
}


.faq-item.active .faq-question h3 {
  color: var(--primary-color);
}

.faq-item.active .faq-toggle {
  background-color: var(--primary-color);
  transform: translateY(-50%) rotate(135deg);
}

.faq-item.active .faq-toggle i {
  color: white;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  opacity: 1;
  padding-top: 20px;
}

/* Section header styling */
.faq-section .section-header {
  margin-bottom: 50px;
}

.faq-section .section-title {
  color: var(--dark-color);
  font-size: 2.2rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.faq-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

.faq-section .section-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    max-width: 100%;
  }

  .faq-section {
    padding: 60px 0;
  }

  .faq-section .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-toggle {
    right: 20px;
    width: 30px;
    height: 30px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-answer p {
    padding-bottom: 20px;
  }

  .faq-section .section-title {
    font-size: 1.6rem;
  }

  .faq-section .section-subtitle {
    font-size: 1rem;
  }
}

