 :root {
            --primary-blue: #1e3a8a;
            --secondary-blue: #3b82f6;
            --accent-orange: #f59e0b;
            --light-gray: #f8fafc;
            --dark-gray: #374151;
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar {
            background: #3375CB;
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 4px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            z-index: 1050;
        }
        .navbar.scrolled {
            background: #3375CB;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-orange);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        .navbar-nav .nav-link:hover {
            color: var(--accent-orange) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        /* Carousel Styles */
        .hero-carousel {
            height: 100vh;
        }
        
        .carousel-item {
            height: 100vh;
            position: relative;
        }
        
        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.6));
            z-index: 1;
        }
        
        .carousel-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
            width: 90%;
            max-width: 800px;
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }
        
        .carousel-control-prev {
            left: 30px;
        }
        
        .carousel-control-next {
            right: 30px;
        }
        
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 24px;
            height: 24px;
        }
        
        .carousel-indicators {
            bottom: 30px;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
            border: 2px solid white;
            background: transparent;
            transition: all 0.3s ease;
        }
        
        .carousel-indicators button.active {
            background: #3375CB;
            border-color: var(--accent-orange);
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }
        .floating-plane {
            position: absolute;
            color: rgba(255,255,255,0.1);
            font-size: 3rem;
            animation: float 20s infinite ease-in-out;
        }
        .floating-plane:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        .floating-plane:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: -7s;
        }
        .floating-plane:nth-child(3) {
            bottom: 30%;
            left: 20%;
            animation-delay: -14s;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-20px) rotate(5deg); }
            50% { transform: translateY(-10px) rotate(-3deg); }
            75% { transform: translateY(-25px) rotate(3deg); }
        }
        
        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
            background: #fff;
            -webkit-background-clip: text;
            background-clip: text;
        }
        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn-primary-custom {
            background: #3375CB;
            border: none;
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }
        .btn-primary-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        .btn-primary-custom:hover::before {
            left: 100%;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
        }
        .btn-secondary-custom {
            background: transparent;
            border: 3px solid white;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-secondary-custom:hover {
            background: white;
            color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255,255,255,0.3);
        }
        
        .features-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
        }
        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
            background: #3375CB;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-subtitle {
            font-size: 1.3rem;
            text-align: center;
            color: var(--dark-gray);
            margin-bottom: 4rem;
            opacity: 0.8;
        }
        .feature-card {
            background: white;
            border-radius: 25px;
            padding: 3rem;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
        }
        .feature-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 80px rgba(0,0,0,0.15);
        }
        .feature-icon {
            font-size: 4rem;
            background: #3375CB;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            display: block;
        }
        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #3375CB;
            margin-bottom: 1.5rem;
        }
        .feature-description {
            color: var(--dark-gray);
            opacity: 0.8;
            line-height: 1.8;
        }
        .destinations-section {
            padding: 120px 0;
            background: #3375CB;
            color: white;
        }
        .destination-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 350px;
            transition: all 0.4s ease;
            cursor: pointer;
        }
        .destination-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
            z-index: 2;
            transition: all 0.3s ease;
        }
        .destination-card:hover::before {
            background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
        }
        .destination-card:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
        }
        .destination-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .destination-card:hover .destination-image {
            transform: scale(1.1);
        }
        .destination-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            z-index: 3;
            color: white;
        }
        .destination-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .destination-price {
            font-size: 1.2rem;
            color: var(--accent-orange);
            font-weight: 600;
        }
        .stats-section {
            background: #3375CB;
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            background-size: 50px 50px;
            animation: backgroundMove 20s linear infinite;
        }
        @keyframes backgroundMove {
            0% { background-position: 0 0; }
            100% { background-position: 50px 50px; }
        }
        .stat-item {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }
        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            display: block;
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 1.3rem;
            opacity: 0.9;
            font-weight: 500;
        }
        .testimonials-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }
        .testimonial-card {
            background: white;
            border-radius: 25px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            position: relative;
            height: 100%;
            border: 1px solid rgba(59, 130, 246, 0.1);
        }
        .testimonial-quote {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--dark-gray);
            margin-bottom: 2rem;
            font-style: italic;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-avatar-initials {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #3375CB;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-transform: uppercase;
            }

        .testimonial-info h5 {
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 0.25rem;
        }
        .testimonial-info p {
            color: var(--dark-gray);
            opacity: 0.7;
            margin: 0;
        }
        .contact-section {
            background: linear-gradient(135deg, var(--dark-gray), #1f2937);
            color: white;
            padding: 80px 0;
            position: relative;
        }
        .contact-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255,255,255,0.1);
            padding: 1.5rem 4rem;
            letter-spacing: 0.1rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }
        .contact-item:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }
        .contact-item i {
            color: var(--accent-orange);
            font-size: 1.5rem;
        }
        .contact-item span {
            font-weight: 500;
        }
        .footer {
            background: #111827;
            color: white;
            padding: 60px 0 30px;
        }
        .footer-content {
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 3rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: white;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        .footer-section ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section ul li a:hover {
            color: var(--accent-orange);
        }
        .social-links {
            display: flex;
            gap: 1rem;
        }
        .social-links a {
            width: 50px;
            height: 50px;
            background: #3375CB;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            .section-title {
                font-size: 2.5rem;
            }
            .contact-info {
                flex-direction: column;
                gap: 1.5rem;
            }
            .destination-card {
                height: 280px;
            }
            .carousel-control-prev {
                left: 15px;
            }
            .carousel-control-next {
                right: 15px;
            }
            .carousel-control-prev,
            .carousel-control-next {
                width: 50px;
                height: 50px;
            }
        }
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #3375CB;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
        }
        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }