/* ============================== */
/* FOOTER CONTAINER               */
/* ============================== */

.site-footer {
  background-color: #ed1b24;
  color: white;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden; /* prevents image bleed */
}

/* Footer image */
.footer-image {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 1;
  pointer-events: none;
}

.footer-image img {
  width: 180px;
  opacity: 0.35;
}

/* Footer content wrapper */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Title */
.ContactUs {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  font-family: "Science Gothic", sans-serif;
}

/* ============================== */
/* CONTACT ROW (DESKTOP)          */
/* ============================== */

.contact-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Each item */
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  font-size: 16px;
}

/* Icon */
.icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Text */
.contact-item p {
  margin: 0;
  font-weight: 500;
}

/* ============================== */
/* TABLET ADJUSTMENTS             */
/* ============================== */

@media (max-width: 900px) {
  .contact-row {
    gap: 30px;
  }

  .footer-image img {
    width: 140px;
  }
}

/* ============================== */
/* MOBILE LAYOUT                  */
/* ============================== */

@media (max-width: 600px) {
  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 20px;
  }

  .contact-item {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
  }

  .ContactUs {
    font-size: 22px;
    margin-bottom: 20px;
  }

  /* Footer image → bottom RIGHT */
  .footer-image {
    bottom: 16px;
    right: 30px;
    left: auto;
  }

  .footer-image img {
    width: 110px;
    opacity: 0.25;
  }
}
