@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 62px;
  }

  .highlight-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .top-bar {
    display: none;
  }

  .navbar {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 76px);
    background: #06182d;
    flex-direction: column;
    align-items: flex-start;
    padding: 35px;
    gap: 22px;
    transition: 0.4s ease;
    box-shadow: -15px 0 40px rgba(0,0,0,0.25);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-btn {
    display: none;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .room-grid,
  .dining-grid,
  .offer-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spa-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 75px 5%;
  }

  .navbar,
  .hero,
  .luxury-banner,
  .spa-section,
  .footer,
  .contact-cta {
    padding-left: 5%;
    padding-right: 5%;
  }

  .logo {
    font-size: 25px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section-title h2,
  .banner-content h2,
  .spa-content h2,
  .contact-cta h2 {
    font-size: 36px;
  }

  .highlight-grid,
  .room-grid,
  .dining-grid,
  .offer-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dining-card {
    height: 300px;
  }

  .testimonial-box {
    padding: 32px 22px;
  }

  .testimonial-box p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    text-align: center;
    width: 100%;
  }

  .nav-menu {
    width: 100%;
  }

  .section-title h2,
  .banner-content h2,
  .spa-content h2 {
    font-size: 31px;
  }

  .whatsapp-btn,
  .back-top {
    right: 16px;
    width: 48px;
    height: 48px;
  }
}