.custom-footer {
  background: linear-gradient(180deg, #2c2c2c, #1a1a1a);
  color: #fff;
  font-family: Arial, sans-serif;
}

/* GRID */
.custom-footer .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 60px 40px;
}

/* LOGO */
.custom-footer .footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

/* TEXT */
.custom-footer .footer-col p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* HEADINGS */
.custom-footer .footer-col h3 {
  margin-bottom: 15px;
}

/* LINKS */
.custom-footer .footer-col ul {
  list-style: none;
  padding: 0;
}
.custom-footer .footer-col ul li {
  margin-bottom: 10px;
}
.custom-footer .footer-col ul li a {
  color: #ccc;
  text-decoration: none;
}
.custom-footer .footer-col ul li a:hover {
  color: #ff6600;
}

/* SOCIAL ICONS */
.custom-footer .social-icons {
  margin-top: 15px;
}
.custom-footer .social-icons a {
  width: 38px;
  height: 38px;
  background: #ff6600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}
.custom-footer .social-icons svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.custom-footer .social-icons a:hover {
  background: #fff;
}
.custom-footer .social-icons a:hover svg {
  fill: #ff6600;
}

/* CONTACT ICONS */
.custom-footer .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.custom-footer .contact-item img {
  width: 30px;
  filter: brightness(0) invert(1);
}

/* FORM */
.custom-footer .footer-form input,
.custom-footer .footer-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background: transparent;
  border: 1px solid #555;
  color: #fff;
}
.custom-footer .footer-form textarea {
  height: 80px;
}
.custom-footer .footer-form button {
  background: #ff6600;
  border: none;
  padding: 10px;
  color: #fff;
  cursor: pointer;
}
.custom-footer .footer-form button:hover {
  background: #e05500;
}

/* BOTTOM */
.custom-footer .footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}
.custom-footer .footer-menu a {
  color: #ccc;
  margin-left: 20px;
  text-decoration:none;
}
.custom-footer .footer-menu a:hover {
  color: #ff6600;
}

.custom-footer .footer-links{
    display: flex;
    list-style: none;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .custom-footer .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px){
  .custom-footer .footer-top {
    grid-template-columns: 1fr;
  }

  .custom-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 10px;
    padding:10px;
  }
  .custom-footer .footer-top {
      padding: 40px 16px;
    }
}