@media (max-width: 768px) {
  
  .navbar {
    padding: 10px 10px;
    z-index: 2000;
  }

  .menu-toggle {
    display: flex;
    font-size: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    height: 100vh;
    width: 100%;

    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(15px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;

    transform: translateY(-100%);
    transition: transform 0.45s ease;
    z-index: 2000;
  }

   .nav-links.active {
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.6rem;
    font-weight: 600;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
    transform: translateX(-50%);
  }

  .nav-links a:hover::after {
    width: 100%;
  }
  }

  .hero {
    height: 80vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    min-height: 100dvh;
    padding: 50px 15px;
  }

  .title {
    font-size: 1.5rem;
  }

  input {
    font-size: 16px;
  }

  .grid img {
    height: 180px;
  }

  .whatsapp {
    padding: 12px;
    font-size: 14px;
  }

  .form-row {
    flex-direction: column;
  }

  .booking-form {
    padding: 20px;
    border-radius: 15px;
  }

  .pricing-grid {
    display: flex;
    flex-direction: column;
  }

  .price-card {
    width: 100%;
  }
}