@import url("./config.css");

.site-footer {
  background: linear-gradient(135deg, #061b2b, #082f3d);
  color: #ffffff;
  padding: 55px 0 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  width: min(1180px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: 60px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 22px;
}

.footer-brand p {
  color: #d7e3e8;
  line-height: 1.7;
  font-size: 15px;
  max-width: 330px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
  font-size: 15px;
}
.footer-contact span,
.footer-contact i {
  color: white;
}
.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: #00c2b8;
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.footer-links h4 {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 22px;
}

.footer-links a {
  display: block;
  color: #e6e6e6;
  text-decoration: none;
  margin-bottom: 15px;
  font-size: 15px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #00c2b8;
  padding-left: 5px;
}

.footer-bottom {
  width: min(1180px, 92%);
  margin: 45px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: 1fr auto 1.4fr;
  gap: 35px;
  align-items: center;
}

.footer-bottom p {
  color: #d7e3e8;
  font-size: 14px;
}

.footer-bottom strong {
  color: var(--primary-color);
  font-size: 18px;
}

.footer-tax {
  border: 1px solid rgba(0, 194, 184, 0.5);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.tax-box {
  background: #ffffff;
  color: var(--primary-color);
  font-weight: 800;
  padding: 18px 12px;
  border-radius: 8px;
  min-width: 85px;
  text-align: center;
}

.footer-tax p {
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-tax {
    max-width: 520px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-top: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-tax {
    flex-direction: column;
    align-items: flex-start;
  }
}
