/* General Reset */
* {
  box-sizing: border-box;
}

body {
    font-family: 'Euromode', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #fff;
    color: #000;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    min-height: 100vh; /* Ensure body is at least viewport height */
}
body::-webkit-scrollbar {
    display: none;  /* Hide scrollbar for Chrome, Safari, Opera */
}
html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
html::-webkit-scrollbar {
    display: none;  /* Hide scrollbar for Chrome, Safari, Opera */
}
header {
    background: #fff; /* White */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 8px 40px;
    font-size: 13px;
    background: #000;
    color: #fff;
}
.top-bar .socials a {
    margin-left: 10px;
    color: #fff;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    height: 64px;
    background: #fff;
    min-width: 0;
    overflow: visible;
}
nav .logo {
    display: flex;
    align-items: center;
    height: 54px;
    min-width: 54px;
    margin-right: 14px;
}
nav .logo img {
    height: 30px;
    width: auto;
    display: block;
}
nav ul {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: nowrap;
}
nav ul li {
    font-weight: bold;
    color: #333;
    font-size: 1em;
    position: relative;
    letter-spacing: 0.5px;
    padding: 0 0 0 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}
nav ul li a {
    color: inherit;
    text-decoration: none;
    padding: 4px 8px;
    display: block;
}
nav ul li.active {
    color: #fff;
}
nav ul li.active > a,
nav ul li a.active {
    font-weight: bold;
    color: #1A237E;
    position: relative;
}
nav ul li.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: #1A237E;
    border-radius: 2px;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 64px;
}
nav-search-bar, .nav-search-bar {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 0 10px;
    height: 32px;
    margin: 0;
    box-shadow: none;
    position: relative;
    overflow: visible;
}
.nav-search-bar input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0 8px;
    font-size: 0.85em;
    width: 90px;
}
.nav-search-bar input::placeholder {
    color: #e0e0e0;
}
.nav-search-bar button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 40px;
    padding: 18px 32px;
    max-width: 700px;
    margin: 40px auto 0 auto;
    position: relative;
    top: 40px;
}

.search-bar div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-bar label {
    color: var(--primary);
    font-size: 1.2em;
}

.search-bar select, .search-bar input[type="date"] {
    border: none;
    background: #f5f7fa;
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 1em;
}

.search-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 28px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
}

/* Google Translate Styles */
#google_translate_element {
    margin: 0 10px;
    height: 28px;
    font-size: 0.85em;
}
#google_translate_element select {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
}
#google_translate_element select:hover {
    border-color: #FF9800;
}
#google_translate_element select option {
    background-color: #1A237E;
    color: #fff;
}
.book-btn {
    background: #90d8f7 !important;
    color: #111 !important;
    border: none;
    padding: 8px 18px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: none;
}
.book-btn:hover {
    background: #6ec1e4 !important;
}
.book-btn a {
    color: inherit !important;
    text-decoration: none;
    display: block;
}

.hero {
    background: var(--accent);
    padding: 60px 0 40px 0;
    box-shadow: var(--shadow);
    border-radius: 0 0 var(--radius) var(--radius);
    margin-bottom: 40px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 0 auto;
    padding: 0 5vw;
    gap: 40px;
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 12px;
    font-weight: 700;
}

.hero-content p {
    color: var(--muted);
    font-size: 1.1em;
    margin-bottom: 18px;
}

.learn-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
}

.hero-imgs {
    position: relative;
    width: 350px;
    height: 180px;
}

.hero-imgs .img1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 180px;
    height: 120px;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow);
    z-index: 1;
}

.hero-imgs .img2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 180px;
    height: 120px;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow);
    z-index: 1;
}

.hero-imgs .plane {
    position: absolute;
    left: 80px;
    top: 30px;
    width: 180px;
    z-index: 2;
    transform: rotate(-8deg);
}

.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 40px;
    padding: 18px 32px;
    max-width: 700px;
    margin: 40px auto 0 auto;
    position: relative;
    top: 40px;
}

.search-bar div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-bar label {
    color: var(--primary);
    font-size: 1.2em;
}

.search-bar select, .search-bar input[type="date"] {
    border: none;
    background: #f5f7fa;
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 1em;
}

.search-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 28px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
}

