@media (max-width: 768px) {
  .contact-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: block;
    overflow: hidden;
  }

  .contact-video {
    position: relative;
    width: 100% !important;
    height: 100vh !important;
    z-index: 1;
  }

  .contact-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100vh !important;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.5);
  }

  .contact-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
  }

  .contact-info {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100% !important;
    height: 100vh !important;
    padding: 2rem;
    background: transparent !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    backdrop-filter: none !important;
  }

  .contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .contact-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    white-space: pre-line;
  }

  .contact-info p::before {
    display: none;
  }

  .contact-section.animate .contact-info {
    width: 100% !important;
  }
}
