@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes floatReverse {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(20px) rotate(-5deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) translateX(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) translateX(100px) rotate(360deg); opacity: 0; }
}

:root {
  --primary-blue: #4DBBFF;
  --primary-blue-light: #62C2FF;
  --primary-blue-dark: #3AA8E6;
  --background: #FFFFFF;
  --background-light: #F8F9FA;
  --background-grey: #F0F2F5;
  --text-dark: #1A1A1A;
  --text-medium: #4A4A4A;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --border-light: #E5E7EB;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --container: 1200px;
  --gradient-blue: linear-gradient(135deg, #4DBBFF 0%, #62C2FF 100%);
  --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--background);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
  font-weight: 300;
  line-height: 1.6;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Animated background particles - Light theme */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.3;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 50%;
  opacity: 0.4;
  animation: particleFloat 20s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 15s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 20s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 19s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 17s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 21s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4.5s; animation-duration: 18s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1.5s; animation-duration: 16s; }

.wrap {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

/* Header - Minimalist Design */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 5%;
  animation: fadeInDown 0.8s ease-out;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 1) !important;
  backdrop-filter: blur(20px);
  margin: 0;
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  box-sizing: border-box;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.brand {
  display: flex;
  gap: 16px;
  align-items: center;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: translateY(-2px);
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: white;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.brand-text h1 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.5px;
}

.brand-text p {
  font-size: 13px;
  color: var(--text-light);
  margin: 2px 0 0;
  font-weight: 300;
}

nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

nav a {
  color: var(--text-medium);
  font-weight: 300;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  letter-spacing: 0.3px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--primary-blue);
}

nav a:hover::after {
  width: 60%;
}

nav a.cta {
  background: var(--gradient-blue);
  color: white;
  box-shadow: var(--shadow-sm);
  font-weight: 500;
}

nav a.cta::after {
  display: none;
}

nav a.cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--primary-blue-dark);
}

/* Hero - Full Width with Image */
.hero {
  position: relative;
  width: 100vw;
  margin: 0;
  margin-left: calc(-50vw + 50%);
  margin-top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  transition: opacity 0.8s ease, background-image 0.8s ease;
}

@media (max-width: 768px) {
  .hero-background {
    background-attachment: scroll;
  }
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 80px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.hero-content .lead {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Feature Cards Section */
.features-section {
  padding: 100px 5%;
  background: var(--background);
  margin-top: 0;
  width: 100%;
  box-sizing: border-box;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(77, 187, 255, 0.1);
  color: var(--primary-blue);
  font-size: 32px;
  stroke-width: 1.5;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  animation: fadeInUp 1s ease-out 1s both;
}

.btn {
  padding: 14px 32px;
  border-radius: 50px;
  border: 0;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gradient-blue);
  color: white;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--primary-blue-dark);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-white {
  background: white;
  color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--background-light);
}

/* Ongoing trip banner */
.ongoing {
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(102, 126, 234, 0.15));
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out 1.2s both;
  backdrop-filter: blur(10px);
}

.ongoing strong {
  font-size: 15px;
  color: white;
}

.ongoing .small {
  color: var(--muted);
  font-size: 13px;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(77, 187, 255, 0.1);
  font-weight: 500;
  font-size: 12px;
  color: var(--primary-blue);
  border: 1px solid rgba(77, 187, 255, 0.2);
}

/* Right hero: carousel */
.card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trip-slide {
  height: 280px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: white;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.trip-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.trip-slide > * {
  position: relative;
  z-index: 2;
}

.trip-slide:hover {
  transform: scale(1.02);
}

.small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.carousel-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

.carousel-controls button {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 18px;
}

/* Upcoming trips */
#upcoming {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  overflow: hidden;
}

#upcoming .card {
  flex: 1;
  padding: 16px;
  min-width: 140px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  animation: floatReverse 4s ease-in-out infinite;
}

#upcoming .card:nth-child(2) {
  animation-delay: 1s;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(255, 142, 155, 0.2));
}

#upcoming .card:nth-child(3) {
  animation-delay: 2s;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
}

#upcoming .card:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Sections */
section {
  margin-top: 60px;
  animation: fadeInUp 1s ease-out both;
}

section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.4s; }
section:nth-child(4) { animation-delay: 0.6s; }

.grid {
  display: grid;
  gap: 24px;
}

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

.three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.packages .pkg {
  background: white;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.packages .pkg::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.packages .pkg:hover::before {
  left: 100%;
}

.packages .pkg:hover {
  transform: translateY(-8px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-lg);
}

.pkg h4 {
  margin: 12px 0 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
}

.pkg p {
  color: var(--text-light);
  margin: 12px 0;
  line-height: 1.6;
  font-weight: 300;
}

.pkg .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.pkg .price {
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-blue);
}

