/* Custom styles */
        .hero-gradient {
            background: linear-gradient(135deg, rgba(15,76,129,0.9) 0%, rgba(110,193,228,0.8) 100%);
        }
        
        .destination-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
        }
        
        .destination-card:hover {
            transform: translateY(-10px) scale(1.03) rotateX(5deg);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        .destination-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }
        
        .destination-card:hover::before {
            opacity: 1;
        }
        
        .destination-card-content {
            transform: translateZ(30px);
        }
        
        .testimonial-card {
            perspective: 1000px;
        }
        
        .testimonial-inner {
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }
        
        .testimonial-card:hover .testimonial-inner {
            transform: rotateY(180deg);
        }
        
        .testimonial-front, .testimonial-back {
            backface-visibility: hidden;
        }
        
        .testimonial-back {
            transform: rotateY(180deg);
        }
        
        .cta-btn {
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.6s;
            z-index: -1;
        }
        
        .cta-btn:hover::before {
            left: 100%;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #FF7D33;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        .pulse-slow {
            animation: pulse-slow 6s infinite;
        }
        
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        .search-box {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .price-tag {
            clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
        }
        
        /* Mobile adjustments */
        @media (max-width: 768px) {
            .parallax {
                background-attachment: scroll;
            }
            
            .hero-content {
                padding-top: 100px;
            }
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #0F4C81;
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #0a365e;
        }