 /* Hide scrollbars globally */
 /* For webkit browsers (Chrome, Safari, Edge) */
 ::-webkit-scrollbar {
     width: 0px;
     height: 0px;
     background: transparent;
 }

 ::-webkit-scrollbar-track {
     background: transparent;
 }

 ::-webkit-scrollbar-thumb {
     background: transparent;
 }

 /* For Firefox */
 html {
     scrollbar-width: none;
 }

 /* For Internet Explorer and Edge */
 body {
     -ms-overflow-style: none;
 }

 /* Hide scrollbar for horizontal scrolling */
 .scrollbar-hide {
     -ms-overflow-style: none;
     scrollbar-width: none;
 }

 .scrollbar-hide::-webkit-scrollbar {
     display: none;
 }

 /* Smooth scrolling for location tags */
 .location-scroll {
     scroll-behavior: smooth;
 }

 /* Enhanced location tag hover effects */
 .location-tag {
     transition: all 0.2s ease;
 }

 .location-tag:hover {
     transform: translateY(-1px);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 }

 /* Mobile responsive location names */
 @media (max-width: 768px) {
     .location-name {
         font-weight: 700 !important;
         font-size: 0.85rem !important;
         min-width: fit-content;
         color: #111827 !important;
         line-height: 1;
         text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
         display: block !important;
         visibility: visible !important;
     }

     .location-tag {
         min-width: fit-content !important;
         padding: 0.6rem 0.75rem !important;
         background: rgba(255, 255, 255, 0.98) !important;
         border: 2px solid rgba(59, 130, 246, 0.3) !important;
         box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15) !important;
         margin-bottom: 0.25rem;
         border-radius: 0.75rem !important;
         flex-shrink: 0;
         white-space: nowrap;
     }

     .location-scroll {
         padding-bottom: 0.2rem !important;
         overflow-x: auto !important;
         -webkit-overflow-scrolling: touch;
         scrollbar-width: none;
         -ms-overflow-style: none;
     }

     .location-scroll::-webkit-scrollbar {
         display: none;
     }

     /* Ensure location section visibility on mobile */
     .location-section {
         margin-bottom: 0.5rem !important;
         padding: 0.5rem;
     }

     /* Enhanced scroll container */
     .location-scroll>div {
         display: flex !important;
         gap: 0.5rem !important;
         padding-bottom: 0.2rem;
         padding-top: 0.5rem;
         width: max-content !important;
     }

     /* Mobile-specific location container improvements */
     .location-section .relative.z-10 {
         padding: 0.25rem;
     }
 }

 /* Extra small mobile devices */
 @media (max-width: 480px) {
     .location-name {
         font-size: 0.85rem !important;
         font-weight: 800 !important;
         color: #000000 !important;
         text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
     }

     .location-tag {
         padding: 0.6rem 0.75rem !important;
         background: rgba(255, 255, 255, 1) !important;
         border: 2px solid rgba(59, 130, 246, 0.5) !important;
         box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2) !important;
     }

     .location-scroll {
         padding: 0.75rem 0 1.25rem 0 !important;
     }
 }

 /* Logo Styles */
 .logo-container {
     position: relative;
     overflow: visible;
 }

 /* Enhanced shadows */
 .shadow-3xl {
     box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.25);
 }

 /* Enhanced button hover effects */
 .group:hover .group-hover\:translate-x-1 {
     transform: translateX(4px);
 }

 /* Card hover effects with enhanced shadows */
 .hover\:shadow-3xl:hover {
     box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05);
 }

 /* Responsive Logo Styles */
 @media (max-width: 640px) {
     .logo-container {
         width: 2.75rem;
         height: 2.75rem;
     }

     .logo-container svg {
         width: 1.75rem;
         height: 1.75rem;
     }

     .group .text-2xl {
         font-size: 1.5rem;
         line-height: 1.2;
     }

     .group .text-xs {
         font-size: 0.625rem;
         display: none;
         /* Hide tagline on very small screens */
     }
 }

 @media (min-width: 641px) and (max-width: 768px) {
     .logo-container {
         width: 3rem;
         height: 3rem;
     }

     .logo-container svg {
         width: 2rem;
         height: 2rem;
     }
 }

 /* Logo hover effects for touch devices */
 @media (hover: none) {
     .logo-container:active {
         transform: scale(0.95);
         transition: transform 0.1s ease;
     }
 }

 /* Enhanced Glassmorphism Effects */
 .glass-effect {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 /* Text gradient animations */
 .text-gradient-animated {
     background: linear-gradient(-45deg, #3b82f6, #8b5cf6, #06b6d4, #10b981);
     background-size: 400% 400%;
     animation: gradient-shift 4s ease infinite;
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 /* Enhanced shadow variations */
 .shadow-colorful {
     box-shadow: 0 10px 25px -3px rgba(59, 130, 246, 0.1), 0 4px 6px -2px rgba(139, 92, 246, 0.05);
 }

 .shadow-colorful:hover {
     box-shadow: 0 20px 40px -3px rgba(59, 130, 246, 0.2), 0 8px 12px -2px rgba(139, 92, 246, 0.1);
 }

 /* Improved focus states */
 .focus-enhanced:focus {
     outline: none;
     box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
     transform: scale(1.02);
 }

 /* Responsive enhancements */


 /* Dark mode support */
 @media (prefers-color-scheme: dark) {
     .auto-dark {
         filter: brightness(0.9) contrast(1.1);
     }
 }

 /* Print styles */
 @media print {
     .no-print {
         display: none !important;
     }
 }

 /* Main Styles */
 body {
     font-family: 'Inter', sans-serif;
     overflow-x: hidden;
     overscroll-behavior-x: none;
     touch-action: pan-y;
     text-align: center;
     scroll-behavior: smooth;
 }

 html {
     overflow-x: hidden;
     scroll-behavior: smooth;
 }

 /* Text Centering Utilities */
 .text-center {
     text-align: center;
 }

 .text-left {
     text-align: left;
 }

 .text-right {
     text-align: right;
 }

 /* Center specific elements */
 .hero-badge {
     text-align: center;
     display: inline-block;
     margin-top: 20px;
 }

 /* Smooth Scrolling for Navigation */
 .nav-link {
     transition: color 0.2s ease;
 }

 .nav-link:hover {
     color: #3b82f6;
 }

 /* Section IDs for Navigation */
 #home,
 #destinations,
 #packages,
 #contact {
     scroll-margin-top: 80px;
     /* Account for fixed header */
 }

 .hero-gradient {
     background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
 }

 .card-hover {
     transition: all 0.2s ease;
 }

 .card-hover:hover {
     box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
 }

 .btn-primary {
     background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
 }

 .btn-primary:hover {
     background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
 }

 .rating-stars {
     color: #fbbf24;
 }

 .bg-animate {
     background-size: 200% 200%;
     animation: gradient 15s ease infinite;
 }

 /* Slider Styles */
 .slider-slide {
     transition: transform 0.3s ease, opacity 0.3s ease;
     border-radius: 0.75rem;
     margin: 0;
     overflow: hidden;
 }

 .slider-slide:not(.active) {
     opacity: 0.7;
     transform: scale(0.95);
 }

 .slider-slide.active {
     opacity: 1;
     transform: scale(1);
 }

 .slider-dot.active {
     background-color: #fde047;
     transform: scale(1.3);
 }

 /* Circular Mini Slider Styles */
 .mini-swiper {
     overflow: visible;
     perspective: 1200px;
     transform-style: preserve-3d;
 }

 .mini-swiper .swiper-wrapper {
     transform-style: preserve-3d;
 }

 .mini-swiper .swiper-slide {
     transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     transform-style: preserve-3d;
     backface-visibility: hidden;
 }

 .mini-swiper .swiper-slide-active {
     transform: translateZ(50px);
     z-index: 2;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
 }

 .mini-swiper .swiper-slide-next,
 .mini-swiper .swiper-slide-prev {
     transform: rotateY(10deg) translateZ(-20px);
     opacity: 0.7;
 }

 .mini-swiper .swiper-slide-next {
     transform: rotateY(-10deg) translateZ(-20px);
 }

 /* Enhanced pagination for circular slider */
 .swiper-pagination-bullet {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.4);
     opacity: 0.6;
     margin: 0 6px !important;
     transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     position: relative;
 }

 .swiper-pagination-bullet:before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 6px;
     height: 6px;
     background: rgba(255, 255, 255, 0.8);
     border-radius: 50%;
     transform: translate(-50%, -50%);
     transition: all 0.2s ease;
 }

 .swiper-pagination-bullet-active {
     width: 40px;
     border-radius: 20px;
     background: linear-gradient(45deg, #3B82F6, #8B5CF6);
     opacity: 1;
     transform: scale(1.2);
 }

 .swiper-pagination-bullet-active:before {
     width: 32px;
     height: 4px;
     border-radius: 2px;
     background: rgba(255, 255, 255, 0.9);
 }

 /* Circular navigation buttons */
 .swiper-button-next:after,
 .swiper-button-prev:after {
     font-size: 1.4rem;
     color: #3B82F6;
     font-weight: bold;
 }

 .swiper-button-next,
 .swiper-button-prev {
     width: 50px;
     height: 50px;
     background: rgba(255, 255, 255, 0.9);
     border-radius: 50%;
     box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.3);
     transition: all 0.2s ease;
 }

 .swiper-button-next:hover,
 .swiper-button-prev:hover {
     background: rgba(255, 255, 255, 1);
     transform: scale(1.1);
     box-shadow: 0 12px 35px -8px rgba(59, 130, 246, 0.4);
 }

 .swiper-button-next:hover:after,
 .swiper-button-prev:hover:after {
     color: #2563EB;
 }

 /* Circular animation keyframes */
 @keyframes circularFloat {

     0%,
     100% {
         transform: translateY(0px) rotate(0deg);
     }

     50% {
         transform: translateY(-10px) rotate(2deg);
     }
 }

/* Testimonial Cards Equal Height */
.testimonialSwiper .swiper-wrapper {
    align-items: stretch;
}

.testimonialSwiper .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

.testimonialSwiper .swiper-slide > div {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonialSwiper .bg-white {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonialSwiper .text-gray-600 {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}