/* ===============================
   FOOTER WRAPPER
================================= */

.site-footer{
 font-family: "Manrope", sans-serif;
}


.footer-container {
  
  margin: 0 auto;
  padding: 10px 20px;

  background: #f2f2f2;
  border-radius: 28px;
  border: 1px solid #d6d6d6;

  display: flex;
  justify-content: space-between;
  gap: 80px;
}

/* ===============================
   LEFT SIDE
================================= */

.footer-left {
  flex: 1;
}

.footer-logo {
  height: 45px;
  margin-bottom: 25px;
}

.footer-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
  max-width: 480px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.footer-contact a {
  text-decoration: none;
  font-size: 16px;
  color: #2c7be5;
}

.contact-icon {
  font-size: 20px;
  color: #2c7be5;
}

/* ===============================
   RIGHT SIDE
================================= */

.footer-right {
  flex: 1;
}

.footer-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111827;
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.footer-gallery img {
  width: auto;
 
  height: 60px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.footer-gallery img:hover {
  transform: scale(1.05);
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 900px) {

  .footer-container {
    flex-direction: column;
    gap: 50px;
    padding: 40px;
  }


}
