/* ===== Footer Section with Video Background ===== */

.site-footer-custom {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 750px;
  display: flex;
  align-items: stretch;
}

/* Video Background */
.footer-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.footer-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.footer-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 25%,
    rgba(255, 255, 255, 0.7) 45%,
    rgba(255, 255, 255, 0.92) 60%,
    rgba(255, 255, 255, 0.98) 75%,
    rgba(255, 255, 255, 1) 100%
  );
}

/* Decorative Ellipse Background */
.footer-ellipse-bg {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 55%;
  max-width: 700px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

/* Footer Content */
.footer-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 40px;
  margin-left: 20rem;
}

/* Footer Top Section (logo, name, address) */
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
  max-width: 600px;
  width: 100%;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-logo img {
  height: 70px;
  width: auto;
}

.footer-company-name {
  font-size: 14px;
  font-weight: 500;
  color: #2c3e50;
  letter-spacing: 0.5px;
  margin: 0 0 20px;
  font-family: "Inter", Aeonik, "Segoe UI", sans-serif;
}

.footer-divider {
  width: 300px;
  max-width: 80%;
  height: 1px;
  background-color: #c0c0c0;
  margin: 0 auto 20px;
}

.footer-address {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  font-family: "Inter", sans-serif;
}

.footer-address p {
  margin: 0;
}

.footer-address-spacer {
  height: 10px;
}

/* Footer Links Section */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 10rem;
  width: 100%;
  max-width: 800px;
  margin-top: 10px;
}

.footer-links-column h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 12px;
  font-family: "Inter", sans-serif;
}

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

.footer-links-column ul li {
  margin-bottom: 6px;
}

.footer-links-column ul li a {
  font-size: 16px;
  color: #444;
  text-decoration: none;
  font-weight: 300;
  font-family:
    "Inter",
    Plus Jakarta Sans,
    "Segoe UI",
    sans-serif;
  transition: color 0.2s ease;
}

.footer-links-column ul li a:hover {
  color: #1a1a2e;
  text-decoration: underline;
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 992px) {
  .site-footer-custom {
    min-height: auto;
  }

  .footer-ellipse-bg {
    width: 50%;
    bottom: -15%;
    right: -8%;
  }

  .footer-content {
    padding: 50px 30px 30px;
    margin-left: 0px;
  }

  .footer-links {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-links-column {
    min-width: 120px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .site-footer-custom {
    min-height: auto;
  }

  .footer-ellipse-bg {
    width: 60%;
    bottom: -10%;
    right: -10%;
    opacity: 0.5;
  }

  .footer-video-overlay {
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.8) 30%,
      rgba(255, 255, 255, 0.95) 60%,
      rgba(255, 255, 255, 1) 100%
    );
  }

  .footer-content {
    padding: 40px 20px 30px;
  }

  .footer-logo img {
    height: 55px;
  }

  .footer-company-name {
    font-size: 16px;
  }

  .footer-links {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 400px;
  }

  .footer-links-column {
    min-width: 140px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .footer-ellipse-bg {
    display: none;
  }

  .footer-video-overlay {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.7) 20%,
      rgba(255, 255, 255, 0.95) 40%,
      rgba(255, 255, 255, 1) 60%,
      rgba(255, 255, 255, 1) 100%
    );
  }

  .footer-content {
    padding: 30px 16px 24px;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-company-name {
    font-size: 12px;
  }

  .footer-divider {
    width: 200px;
  }

  .footer-address {
    font-size: 11px;
  }

  .footer-links {
    gap: 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links-column {
    min-width: unset;
    width: 100%;
  }

  .footer-links-column h4 {
    font-size: 13px;
  }

  .footer-links-column ul li a {
    font-size: 11px;
  }
}
