/* Footer Base */
.footer {
  background: #FF7A00;
  padding: 44px 50px;
}

.footer-content {
  display: flex;
  gap: 90px;
  max-width: 1920px;
  margin: 0 auto;
  align-items: flex-start;
}

.footer-brand {
  display: grid;
  align-items: center;
  gap: 26px;
}

.footer-logo {
  width: 84px;
  height: 84px;
  object-fit: stretch;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20.16px;
  color: #7C0C0C;
  margin: 0;
}

.footer-contact p a {
  color: inherit;
  text-decoration: none;
}

.footer-contact p a:hover {
  color: #d9534f;
  text-decoration: underline;
}

.footer-contact p:first-child {
  color: #7C0C0C;
}

.footer-contact p:not(:first-child) {
  color: #4B0A0A;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-column h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20.16px;
  color: #fff;
  margin: 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-column ul li a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #4B0A0A;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  opacity: 1;
  color: #7C0C0C;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 300px;
}

.footer-address h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20.16px;
  color: #fff;
  margin: 0;
}

.footer-address p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #4B0A0A;
  margin: 0;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 316px;
}

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}

.footer-legal a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17.64px;
  color: #4B0A0A;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #7C0C0C;
}

.footer-legal span {
  color: #4B0A0A;
  font-size: 14px;
}

.copyright {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17.64px;
  color: #4B0A0A;
  margin: 0;
  padding: 8px 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding: 10px 0;
  border-top: 1px solid #444;
  font-size: 18px;
  color: #aaa;
}

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

.social-icons a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a svg {
  width: 22px;
  height: 22px;
  fill: black;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #7C0C0C;
}

.social-icons a:hover svg {
  fill: white;
}

/* Responsive */

/* Large Tablets / Small Laptops */
@media (max-width: 1200px) {
  .footer-content {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-links {
    gap: 40px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }

  .footer-brand {
    text-align: center;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    gap: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-column,
  .footer-address,
  .footer-contact {
    align-items: start;
  }

  .footer-social {
    align-items: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .footer {
    padding: 30px 15px;
  }

  .footer-content {
    gap: 35px;
  }

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

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

  .footer-column h4,
  .footer-address h4 {
    font-size: 14px;
  }

  .footer-column ul li a,
  .footer-contact p,
  .footer-address p {
    font-size: 14px;
  }

  .footer-social {
    gap: 12px;
  }

  .footer-legal {
    font-size: 12px;
  }
}

/* Extra Small Mobile (≤400px) */
@media (max-width: 400px) {
  .footer {
    padding: 20px 10px;
  }

  .footer-column h4,
  .footer-address h4 {
    font-size: 20px;
  }

  .footer-column ul li a,
  .footer-contact p,
  .footer-address p {
    font-size: 18px;
  }

  .social-icons {
    gap: 10px;
    justify-content: center;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }

  .social-icons a svg {
    width: 18px;
    height: 18px;
  }
}
