footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 80px 0 20px;
}

.copy-text:hover {
  color: aqua;
  cursor: pointer;
}

.no-hover:hover {
  color: #aaa;
  cursor: default;
}
.social-icons {
  padding-top: 1em;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.footer-logo-mark {
  width: 64px;
  height: 64px;
  padding: 6px;
  border-radius: 12px;
  background: #080b10;
  border: 1px solid rgba(51, 214, 197, 0.45);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
}

.footer-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(250px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 45px;
  margin-bottom: 50px;
  padding: 0 24px;
}

.footer-brand-text h2 {
  font-size: 34px;
  margin-bottom: 3px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.footer-brand-text p {
  color: #b8c4d5;
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-text-links p {
  color: #d0d7e2;
  font-size: 18px;
  max-width: 340px;
}

.footer-logo p {
  margin-bottom: 20px;
  color: #aaa;
}

.footer-links li {
  color: #aaa;
}

.footer-links h3 {
  font-size: 28px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  line-height: 1.1;
  white-space: nowrap;
}

.footer-links h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #aaa;
  transition: var(--transition);
  font-size: 16px;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-newsletter p {
  color: #aaa;
  margin-bottom: 20px;
}

.footer-newsletter form {
  display: flex;
}

.footer-newsletter input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-family: "Montserrat", sans-serif;
}

.footer-newsletter button {
  border-radius: 0 5px 5px 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #b4bfce;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

@media (max-width: 1150px) {
  .footer-content {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .footer-logo-mark {
    width: 56px;
    height: 56px;
  }

  .footer-brand-text h2 {
    font-size: 26px;
  }

  .footer-brand-text p {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .footer-links h3 {
    font-size: 22px;
  }

  .footer-links ul li a,
  .footer-text-links p {
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .footer-content {
    padding: 0 16px;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter input {
    border-radius: 5px;
    margin-bottom: 10px;
  }

  .footer-newsletter button {
    border-radius: 5px;
    width: 100%;
  }
}
