#footer {
  background: linear-gradient(180deg, #1A1410 0%, #120D0A 100%);
  color: #94A3B8;
  position: relative;
  padding: 100px 0 0;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}


.footer {
  width: min(90%, 1400px);
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}



.footer_logo_about {
  flex: 1.5;
  min-width: 280px;
}


.footer_logo_about .footer_logo {
  width: 12.5rem;
  margin-bottom: 1.5rem;
}

.footer_logo_about p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #CBD5E1;
}

.footer_social_icons {
  display: flex;
  gap: 0.750rem;
  margin-top: 1.5rem;
}

.footer_social_icons a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_social_icons a:hover {
  background: #F97316;
  border-color: #F97316;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.footer_links_title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.750rem;
}

.footer_links_title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(249, 115, 22, 0.3), transparent);
}

.footer_links {
  list-style: none;
  padding: 0;
  flex: 1;
  min-width: 180px;
}

.footer_link {
  margin: 0 0 1rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer_link a {
  display: inline-block;
  text-decoration: none;
  color: #94A3B8;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

.footer_link a:hover {
  color: #F97316;
  transform: translateX(5px);
}

.footer_link i {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F97316;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer_link .footer_links_mix {
  font-size: 0.95rem;
  color: #CBD5E1;
  line-height: 1.5;
}

.footer_links_mix h3 {
  color: #fff;
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.footer_links_mix p {
  font-size: 0.75rem;
}

.footer_copyright {
  margin-top: 5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
}

.footer_copyright .copyright-text {
  font-size: 0.85rem;
  color: #64748B;
  text-align: center;
}

.footer_copyright .copyright-text a {
  color: #F97316;
  text-decoration: none;
  font-weight: 700;
}








/* ==========================
   Large Desktop (1600px+)
========================== */
@media (min-width: 1600px) {
  .footer {
    width: 75%;
  }
}

/* ==========================
   Laptop (1200px - 1599px)
========================== */
@media (max-width: 1599px) {
  .footer {
    width: 85%;
  }
}

/* ==========================
   Small Laptop / Tablet
========================== */
@media (max-width: 1024px) {
  #footer {
    padding-top: 80px;
  }

  .footer {
    width: 90%;
    gap: 2.5rem;
  }

  .footer_logo_about {
    flex-basis: 100%;
    width: 100%;
  }

  .footer_logo_about p {
    max-width: 700px;
  }
}

/* ==========================
   Tablet
========================== */
@media (max-width: 768px) {
  .footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer_logo_about {
    grid-column: 1 / -1;
  }

  .footer_links_title {
    margin-bottom: 1.2rem;
    font-size: 1rem;
  }
}

/* ==========================
   Mobile
========================== */
@media (max-width: 576px) {
  #footer {
    padding-top: 60px;
  }

  .footer {
    grid-template-columns: 1fr;
    width: 92%;
    gap: 2rem;
  }

  .footer_logo {
    width: 10rem !important;
  }

  .footer_logo_about p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .footer_social_icons {
    gap: 0.5rem;
  }

  .footer_social_icons a {
    width: 2.2rem;
    height: 2.2rem;
  }

  .footer_link {
    gap: 0.75rem;
  }

  .footer_links_mix h3 {
    font-size: 0.9rem;
  }

  .footer_links_mix p {
    font-size: 0.85rem;
  }

  .footer_copyright {
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .copyright-text {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

/* ==========================
   Small Mobile
========================== */
@media (max-width: 380px) {
  .footer {
    width: 95%;
  }

  .footer_logo {
    width: 8rem !important;
  }

  .footer_social_icons a {
    width: 2rem;
    height: 2rem;
  }

  .footer_links_title {
    font-size: 0.9rem;
  }
}