.pkg .price-display {
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-blue);
}

/* Testimonials */
.testi {
  background: white;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.testi:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

.testi .quote {
  font-size: 16px;
  margin: 12px 0;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  font-style: italic;
}

/* Enquiry form */
form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.form-status {
  font-size: 13px;
}

input, textarea, select {
  background: white;
  border: 1px solid var(--border-light);
  padding: 14px 18px;
  border-radius: 12px;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  font-weight: 300;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(77, 187, 255, 0.1);
}

label {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

footer {
  margin-top: 0;
  padding: 60px 5%;
  border-top: 1px solid var(--border-light);
  background: var(--background-light);
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

footer a {
  color: var(--text-light);
  transition: color 0.3s ease;
  text-decoration: none;
}

footer a:hover {
  color: var(--primary-blue);
}

/* Floating WhatsApp */
.wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #25D366;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
  text-decoration: none;
  padding: 12px;
}

.wa svg {
  width: 100%;
  height: 100%;
}

.wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
  background: #20BA5A;
}

/* Social links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(77, 187, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 1px solid rgba(77, 187, 255, 0.2);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary-blue);
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-md);
  color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  position: relative;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive - Tablet and below (980px) */
@media (max-width: 980px) {
  .hero { 
    min-height: 500px;
  }
  .hero-content h1 {
    font-size: 48px;
  }
  .hero-content .lead {
    font-size: 18px;
  }
  .three { 
    grid-template-columns: repeat(2, 1fr); 
  }
  nav { 
    display: none; 
  }
  .mobile-menu-toggle {
    display: flex;
  }
  nav.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 100;
    padding: 80px 24px 24px;
    gap: 16px;
    align-items: stretch;
    animation: slideInDown 0.3s ease;
  }
  nav.mobile-active a {
    padding: 16px 20px;
    font-size: 18px;
    text-align: center;
    border-radius: 12px;
    background: var(--background-light);
    color: var(--text-dark);
  }
  nav.mobile-active a.cta {
    background: var(--gradient-blue);
    color: white;
  }
  .header-contact {
    display: none;
  }
  .destinations-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .upcoming-flyers-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 20px;
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive - Mobile (768px) */
@media (max-width: 768px) {
  header {
    padding: 20px 4%;
  }
  .hero {
    min-height: 80vh;
  }
  .hero-content {
    padding: 60px 4%;
  }
  .hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
  }
  .hero-content .lead {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .btn {
    width: 100%;
    padding: 16px 28px;
  }
  .card {
    padding: 20px;
  }
  section {
    padding: 60px 4%;
  }
  .features-section {
    padding: 60px 4%;
  }
  .news-section {
    padding: 60px 4%;
  }
  .gallery-section {
    padding: 60px 4%;
  }
  .packages .pkg {
    padding: 20px;
  }
  .specialty-card {
    padding: 24px;
  }
  .testi {
    padding: 20px;
  }
  .flyer-section {
    padding: 24px;
  }
  .contact-grid {
    gap: 24px;
  }
  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 40px 4%;
  }
  .wa {
    width: 56px;
    height: 56px;
    right: 4%;
    bottom: 4%;
    font-size: 24px;
  }
  .filter-buttons {
    width: 100%;
    justify-content: flex-start;
  }
  .filter-btn {
    flex: 1;
    min-width: 0;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    flex: 0 0 160px;
    height: 120px;
  }
}

/* Responsive - Small Mobile (560px) */
@media (max-width: 560px) {
  .three { 
    grid-template-columns: 1fr; 
  }
  .hero {
    min-height: 70vh;
  }
  .hero-content h1 { 
    font-size: 28px; 
  }
  .hero-content .lead {
    font-size: 15px;
  }
  .logo { 
    width: 48px; 
    height: 48px; 
    font-size: 18px; 
  }
  .brand-text h1 {
    font-size: 18px;
  }
  .brand-text p {
    font-size: 11px;
  }
  header {
    padding: 16px 4%;
  }
  section {
    padding: 50px 4%;
  }
  .two { 
    grid-template-columns: 1fr; 
  }
  h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  h4 {
    font-size: 18px;
  }
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .dest-card {
    padding: 16px;
  }
  .dest-card .icon {
    font-size: 28px;
  }
  .dest-card h4 {
    font-size: 14px;
  }
  .packages .pkg {
    padding: 16px;
  }
  .pkg h4 {
    font-size: 18px;
  }
  .specialty-card {
    padding: 20px;
  }
  .specialty-card .icon {
    font-size: 32px;
  }
  .testi .quote {
    font-size: 14px;
  }
  .flyer-section {
    padding: 16px;
  }
  .flyer-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .upcoming-flyers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-grid {
    gap: 20px;
  }
  .social-links a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .wa {
    width: 52px;
    height: 52px;
    right: 4%;
    bottom: 4%;
    font-size: 22px;
  }
  .feature-card {
    padding: 32px 24px;
  }
  .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
  .news-card-image {
    height: 200px;
  }
  .gallery-item {
    flex: 0 0 140px;
    height: 100px;
  }
}

