/* ###  START FOOTER ### */
.footer {
  width: 100%;
  background-color: #111;
  overflow: hidden;
}

.footer .container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer .footer-top {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  border-bottom: 1px solid #2e2e2e;
  align-items: center;
}

.footer .footer-top-right {
  display: flex;
  gap: 40px;
  width: 100%;
  justify-content: flex-end;
}

.footer .Contact-Info {
  width: 45%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}

.footer .logo img {
  width: 149px;
}

.footer .social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer .phone {
  padding: 15px 35px;
  border: 2px solid var(--color-accent);
  border-radius: 10px;
  color: var(--color-white);
  text-decoration: none;
}

.footer .login-btn {
  padding: 15px 100px;
  color: var(--color-black);
  background-color: var(--color-accent);
  border-radius: 10px;
  font-weight: 400;
  text-decoration: none;
  border: none;
}

.footer .menu {
  gap: 80px;
  display: flex;
  padding: 20px 0px;
  flex-wrap: wrap;
}

.footer .menu-item {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600px;
  padding: 10px 0;
}

.footer .menu-item.active {
  color: var(--text-main);
  border-bottom: 1px solid var(--color-accent);
}

.footer .copyright {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 20px 0;
  border-top: 1px solid #2e2e2e;
}

.footer .copyright a {
  color: var(--text-main);
}

.footer .copyright span:last-child {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .footer .footer-top-right {
    gap: 20px;
    margin-top: 10px;
  }

  .footer .Contact-Info {
    width: 100%;
  }

  .footer .footer-top-right .social-icons {
    order: 3;
  }
}

@media (max-width: 430px) {
  .footer .Contact-Info {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer .footer-top-right .social-icons {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .footer .menu {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer .copyright {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .footer .copyright a {
    text-decoration: none;
  }
}

/* ###  END FOOTER ### */

.footer-tagline {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 4px;
}
.footer-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-btn {
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  transition: opacity .2s;
}
.footer-btn:hover { opacity: .8; }
.footer-btn-buy {
  background: transparent;
  border: 1px solid rgba(214,255,64,0.3);
  color: #d6ff40;
}
.footer-btn-login {
  background: #d6ff40;
  color: #000;
  border: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-year {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.footer-policy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
}
.footer-policy:hover { color: rgba(255,255,255,0.5); }
.footer .social-icons,
.footer .Contact-Info,
.footer .menu,
.footer .logo img { display: none !important; }

.footer-main {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}
.footer-actions {
  display: flex !important;
  gap: 10px !important;
  width: 100% !important;
}
.footer-btn {
  flex: 1 !important;
  text-align: center !important;
}
