.footer-destination {
  background-color: rgba(170, 132, 83, 0.1);
}

.footer-destination .destination-link {
  text-decoration: none;
  color: #121212;
  transition: color 0.3s ease;
  display: block;
  text-align: center;
}

.footer-destination .destination-link:hover {
  color: var(--tts-buttton-bg);
}

.footer-area {
  background-color: #1c1c1e;
  color: #fff;
}

/* .footer-bg {
  background-color: #2a2a2d;
} */

/* Footer Top */
.footer-top {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top img {
  max-width: 115px;
}

.social-icon .social-link {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

.social-link li a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  transition: color 0.3s ease;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  border-radius: 50%;
}

.social-link li a:hover {
  background-color: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt);
  border: 1px solid var(--tts-buttton-bg);
}

/* Footer Middle */
.footer-middle {
  padding: 30px 0 0px 0;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-widget h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}

.footer-list,
.footer-list-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li,
.footer-list-contact li {
  margin-bottom: 10px;
  color: #ccc;
  font-size: 14px;
}

.footer-list li a,
.footer-list-contact li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-list li a:hover,
.footer-list-contact li a:hover {
  color: var(--tts-buttton-bg);
}

.footer-list-contact i {
  margin-right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt);
  font-size: 14px;
  transition: color 0.3s ease;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}

.footer-bottom {
  background-color: #19191b;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #aaa;
  font-size: 14px;
}

.footer-form input[type="email"] {
  border: none;
  padding: 10px;
  flex-grow: 1;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.footer-form button {
  border: none;
  background-color: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt);
  padding: 10px 20px;
  border-radius: 0 4px 4px 0;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {

  .footer-top,
  .footer-bottom {
    text-align: center;
  }

  .social-icon .social-link {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-form button, .footer-form input[type="email"]{
    font-size: 14px;
  }

  .footer-widget {
    margin-bottom: 30px;
  }

  .footer-widget h3 {
    font-size: 18px;
  }

  .footer-list li,
  .footer-list-contact li {
    font-size: 13px;
  }

  .social-link li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
  }

  .footer-bottom p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-list li a,
  .footer-list-contact li a {
    font-size: 13px;
  }

  .footer-list-contact i {
    display: none;
  }
}