/* Responsive - Extra Small Mobile (400px) */
@media (max-width: 400px) {
  .hero-left h1 {
    font-size: 22px;
  }
  .logo {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  .brand-text h1 {
    font-size: 16px;
  }
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .dest-tab {
    padding: 10px 16px;
    font-size: 13px;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  .flyer-modal-content {
    max-width: 95vw;
    border-radius: 16px;
  }
  .flyer-modal-close {
    width: 36px;
    height: 36px;
    font-size: 20px;
    top: 12px;
    right: 12px;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn,
  nav a,
  .dest-card,
  .specialty-card,
  .pkg,
  .filter-btn,
  .dest-tab {
    min-height: 44px;
    min-width: 44px;
  }
  
  .btn:hover,
  nav a:hover,
  .dest-card:hover,
  .specialty-card:hover {
    transform: none;
  }
  
  .btn:active,
  nav a:active {
    transform: scale(0.98);
  }
}

/* Prevent text size adjustment on iOS (prevents zoom on input focus) */
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    font-size: 16px !important;
  }
}

/* Smooth scrolling for all devices */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Form Responsive */
@media (max-width: 768px) {
  form {
    gap: 12px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .form-actions .btn {
    width: 100%;
  }
  input, textarea, select {
    padding: 12px 16px;
    font-size: 14px;
  }
  label {
    font-size: 13px;
  }
}

/* Landscape Orientation - Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .hero-left h1 {
    font-size: 24px;
  }
  .trip-slide {
    height: 180px;
  }
}

/* Print Styles */
@media print {
  .particles,
  .wa,
  .mobile-menu-toggle,
  nav,
  .carousel-controls,
  .btn {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  .card {
    break-inside: avoid;
  }
}

/* Helpers */
.muted { color: var(--text-light); }
.hidden { display: none; }

/* Section Styling */
section {
  margin-top: 0;
  padding: 100px 5%;
  width: 100%;
  box-sizing: border-box;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#specialty .section-subtitle {
  color: var(--text-dark) !important;
}

/* Our News Section */
.news-section {
  background: var(--background-light);
  padding: 100px 5%;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.news-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.news-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.news-card-content {
  padding: 24px;
}

.news-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.news-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 300;
}

.news-card .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* Gallery Section */
.gallery-section {
  padding: 100px 5%;
  background: white;
  width: 100%;
  box-sizing: border-box;
}

.gallery-container {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

.gallery-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 16px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.gallery-strip::-webkit-scrollbar {
  height: 6px;
}

.gallery-strip::-webkit-scrollbar-track {
  background: var(--background-grey);
  border-radius: 10px;
}

.gallery-strip::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 10px;
}

.gallery-item {
  flex: 0 0 200px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
  letter-spacing: -1px;
}

#specialty h2 {
  color: var(--text-dark) !important;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
}

/* Ripple effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Header Contact */
.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  color: var(--primary-blue);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 12px;
  background: rgba(77, 187, 255, 0.1);
  border: 1px solid rgba(77, 187, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.phone-link:hover {
  background: rgba(77, 187, 255, 0.15);
  transform: translateY(-2px);
  color: var(--primary-blue-dark);
}

/* Destinations Section */
.destinations-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border-light);
  justify-content: center;
}

.dest-tab {
  padding: 12px 24px;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-weight: 400;
  font-size: 15px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  position: relative;
  bottom: -2px;
}

.dest-tab:hover {
  color: var(--primary-blue);
}

.dest-tab.active {
  color: var(--primary-blue);
  border-bottom-color: var(--primary-blue);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.dest-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.dest-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.dest-card .icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.dest-card h4 {
  font-size: 16px;
  margin: 8px 0 4px;
  color: white;
}

.dest-card .count {
  font-size: 12px;
  color: var(--text-light);
}

/* Specialty Tours */
.specialty-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.specialty-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.specialty-card:hover::before {
  transform: scaleX(1);
}

.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.specialty-card .icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.specialty-card h4 {
  font-size: 20px;
  margin: 12px 0 8px;
  color: var(--text-dark);
}

.specialty-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 300;
}

.specialty-card .departures {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(77, 187, 255, 0.1);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-blue);
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  gap: 8px;
}

