/* Footer */
.footer {
  width: 100%;
  background-color: #ebebeb;
  padding: 50px 0 50px;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  padding: 0 5% 0 13%;
}

.footer-col {
  width: 380px;
}

.footer-accordion-body {
  display: flex;
  white-space: nowrap;

  gap: 2.5rem;
}

.footer-col-grid {
  display: flex;
  gap: 45px;
}

.footer-col-left {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.footer-link {
  font-family: var(--font-body);
  font-size: 13px;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #111;
  text-decoration: underline;
}

/* Footer bottom */
.footer-bottom {
  width: 100%;
  background-color: #d0cfcf;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 12px;
  color: #555;
  padding-left: 13.2%;
}

.footer-top-btn {
  background-color: #df532a;
  border: none;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  padding: 0 32px;
  height: 100%;
  letter-spacing: 0.04em;
  transition: background-color 0.2s;
}

.footer-top-btn:hover {
  background-color: #c4471f;
}
.footer-col-social {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 60px;
  border-left: 1px solid #ccc;
}

.footer-social-heading {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #555;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #c0bfbf;
  transition: background-color 0.2s;
}

.footer-social-link:hover {
  background-color: #df532a;
}

.footer-social-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

@media (max-width: 990px) {
  .footer {
    padding: 50px 0 55px;
  }
  .footer-col {
    padding-left: 2%;
    width: 250px;
  }
  .footer-col-grid {
    gap: 20px;
  }
  .footer-links {
    padding-left: 8%;
  }
  .footer-copyright {
    padding-left: 8%;
  }
  .footer-col-social {
    padding-left: 30px;
  }
}

@media (max-width: 770px) {
  .footer {
    padding: 70px 30px 5px 20px;
  }
  .footer-links {
    flex-direction: column;
    padding: 0;
    width: 100%;
  }
  .footer-col {
    flex: none;
    width: 100%;
    padding: 0;
  }
  .footer-accordion-body {
    display: flex;
    margin-bottom: 1rem;
  }
  .footer-col-grid {
    display: flex;
    padding: 12px 1% 20px;
  }
  .footer-col-left {
    display: flex;
    padding: 12px 4% 20px;
    flex-direction: column;
    gap: 14px;
    padding-top: 1rem;
  }
  .footer-copyright {
    padding-left: 5%;
  }
  .footer-col-social {
    padding-left: 4%;
    border-left: none;
    border-top: 1px solid #ccc;
    padding-top: 24px;
    margin-top: 8px;
    margin-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .footer-copyright {
    padding-left: 4%;
    font-size: 11px;
  }
  .footer-top-btn {
    padding: 0 20px;
    font-size: 12px;
  }
}
