.footer-section {
  padding: 180px 0 25px;
}

/* brand */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 300px;
}



/* enquiry */
.enquiry-title {
  font-family: "f3";
  margin-bottom: 8px;
}

.enquiry-wrapper {
  border: 1px solid #ddd;
  border-radius: 30px;
  display: flex;
  padding: 4px;
  max-width: 320px;
}

.enquiry-wrapper input {
  border: none;
  outline: none;
  flex: 1;
  padding: 10px 14px;
  font-family: "f1";
  background:none;
}

.enquiry-wrapper button {
  border: none;
  background: #000;
  color: #fff;
  border-radius: 24px;
  padding: 0px 13px;
  font-family: "f3";
}

/* links */
.footer-links a {
  display: block;
  margin-bottom: 12px;
  font-family: "f3";
  font-size: 24px;
}

/* social */
.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons i {
  font-size: 24px;
}

.social-icons a {
color: #000;}

/* divider */
.footer-line {
  margin: 35px 0;
}

/* bottom row */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-family: "f1";
  font-size: 14px;
  color: #777;
}

/* MOBILE FIX */
@media (max-width: 992px) {

  .social-icons {
    margin-top: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-links {
    margin-top: 10px;
  }
}