.testimonials {
    background: #fff;
    margin: 80px 0 0 0;
    padding: 60px 0 40px 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonials h2 {
    font-size: 2em;
    margin-bottom: 6px;
}

.testimonials p {
    color: var(--muted);
    margin-bottom: 32px;
}

.testimonial-avatars {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 32px;
}

.testimonial-avatars img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f5f7fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.testimonial-card {
    max-width: 500px;
    margin: 0 auto;
    background: #f5f7fa;
    border-radius: var(--radius);
    padding: 24px 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: left;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.testimonial-header img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header strong {
    font-size: 1.1em;
    display: block;
}

.testimonial-header span {
    color: var(--muted);
    font-size: 0.95em;
}

/* Destination Lists Section */
.destination-lists-section {
    padding: 60px 0;
    background-color: #f8f9fa; /* Light background */
}

.destination-lists-section .container {
    margin: 0 auto;
    padding: 0 20px;
}

.destination-row {
    margin-bottom: 40px;
    overflow-x: hidden; /* Hide horizontal overflow */
}

.destination-row h2 {
    text-align: center;
    font-size: 2em;
    color: #1A237E;
    margin-bottom: 20px;
}

.destination-card-container {
    display: flex;
    overflow-x: hidden; /* Hide scrollbar */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 15px 0;
    width: max-content; /* Allow container to be wider than viewport */
}

/* Hide scrollbar for various browsers */
.destination-card-container::-webkit-scrollbar {
    display: none;
}

.destination-card-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    overflow: -moz-scrollbars-none; /* Old Firefox */
}

/* Add rule to hide scrollbar track */
.destination-card-container::-webkit-scrollbar-track {
    display: none;
}

.destination-card {
    flex: 0 0 350px;
    width: 350px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    margin: 5px;
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: transform 0.3s ease;
}

.destination-card p {
    padding: 12px 8px;
    margin: 0;
    font-size: 0.95em;
    font-weight: 600;
    color: #1A237E;
    line-height: 1.4;
    /* Remove fixed height and line clamp to show full name */
    height: auto;
    display: block;
    overflow: visible;
    text-overflow: unset;
    width: 100%;
    box-sizing: border-box;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.destination-card:hover img {
    transform: scale(1.05);
}

.destination-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

/* Re-enable auto-swipe animations so that the carousel continues to play automatically */
@keyframes swipeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); /* Adjust based on duplicated content */ }
}

@keyframes swipeRight {
    0% { transform: translateX(-50%); /* Start from the end for duplicated content */ }
    100% { transform: translateX(0); /* Swipe to the beginning */ }
}

.destination-row.top .destination-card-container {
    animation: swipeLeft 240s linear infinite; /* Increased duration even more */
    white-space: nowrap; /* Prevent wrapping */
}

.destination-row.bottom .destination-card-container {
    animation: swipeRight 360s linear infinite; /* Increased duration even more */
    white-space: nowrap; /* Prevent wrapping */
}

/* (Fix manual button issue: Pause auto-swipe animation on hover so that manual buttons (scrollBy) work) */
.destination-row.top .destination-card-container:hover,
.destination-row.bottom .destination-card-container:hover {
    animation-play-state: paused;
}





/* Enhanced Responsive Breakpoints */
@media (max-width: 1400px) {
  .hero-next-content {
    max-width: 1000px;
    padding: 50px 30px 0 30px;
  }
  
  .destination-card {
    flex: 0 0 320px;
    width: 320px;
  }
  
  .destination-card img {
    height: 220px;
  }
}

@media (max-width: 1200px) {
  .hero-next-content {
    max-width: 900px;
    padding: 40px 20px 0 20px;
  }
  
  .destination-card {
    flex: 0 0 300px;
    width: 300px;
  }
  
  .destination-card img {
    height: 200px;
  }
}

@media (max-width: 1000px) {
  .hero-next-content {
    max-width: 800px;
    padding: 30px 15px 0 15px;
  }
  
  .destination-card {
    flex: 0 0 280px;
    width: 280px;
  }
  
  .destination-card img {
    height: 180px;
  }
}

@media (max-width: 900px) {
    nav {
        flex-direction: column;
        height: auto;
        padding: 10px 10px;
    }
    nav .logo {
        height: 50px;
    }
    .nav-right {
        flex-direction: column;
        gap: 10px;
        height: auto;
    }
    nav ul {
        gap: 16px;
    }
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .hero-imgs {
        width: 100%;
        height: 120px;
    }
    .search-bar {
        flex-direction: column;
        gap: 14px;
        padding: 18px 10px;
        top: 20px;
    }
    .testimonials {
        padding: 0 2vw;
    }
    
    .hero-next-content {
        flex-direction: column;
        padding: 30px 10px 0 10px;
        text-align: center;
    }
    
    .hero-next-left {
        /* Add destination card responsive styles */
    }
    
    /* Destination cards for medium screens */
    .destination-card {
        flex: 0 0 260px;
        width: 260px;
    }
    
    .destination-card img {
        height: 160px;
    }
}

