/* ─── ELITE WATERMARK FOOTER STYLES ─── */
.footer-watermark {
  background: #111009;
  color: #FFFFFF;
  padding: 100px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  font-family: var(--sans, 'Montserrat', sans-serif);
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  height: 95px;
  margin-bottom: 25px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange, #F7931A);
  /* Elegant Orange titles */
  margin-bottom: 25px;
}

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

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  color: #FFFFFF;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--orange, #F7931A);
  transform: translateX(4px);
}

.footer-addr {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.footer-addr strong {
  color: #FFFFFF;
}

.footer-addr a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-addr a:hover {
  color: var(--orange, #F7931A);
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-socials a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: var(--orange, #F7931A);
  transform: translateX(4px);
}

.footer-socials a i {
  font-size: 16px;
  width: 20px;
  color: #FFFFFF;
}

.footer-watermark-text {
  font-size: 18vw;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.8;
  margin-top: 30px;
  user-select: none;
  pointer-events: none;
  font-family: var(--sans, 'Montserrat', sans-serif);
  position: relative;
  bottom: -5px;
  z-index: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
  color: transparent;
}

.footer-bottom {
  background: #0B0A06;
  /* Deep solid black copyright band */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-grid {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-grid a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  transition: color 0.3s;
}

.footer-bottom-grid a:hover {
  color: var(--orange, #F7931A);
}

.footer-slogan {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

@media (max-width: 600px) {
  .footer-watermark {
    padding-top: 60px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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