/* contact.css - Styles specific to the contact page */

/* Contact Info Section */
.contact-info {
  padding: 80px 0 40px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.contact-details h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  color: var(--text-dark);
}

.contact-details h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.contact-details p {
  margin-bottom: 25px;
  color: var(--text-medium);
  line-height: 1.6;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  min-width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-right: 15px;
}

.contact-info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.contact-info-content p, 
.contact-info-content a {
  color: var(--text-medium);
  transition: all 0.3s ease;
}

.contact-info-content a:hover {
  color: var(--primary-color);
}

/* Contact FAQ Section */
.contact-faq {
  padding: 60px 0 80px;
  background-color: var(--bg-light);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 15px;
  text-align: center;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-medium);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-question i {
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  color: var(--primary-color);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

.faq-answer p {
  color: var(--text-medium);
  line-height: 1.6;
}

/* New Footer Design */
.new-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 10%;
}

.footer-brand h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-white);
}

.footer-brand span {
  color: var(--primary-light);
}

.footer-brand p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-light);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: var(--text-light);
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-light);
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

.delay-5 {
  animation-delay: 1s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .contact-details h2 {
    font-size: 1.6rem;
  }
  
  .faq-question {
    font-size: 1rem;
  }
  
  .footer-container {
    padding: 40px 5%;
  }
}