/* ===== FOOTER STYLES ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.justify-content-center {
  justify-content: center;
}

.col-lg-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding: 0 15px;
}

@media (max-width: 991px) {
  .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.footer__area {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.footer__top {
  padding: 120px 0;
}

@media (max-width: 767px) {
  .footer__top {
    padding: 60px 0;
  }
}

.footer__content {
  text-align: center;
}

.footer__content .sub-title {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1;
  color: var(--tg-primary-color);
  border: 1px solid rgba(251, 184, 0, 0.3);
  border-radius: 30px;
  padding: 6px 10px;
  margin-bottom: 20px;
}

.footer__content .title {
  margin-bottom: 50px;
  font-size: 64px;
  font-weight: 800;
  color: var(--tg-color-white-default);
}

@media (max-width: 1199px) {
  .footer__content .title {
    font-size: 54px;
  }
}

@media (max-width: 767px) {
  .footer__content .title {
    font-size: 40px;
    margin-bottom: 30px;
  }
}

.footer__content .title span {
  color: rgba(255, 255, 255, 0.3);
}

.footer__content .team__social-wrap {
  justify-content: center;
}

.footer__logo {
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .footer__logo {
    margin-bottom: 50px;
  }
}

.footer__logo img {
  max-width: 100%;
  height: auto;
}

.footer__bottom {
  border-top: 1px solid rgba(251, 184, 0, 0.2);
  padding: 26px 0;
}

.footer__shape img {
  position: absolute;
  z-index: -1;
  opacity: 0.5;
}

.footer__shape img:nth-child(1) {
  right: 8%;
  top: 16%;
  width: 10%;
  height: auto;
}

@media (max-width: 1800px) {
  .footer__shape img:nth-child(1) {
    right: 4%;
    top: 8%;
  }
}

@media (max-width: 1500px) {
  .footer__shape img:nth-child(1) {
    width: 120px;
  }
}

@media (max-width: 1199px) {
  .footer__shape img:nth-child(1) {
    width: 80px;
  }
}

@media (max-width: 767px) {
  .footer__shape img:nth-child(1) {
    width: 60px;
    top: 15%;
  }
}

.footer__shape img:nth-child(2) {
  bottom: 16%;
  left: 11%;
  width: 10%;
  height: auto;
}

@media (max-width: 1500px) {
  .footer__shape img:nth-child(2) {
    left: 6%;
    width: 120px;
  }
}

@media (max-width: 1199px) {
  .footer__shape img:nth-child(2) {
    width: 80px;
  }
}

@media (max-width: 767px) {
  .footer__shape img:nth-child(2) {
    width: 60px;
    bottom: 75%;
  }
}

.copyright-text {
  text-align: center;
}

.copyright-text p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--tg-text-muted);
}

.copyright-text a {
  color: var(--tg-primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.copyright-text a:hover {
  color: var(--tg-primary-color-2);
}

.team__social-wrap {
  display: flex;
  align-items: center;
  gap: 15px 30px;
  flex-wrap: wrap;
}

.team__social-wrap .title {
  font-size: 14px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.team__social-wrap .list-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.team__social-wrap .list-wrap li a {
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tg-primary-color);
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
}

.team__social-wrap .list-wrap li a:hover {
  transform: translateY(-5px);
  color: var(--tg-primary-color-2);
}

.alltuchtopdown {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
