@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: clamp(1.4rem, 5vw, 2rem);
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
    line-height: 1.3;
  }
  .contact-block h3 {
    font-size: clamp(1rem, 4.5vw, 1.3rem);
  }

  .contact-block p {
    font-size: clamp(0.9rem, 3.8vw, 1rem);
    line-height: 1.7;
  }

  .contact-block .small-text {
    font-size: clamp(0.8rem, 3.2vw, 0.9rem);
  }


  .contact-info p::before {
    display: none;
  }

  .contact-section.animate .contact-info {
    width: 100% !important;
  }
}
