.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;         /* Same color as parent text */
  text-decoration: none;  /* Remove underline */
}

.footer-contact p a:hover {
  color: #d9534f;         /* Change to red on hover (adjust as needed) */
  text-decoration: underline; /* Optional hover 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: #4B0A0A;
  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: 236px;
}

.footer-address h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20.16px;
  color: #4B0A0A;
  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;
}

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

.social-icons img {
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-icons img:hover {
  transform: translateY(-2px);
}

.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;
  /* padding: 8px 4px; */
  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;
  /* text-align: center; */
  margin: 0;
  padding: 8px 0;
}

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

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

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

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

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

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

  .social-icons {
    justify-content: center;
  }

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

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