@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav .nav-link {
    font-size: 15px;
  }

  .desktop-dropdown-menu {
    min-width: 450px;
    gap: 25px;
  }

  .nav-list {
    gap: 20px;
  }

  .nav-link {
    font-size: 15px;
  }

  .top-bar .contact-info {
    gap: 15px;
    font-size: 13px;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .experience-header h2 {
    font-size: 1.6rem;
  }

  .experience-content {
    gap: 20px;
  }

  .experience-header {
    flex: 0 0 280px;
    padding: 25px 20px;
  }

  .experience-features {
    gap: 20px;
  }

  .feature-box {
    padding: 20px 15px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-icon i {
    font-size: 1.3rem;
  }

  .feature-content h3 {
    font-size: 1.1rem;
  }

  .feature-content p {
    font-size: 0.85rem;
  }

  .gallery-content {
    gap: 40px;
  }

  .gallery-left {
    flex: 0 0 350px;
  }

  .gallery-title {
    font-size: 3rem;
  }

  .gallery-grid {
    gap: 12px;
  }

  .lightbox-content {
    margin: 30px auto;
  }

  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 30px;
    width: 40px;
    height: 40px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .testimonials-title,
  .services-title {
    font-size: 1.8rem;
  }

  .testimonial-content {
    gap: 25px;
    padding: 20px;
  }

  .testimonial-avatar {
    flex: 0 0 80px;
  }

  .testimonial-avatar img {
    width: 80px;
    height: 80px;
  }

  .testimonial-text p {
    font-size: 0.95rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }

  .service-item {
    padding: 25px 15px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 5px 0;
    font-size: 12px;
  }

  .top-bar .contact-info {
    gap: 10px;
  }

  .top-bar .contact-info .phone,
  .top-bar .contact-info .email {
    display: none;
  }

  .top-bar .contact-info .phone {
    display: flex;
  }

  /* Hide desktop navigation on mobile */
  .desktop-nav {
    display: none;
  }

  /* Show hamburger menu on mobile */
  .hamburger {
    display: flex;
  }

  .nav-overlay {
    padding: 50px 20px 20px;
  }

  .nav-menu {
    width: 100%;
    max-width: 100%;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    font-size: 20px;
    padding: 15px;
    display: block;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 600;
  }

  .dropdown .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    border-radius: 8px;
    flex-direction: column;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
    max-height: 300px;
    overflow-y: auto;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-section h4 {
    color: #ff6b35;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 6px;
  }

  .dropdown-section ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .dropdown-section ul li a {
    color: #fff;
    font-size: 14px;
    padding: 8px 10px;
    display: block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
  }

  .dropdown-section ul li a:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateX(5px);
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .slider-nav {
    padding: 0 20px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 20px;
  }

  .footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .contact-item {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .footer-links {
    justify-content: center;
  }

  .social-media {
    justify-content: center;
    margin-bottom: 20px;
  }

  .google-reviews {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .google-logo {
    width: 20px;
    height: 20px;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .experience-section {
    padding: 30px 0;
  }

  .experience-content {
    flex-direction: column;
    gap: 20px;
  }

  .experience-header {
    flex: none;
    width: 100%;
    padding: 20px;
  }

  .experience-header h2 {
    font-size: 1.5rem;
  }

  .experience-features {
    flex-direction: column;
    gap: 15px;
  }

  .feature-box {
    padding: 20px 15px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-icon i {
    font-size: 1.3rem;
  }

  .feature-content h3 {
    font-size: 1.1rem;
  }

  .feature-content p {
    font-size: 0.85rem;
  }

  .gallery-section {
    min-height: 500px;
    padding: 30px 0;
  }

  .gallery-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding: 30px 20px;
  }

  .gallery-left {
    flex: none;
  }

  .gallery-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .gallery-grid {
    max-width: 400px;
    margin: 0 auto;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: inline-block !important;
    margin-top: 20px;
  }

  .itinerary-section {
    min-height: 500px;
    padding: 30px 0;
  }

  .itinerary-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding: 30px 20px;
  }

  .itinerary-left {
    flex: none;
  }

  .itinerary-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .itinerary-grid {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Hide magnifying glass overlay on mobile */
  .gallery-overlay,
  .itinerary-overlay {
    display: none !important;
  }

  .gallery-item,
  .itinerary-item {
    cursor: default !important;
  }

  .lightbox-content {
    width: 95%;
    margin: 20px auto;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    font-size: 25px;
    width: 35px;
    height: 35px;
  }

  .lightbox-nav {
    padding: 0 10px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .lightbox-caption {
    padding: 15px;
  }

  .lightbox-caption h3 {
    font-size: 1.3rem;
  }

  .testimonials-section,
  .services-section {
    padding: 25px 0;
  }

  .testimonials-title,
  .services-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .testimonial-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  .testimonial-avatar {
    flex: none;
  }

  .testimonial-avatar img {
    width: 70px;
    height: 70px;
  }

  .testimonial-text p {
    font-size: 0.9rem;
  }

  .testimonial-text h4 {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-item {
    padding: 15px 10px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .service-icon i {
    font-size: 1.3rem;
  }

  .service-item h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .service-item p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  #header {
    padding: 8px 0;
  }

  .nav-brand .logo {
    height: 35px;
  }

  .hamburger {
    padding: 8px;
  }

  .hamburger span {
    width: 22px;
    height: 3px;
  }

  .nav-overlay {
    padding: 40px 15px 15px;
  }

  .nav-link {
    font-size: 18px;
    padding: 12px;
  }

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

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 10px 25px;
    font-size: 14px;
  }

  .slider-indicators {
    bottom: 20px;
  }

  /* Footer optimizations for very small screens */
  #footer {
    padding: 30px 0 15px;
  }

  .footer-content {
    gap: 20px;
  }

  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-item {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .social-media .social-link {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .google-reviews {
    font-size: 14px;
    gap: 5px;
  }

  .google-logo {
    width: 18px;
    height: 18px;
  }

  .stars i {
    font-size: 12px;
  }

  .footer-copyright p {
    font-size: 12px;
  }

  .environmental-message p {
    font-size: 13px;
    padding: 10px;
  }

  .experience-section {
    padding: 20px 0;
  }

  .experience-header h2 {
    font-size: 1.3rem;
  }

  .experience-header {
    padding: 15px;
  }

  .experience-features {
    gap: 10px;
  }

  .feature-box {
    padding: 15px 10px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
  }

  .feature-icon i {
    font-size: 1.2rem;
  }

  .feature-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .feature-content p {
    font-size: 0.8rem;
  }

  .gallery-section {
    min-height: 450px;
    padding: 40px 0;
  }

  .gallery-content {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .gallery-title {
    font-size: 2rem;
    margin-bottom: 0;
  }

  .gallery-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .gallery-grid {
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: inline-block !important;
    margin-top: 15px;
  }

  .itinerary-section {
    min-height: 450px;
    padding: 40px 0;
  }

  .itinerary-content {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .itinerary-title {
    font-size: 2rem;
    margin-bottom: 0;
  }

  .itinerary-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .itinerary-grid {
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
  }

  /* Hide magnifying glass overlay on mobile */
  .gallery-overlay,
  .itinerary-overlay {
    display: none !important;
  }

  .gallery-item,
  .itinerary-item {
    cursor: default !important;
  }

  .lightbox-content {
    width: 98%;
    margin: 10px auto;
  }

  #lightbox-image {
    max-height: 60vh;
  }

  .lightbox-close {
    top: 5px;
    right: 5px;
    font-size: 20px;
    width: 30px;
    height: 30px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .lightbox-caption {
    padding: 10px;
  }

  .lightbox-caption h3 {
    font-size: 1.1rem;
  }

  .testimonials-section,
  .services-section {
    padding: 20px 0;
  }

  .testimonials-title,
  .services-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .testimonial-content {
    padding: 15px;
    gap: 12px;
  }

  .testimonial-avatar img {
    width: 60px;
    height: 60px;
  }

  .testimonial-text p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .testimonial-text h4 {
    font-size: 1rem;
  }

  .service-item {
    padding: 12px 8px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }

  .service-icon i {
    font-size: 1.1rem;
  }

  .service-item h3 {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .service-item p {
    font-size: 0.8rem;
    line-height: 1.3;
  }
}

.hamburger span {
  width: 22px;
  height: 3px;
}

.nav-overlay {
  padding: 40px 15px 15px;
}

.nav-link {
  font-size: 18px;
  padding: 12px;
}

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

.hero-subtitle {
  font-size: 0.9rem;
}

.cta-button {
  padding: 10px 25px;
  font-size: 14px;
}

.slider-indicators {
  bottom: 20px;
}

.indicator {
  width: 10px;
  height: 10px;
}

.slider-nav {
  padding: 0 15px;
}

.slider-btn {
  width: 35px;
  height: 35px;
  font-size: 14px;
}

.dropdown-section h4 {
  font-size: 14px;
}

.dropdown-section ul li a {
  font-size: 13px;
  padding: 6px 8px;
}

#footer {
  padding: 30px 0 15px;
}

.footer-section h3 {
  font-size: 18px;
}

.environmental-message {
  padding: 10px;
}

.environmental-message p {
  font-size: 14px;
}

@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    height: 100vh;
  }

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

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .slider-indicators {
    bottom: 15px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }

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

  .hero-subtitle {
    font-size: 1.3rem;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1600px;
  }

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

@media (hover: none) and (pointer: coarse) {
  .nav-link:hover,
  .cta-button:hover,
  .slider-btn:hover {
    transform: none;
  }
}

@media print {
  #header,
  #footer,
  .slider-nav,
  .slider-indicators,
  .nav-overlay {
    display: none;
  }

  .hero-section {
    height: auto;
    page-break-inside: avoid;
  }

  .slide {
    position: relative;
    opacity: 1;
  }

  .slide:not(.active) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .slide {
    transition: none;
  }

  .hero-title,
  .hero-subtitle,
  .cta-button {
    animation: none;
  }
}