@media (max-width: 600px) {
    .destination-card {
        flex: 0 0 240px;
        width: 240px;
    }
    
    .destination-card img {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .destination-card {
        flex: 0 0 220px;
        width: 220px;
    }
    
    .destination-card img {
        height: 120px;
    }
}

.hero-next-right {
    margin-top: 30px;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-next-left h1 {
        font-size: 2.2em;
    }
    
    .hero-next-left p {
        font-size: 1.1em;
    }
    
    .destination-row h2 {
        font-size: 1.6em;
    }
}

@media (max-width: 600px) {
  .hero-next-left h1 {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  
  .hero-next-left p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  
  .hero-btn {
    padding: 10px 24px;
    font-size: 1em;
  }
  

  
  .destination-row h2 {
    font-size: 1.4em;
    margin-bottom: 15px;
  }
  
  .destination-lists-section {
    padding: 40px 0;
  }
  
  .destination-card-container {
    gap: 10px;
    padding: 10px 0;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-bottom .social-icons {
    justify-content: center;
  }
  

}

@media (max-width: 480px) {
  .hero-next-left h1 {
    font-size: 1.6em;
    margin-bottom: 12px;
  }
  
  .hero-next-left p {
    font-size: 0.9em;
    margin-bottom: 18px;
  }
  
  .hero-btn {
    padding: 8px 20px;
    font-size: 0.9em;
  }
  

  
  .destination-row h2 {
    font-size: 1.3em;
    margin-bottom: 12px;
  }
  
  .destination-lists-section {
    padding: 30px 0;
  }
  
  .destination-card-container {
    gap: 8px;
    padding: 8px 0;
  }
  

}

@media (max-width: 360px) {
  .hero-next-left h1 {
    font-size: 1.4em;
    margin-bottom: 10px;
  }
  
.hero-next-left p {
    font-size: 0.85em;
    margin-bottom: 15px;
}
  
.hero-btn {
    padding: 7px 18px;
    font-size: 0.85em;
  }
  
  .destination-card {
    flex: 0 0 260px !important;
    width: 260px !important;
  }
  
  .destination-card img {
    height: 180px !important;
  }
  
  .destination-card p {
    font-size: 0.7em;
    padding: 4px 2px;
  }
  
  .destination-row h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  
  .destination-lists-section {
    padding: 25px 0;
  }
  
  .destination-card-container {
    gap: 6px;
    padding: 6px 0;
  }
  

}

@media (max-width: 320px) {
  .hero-next-left h1 {
    font-size: 1.3em;
  }
  
  .hero-next-left p {
    font-size: 0.8em;
  }
  
  .hero-btn {
    padding: 6px 16px;
    font-size: 0.8em;
  }
  
  .destination-card {
    flex: 0 0 240px !important;
    width: 240px !important;
  }
  
  .destination-card img {
    height: 160px !important;
  }
  
  .destination-card p {
    font-size: 0.65em;
  }
  
  .destination-row h2 {
    font-size: 1.1em;
  }
  

}


/* Footer Styles (from home page) */
footer {
    background: #1A237E;
    color: #fff;
    padding: 40px 0 0 0;
    margin-top: 0;
  }
  .footer-top {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
  }
  .footer-logo-section {
    max-width: 300px;
  }
  .footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
  }
  .footer-top h4 {
    margin-bottom: 10px;
    color: #fff;
  }
  .footer-top ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-top ul li {
    margin-bottom: 6px;
  }
  .footer-top input[type="email"] {
    padding: 10px 15px;
    border-radius: 6px;
    border: none;
    margin-bottom: 12px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer-top input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  .footer-top button {
    background: #fff;
    color: #1A237E;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
  }
  .footer-top button:hover {
    background: #1A237E;
    color: #fff;
  }
  .footer-top p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.95em;
  }
  .footer-bottom {
    text-align: left;
    padding: 18px 0;
    background: #1A237E;
    font-size: 0.95em;
  }
  .footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
  }
  .footer-bottom .social-icons {
    display: flex;
    gap: 15px;
  }
  .footer-bottom .social-icons a {
    color: #fff;
    font-size: 1.1em;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
  }
  .footer-bottom .social-icons a:hover {
    transform: translateY(-3px);
  }
  .footer-bottom .social-icons a.facebook:hover {
    background: #1877f2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
  }
  .footer-bottom .social-icons a.twitter:hover {
    background: #1da1f2;
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
  }
  .footer-bottom .social-icons a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
  }
  .footer-bottom .social-icons a.linkedin:hover {
    background: #0077b5;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4);
  }
  .footer-bottom .social-icons a.youtube:hover {
    background: #ff0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
  }
  @media (max-width: 600px) {
    .footer-bottom .container {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
    .footer-bottom .social-icons {
      justify-content: center;
    }
  }
  @media (max-width: 900px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }

.hero-next {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #1A237E 60%, #2336a3 100%);
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-next-bg {
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.08;
    z-index: 1;
}
.hero-next-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 40px 0 40px;
}
.hero-next-left {
    flex: 1;
    color: #fff;
    padding-right: 40px;
}
.hero-next-left h1 {
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.1;
}
.hero-next-left .highlight {
    background: linear-gradient(90deg, #ff9800 30%, #fff200 100%);
    color: #1A237E;
    padding: 0 10px;
    border-radius: 8px;
    font-weight: 900;
}
.hero-next-left p {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 28px;
}
.hero-btn {
    display: inline-block;
    background: #fff;
    color: #1A237E;
    font-weight: bold;
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 1.1em;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(26,35,126,0.08);
    transition: background 0.2s, color 0.2s;
}
.hero-btn:hover {
    background: #ff9800;
    color: #fff;
}
.hero-next-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}
.hero-img-collage {
    position: relative;
    width: 320px;
    height: 220px;
}
.hero-img-collage .main-img {
    width: 220px;
    height: 160px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(26,35,126,0.18);
    position: absolute;
    left: 0;
    top: 30px;
    z-index: 2;
    animation: floatMain 3s ease-in-out infinite alternate;
}
.hero-img-collage .side-img {
    width: 120px;
    height: 90px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(26,35,126,0.12);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    animation: floatSide 3s ease-in-out infinite alternate;
}
.hero-img-collage .floating-plane {
    width: 90px;
    position: absolute;
    left: 100px;
    bottom: 0;
    z-index: 3;
    animation: flyPlane 4s ease-in-out infinite alternate;
}
@keyframes floatMain {
    to { transform: translateY(-12px) scale(1.03);}
}
@keyframes floatSide {
    to { transform: translateY(10px) scale(1.04);}
}
@keyframes flyPlane {
    to { transform: translateY(-18px) rotate(-8deg);}
}
.hero-wave {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}

/* Lightbox Styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2em;
  cursor: pointer;
    padding: 0;
  width: 40px;
  height: 40px;
    display: flex;
    align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Enhanced Mobile Touch Interactions */
.destination-card {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  touch-action: pan-y pinch-zoom;
}

.destination-card-container {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.destination-card {
  scroll-snap-align: start;
}

/* Loading States */
body:not(.loaded) {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.loaded {
  opacity: 1;
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1A237E;
    flex-direction: column;
    padding: 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  
  .nav-links.active {
    transform: translateY(0);
  }
  
  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

/* Enhanced Touch Feedback */
.destination-card:active {
  transform: scale(0.98) !important;
}



/* Enhanced Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .destination-card-container {
    scroll-behavior: auto;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .destination-card {
    border: 2px solid #000;
  }
  

}

/* Print Styles */
@media print {
  .lightbox-overlay,
  .nav-toggle {
    display: none !important;
  }
  
  .destination-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* Landscape Mobile Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-next {
    min-height: 300px;
  }
  
  .hero-next-content {
    padding: 20px 10px 0 10px;
  }
  

}

/* Ultra-wide Screen Support */
@media (min-width: 2000px) {
  .destination-card {
    flex: 0 0 700px !important;
    width: 700px !important;
  }
  
  .destination-card img {
    height: 500px !important;
  }
  
  .hero-next-content {
    max-width: 1600px;
  }
}

/* Focus Management for Accessibility */
.destination-card:focus {
  outline: 3px solid #1A237E;
  outline-offset: 2px;
}

.lightbox-close:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Enhanced Scroll Indicators */
.destination-card-container::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  background: linear-gradient(to right, transparent, rgba(248, 249, 250, 0.8));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.destination-card-container:hover::after {
  opacity: 1;
}

/* Mobile-specific scroll indicators */
@media (max-width: 768px) {
  .destination-card-container::after {
    width: 15px;
  }
  
  .destination-card-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 15px;
    background: linear-gradient(to left, transparent, rgba(248, 249, 250, 0.8));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  
  .destination-card-container:hover::before {
    opacity: 1;
    }
}
