/**
 * Hill Sunrise Tuktuk - Responsive Stylesheet
 */

/* Large Tablets & Small Desktops (<= 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-ctas, .hero-trust-bar {
    justify-content: center;
  }

  .hero-image-card {
    max-width: 600px;
    margin: 0 auto;
  }

  .tour-details-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .booking-sticky-card {
    position: static;
    margin-top: 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .about-story-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .itinerary-chips-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets (<= 768px) */
@media (max-width: 768px) {
  .header-topbar {
    display: none;
  }

  .header-container {
    height: 70px;
  }

  .brand-logo-img {
    max-height: 46px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--palette-teal);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    gap: 1.25rem;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link::after {
    display: none;
  }

  .nav-actions .btn-book-header {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .tours-grid {
    grid-template-columns: 1fr;
  }

  .round-tour-grid {
    grid-template-columns: 1fr;
  }

  .round-tour-media {
    height: 260px;
  }

  .round-tour-content {
    padding: 1.5rem;
  }

  .round-tour-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .round-tour-cta-group {
    width: 100%;
  }

  .round-tour-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .form-row, .inc-exc-grid {
    grid-template-columns: 1fr;
  }

  .tour-quick-specs {
    grid-template-columns: 1fr 1fr;
  }

  .tour-hero-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .floating-badge {
    display: none;
  }

  .hero-image-wrapper img {
    height: 340px;
  }

  .cta-box {
    padding: 3rem 1.5rem;
  }

  .cta-box h2 {
    font-size: 2rem;
  }
}

/* Small Mobile (<= 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .tour-quick-specs {
    grid-template-columns: 1fr;
  }

  .gallery-side {
    grid-template-columns: 1fr;
  }

  .itinerary-chips-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