.filter-btn {
  padding: 10px 20px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  color: var(--text-light);
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.filter-btn:hover {
  background: var(--background-light);
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.filter-btn.active {
  background: var(--gradient-blue);
  color: white;
  border-color: transparent;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.testi {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.testi:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.testi .quote {
  font-size: 16px;
  margin: 12px 0;
  font-weight: 500;
  line-height: 1.6;
  color: white;
  font-style: italic;
}

.testi .author {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.testi .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  font-size: 16px;
}

.testi .author-info h5 {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  font-size: 15px;
}

.testi .author-info p {
  color: var(--text-light);
  font-size: 12px;
  margin: 2px 0 0;
}

.testi .rating {
  color: #FFD700;
  font-size: 14px;
  margin-top: 8px;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-grid h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.contact-link {
  display: block;
  color: var(--primary-blue);
  text-decoration: none;
  margin: 8px 0;
  transition: color 0.3s ease;
  font-weight: 500;
}

.contact-link:hover {
  color: var(--primary-blue-dark);
}

/* Responsive updates */
@media (max-width: 980px) {
  .header-contact {
    display: none;
  }
  .destinations-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Flyers Section */
.flyers-container {
  display: grid;
  gap: 60px;
  margin-top: 48px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.flyer-section {
  background: white;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.flyer-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.flyer-section-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(77, 187, 255, 0.1);
  border: 1px solid rgba(77, 187, 255, 0.3);
  border-radius: 50px;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 13px;
  animation: pulse 2s ease-in-out infinite;
}

.upcoming-count {
  padding: 6px 14px;
  background: rgba(77, 187, 255, 0.1);
  border: 1px solid rgba(77, 187, 255, 0.2);
  border-radius: 50px;
  color: var(--text-light);
  font-weight: 500;
  font-size: 12px;
}

.live-flyer {
  max-width: 100%;
  margin: 0 auto;
}

.live-flyer-card {
  max-width: 1200px;
  margin: 0 auto;
}

.live-flyer-card img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}

.flyer-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid var(--border-light);
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.flyer-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.flyer-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.flyer-card:hover img {
  transform: scale(1.05);
}

.flyer-card .flyer-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.flyer-card:hover .flyer-overlay {
  opacity: 1;
}

.flyer-card .flyer-info {
  color: white;
}

.flyer-card .flyer-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.flyer-card .flyer-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.upcoming-flyers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.upcoming-flyer-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.upcoming-flyer-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid var(--border-light);
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.upcoming-flyer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

.upcoming-flyer-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.upcoming-flyer-card:hover img {
  transform: scale(1.05);
}

.upcoming-flyer-card .flyer-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  background: var(--primary-blue);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  color: white;
  font-weight: 600;
  font-size: 11px;
  z-index: 2;
}

.upcoming-flyer-card .flyer-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.upcoming-flyer-card:hover .flyer-overlay {
  opacity: 1;
}

.upcoming-flyer-card .flyer-info {
  color: white;
}

.upcoming-flyer-card .flyer-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.upcoming-flyer-card .flyer-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Placeholder for flyer images */
.flyer-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(255, 107, 157, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.flyer-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Flyer Modal */
.flyer-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
}

.flyer-modal-content {
  position: relative;
  max-width: 1000px;
  max-height: 90vh;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.4s ease;
  display: flex;
  flex-direction: column;
}

.flyer-modal-image {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  background: var(--background-light);
}

.flyer-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flyer-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  line-height: 1;
}

.flyer-modal-close:hover {
  background: var(--primary-blue);
  transform: scale(1.1);
}

.flyer-modal-info {
  padding: 32px;
  background: white;
  overflow-y: auto;
  flex: 1;
}

.flyer-modal-info h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.flyer-modal-info .muted {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 12px;
}

.description-text {
  color: var(--text-medium);
  font-size: 16px;
  margin: 12px 0 24px;
  line-height: 1.6;
}

/* Trip Details Styles */
.trip-details {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.detail-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.detail-item {
  padding: 12px;
  background: var(--background-light);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-dark);
}

.detail-item strong {
  color: var(--primary-blue);
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-section {
  margin-bottom: 24px;
}

.detail-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-blue);
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.6;
}

.detail-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: 700;
}

.itinerary-text {
  background: var(--background-light);
  padding: 16px;
  border-radius: 8px;
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.modal-actions {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.btn-view-details {
  margin-top: 12px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-view-details:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

@media (max-width: 560px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-buttons {
    flex-wrap: wrap;
  }
  .upcoming-flyers-grid {
    grid-template-columns: 1fr;
  }
  .flyer-section {
    padding: 20px;
  }
}

