/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {

  /* Header */
  .header-inner {
    flex-direction: column;
    gap: 10px;
  }
  nav {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .brand img {
    height: 60px;
  }

  /* Hero */
  .hero {
    padding: 60px 15px 40px;
  }
  #hero-logo {
    width: 70%;
    max-width: 320px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-btn {
    display: inline-block;
    padding: 12px 24px;
  }

  /* Video Section */
  .video-section {
    margin: 20px 0;
    border-radius: 10px;
    max-height: 300px;
  }

  /* Cards */
  .cards {
    grid-template-columns: 1fr; /* Stack vertically */
    max-width: 90%;
  }

  /* Before/After */
  .ba-wrapper {
    max-width: 90%;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-section .contact-frame {
    padding: 25px;
    margin: 30px 10px;
  }

  /* Fix for overlapping contact buttons */
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .buttons .contact-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Footer */
  footer small {
    font-size: 14px;
  }
}

/* ===== EXTRA SMALL SCREENS ===== */
@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }
  .hero-subtitle {
    font-size: 14px;
  }
  .contact-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}
