/* ============================= */
/* FOOTER SECTION */
/* ============================= */
.footer-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
  
    /* BACKGROUND VIDEO */
    .footer-section video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index: -2;
        opacity: 0;
        transition: opacity 1.5s ease;
    }
    
    /* GRADIENT OVERLAY */
    .footer-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 30%, rgb(187 182 195 / 25%), transparent 60%), linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.85));
        z-index: -1;
    }
    
    /* CONTENT */
    .footer-section .contact-div {
      position: absolute;
      text-align: left;
      z-index: 1;
      padding: 0.5rem;
      bottom: 0;
      /*border-top: 1px solid white;
      border-bottom: 1px solid white;*/
    }
    
    /* ANIMATIONS */
    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }