/* 
* Footer Styles
*/

.footer_area {
  background-color: #1C1C1C;
  padding-top: 60px;
  color: #fff;
  position: relative;
  z-index: 99;
}

.footer_wrap {
  padding-bottom: 60px;
}

.footer-contact-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  gap: 20px;
}

.footer-contact-heading {
  font-family: var(--font-adventure);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  text-align: center;
}

/* Contact Button - styled like subscribe button */
.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-btn-primary-bg);
  color: var(--color-background-dark);
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  height: 60px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-contact:hover {
  background-color: var(--color-btn-primary-hover-bg);
  text-decoration: none;
  color: var(--color-background-dark);
}

.btn-contact svg {
  transition: transform 0.3s ease;
}

.btn-contact:hover svg {
  transform: translateX(4px);
}

.footer_big_link ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer_big_link ul li {
  margin-bottom: 20px;
}

.footer_big_link ul li a {
  font-size: 36px;
  color: #e4e4e4;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer_big_link ul li a:hover {
  opacity: 0.7;
}

.footer_link ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer_link ul h5 {
  font-size: 16px;
  line-height: 29px;
  font-weight:300;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.footer_link ul li {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.footer_link ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  line-height: 29px;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer_link ul li a:hover {
  opacity: 0.7;
}

.footer_link ul li img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer_link ul li:hover img {
  opacity: 1;
  transform: translateX(3px);
}

.footer_link2 {
  margin-left: 15px;
}

.footer_link3 {
  margin-left: 10px;
}

.fullwidth_head {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.copyright_area {
  display: flex;
}

.right_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.right_wrap img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.right_wrap p {
  margin: 0 20px 0 0;
  font-size: 0.85rem;
  color: #fff;
}

.right_wrap a {
  margin: 0 15px;
  font-size: 0.85rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.right_wrap a:hover {
  opacity: 0.7;
}

/* Media queries for responsive design */
@media (max-width: 992px) {
  .footer_area {
    padding-top: 40px;
  }
  
  .footer_wrap {
    padding-bottom: 40px;
  }
  
  .footer-contact-wrapper {
    padding: 30px 0;
  }
}

@media (max-width: 768px) {
  .footer_area {
    padding-top: 30px;
  }
  
  .footer_wrap {
    padding-bottom: 30px;
  }
  
  .footer-contact-wrapper {
    padding: 20px 0;
    gap: 15px;
  }
  
  .footer-contact-heading {
    font-size: 28px;
  }
  
  .btn-contact {
    font-size: 16px;
    padding: 12px 24px;
    height: 56px;
  }
}
  
  .copyright_area {
    justify-content: center;
  }
  
  .right_wrap {
    justify-content: center;
    text-align: center;
  }
  
  .right_wrap a {
    margin: 10px 10px;
  }
  
  .right_wrap p {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
  
  .right_wrap img {
    margin: 0 auto 10px;
    display: block;
  }
} 