/* =========================================
   FOOTER
========================================= */

.main_footer {
  width: 100%;
  /* background: #ffffff; */
  color: #050505;
  position: relative;
  overflow: hidden;
  /* border-top: 1px solid rgba(0, 0, 0, 0.03); */
}

.footer_container {
  width: 100%;
  padding: 45px 24px 0;
}

/* =========================================
   FOOTER TOP
========================================= */

.footer_top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 40px;
  min-height: 210px;
}

/* =========================================
   NAVIGATION
========================================= */

.footer_navigation {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 35px;
}

.footer_column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer_link {
  width: fit-content;
  color: #050505;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.8px;
  position: relative;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: #000;
  transition: width 0.3s ease;
}

.footer_link:hover {
  /* color: #c79635; */
  transform: translateX(3px);
}

.footer_link:hover::after {
  width: 100%;
}

/* =========================================
   CONTACT
========================================= */

.footer_contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.enquire_link {
  color: #000;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.4px;
  margin-bottom: 28px;
  position: relative;
  transition: color 0.3s ease;
}

.enquire_link::after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: -7px;
  width: 50px;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

/* .enquire_link:hover::after {
  width: 100%;
} */

.footer_contact_link {
  color: #050505;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.8px;
  margin-bottom: 25px;
  transition: color 0.3s ease;
}

.footer_contact_link:hover {
  color: #c79635;
}

/* =========================================
   FOLLOW
========================================= */

.footer_follow {
  margin-top: 2px;
}

.follow_title {
  display: block;
  color: #c79635;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.3px;
  margin-bottom: 25px;
}

.social_icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social_icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c79635;
  font-size: 25px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.social_icon:hover {
  color: #a87c27;
  transform: translateY(-4px);
}

.social_icon:nth-child(3) {
  font-size: 23px;
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.footer_bottom {
  min-height: 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 0;
}

.footer_brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer_logo {
  display: flex;
  align-items: center;
}

.footer_logo img {
  width: 145px;
  height: auto;
  display: block;
  object-fit: contain;
}

.copyright_text {
  color: #050505;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.footer_bottom_links {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-bottom: 3px;
}

.footer_bottom_links a {
  color: #050505;
  text-decoration: none;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.8px;
  position: relative;
  transition: color 0.3s ease;
}

.footer_bottom_links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: #c79635;
  transition: width 0.3s ease;
}

.footer_bottom_links a:hover {
  color: #c79635;
}

.footer_bottom_links a:hover::after {
  width: 100%;
}

/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 1100px) {
  .footer_top {
    grid-template-columns: 1fr 220px;
  }

  .footer_navigation {
    gap: 20px;
  }

  .footer_container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 768px) {
  .footer_container {
    padding: 40px 20px 0;
  }

  .footer_top {
    display: flex;
    flex-direction: column;
    min-height: auto;
    gap: 45px;
  }

  .footer_navigation {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
  }

  .footer_column {
    gap: 20px;
  }

  .footer_link {
    font-size: 9px;
  }

  .footer_contact {
    border-top: 1px solid rgba(199, 150, 53, 0.2);
    padding-top: 30px;
  }

  .footer_bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    padding: 35px 0 20px;
  }

  .footer_brand {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer_logo img {
    width: 130px;
  }

  .footer_bottom_links {
    padding-bottom: 0;
    gap: 25px;
  }
}

/* =========================================
   RESPONSIVE - SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .footer_navigation {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
  }

  .footer_container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer_contact_link {
    font-size: 9px;
  }

  .footer_bottom_links {
    width: 100%;
    justify-content: space-between;
  }

  .copyright_text {
    font-size: 8px;
  }
}
