/* ========= MOB COW FOOTER ========= */
.mobcow-footer {
  position: relative;
  background: #000000;
  color: #ffffff;
  overflow: hidden;
  padding: 64px 0 24px;
  font-family: 'Poppins', sans-serif;
}

.mobcow-footer__container {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.mobcow-footer__bg-word {
  position: absolute;
  left: 50%;
  top: 35px;
  transform: translateX(-50%);
  font-size: clamp(90px, 16vw, 220px);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
}

.mobcow-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(229, 57, 53, 0.25);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 170px;
  height: auto;
  display: block;
}

.footer-brand-text {
  color: #a7a7a7;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.footer-column {
  min-width: 0;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: #E53935;
  border-radius: 999px;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  color: #b6b6b6;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #E53935;
}

.footer-contact li {
  color: #b6b6b6;
  font-size: 15px;
  line-height: 1.7;
}

.footer-contact span {
  color: #ffffff;
  font-weight: 600;
}

.footer-map-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(135deg, rgba(66,133,244,0.16), rgba(52,168,83,0.14));
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease;
}

.footer-map-cta span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
}

.footer-map-cta:hover {
  color: #ffffff;
  border-color: rgba(52,168,83,0.5);
  background: linear-gradient(135deg, rgba(66,133,244,0.24), rgba(52,168,83,0.22));
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(52,168,83,0.16);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 13px 20px;
  border-radius: 12px;
  background: #E53935;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-cta:hover {
  background: #f24642;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(229, 57, 53, 0.25);
}

.footer-bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: #8b8b8b;
  font-size: 14px;
  line-height: 1.5;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom a:hover {
  color: #E53935;
}

@media (max-width: 1100px) {
  .mobcow-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-map-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .mobcow-footer {
    padding: 48px 0 22px;
  }

  .mobcow-footer__container {
    width: min(100%, calc(100% - 32px));
  }

  .mobcow-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 22px;
  }

  .mobcow-footer__bg-word {
    top: 35px;
    font-size: 64px;
    white-space: nowrap;
    opacity: 0.6;
  }

  .footer-logo img {
    width: 150px;
  }

  .footer-brand-text {
    font-size: 14px;
  }

  .footer-title {
    margin-bottom: 14px;
  }

  .footer-links a,
  .footer-contact li,
  .footer-contact a {
    font-size: 14px;
  }

  .footer-cta {
    width: 100%;
    justify-content: center;
  }

  .footer-map-cta {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
