    
        :root {
            --primary: #1a6ea4;
            --secondary: #28a745;
            --dark: #333;
            --light: #f8f9fa;
            --accent: #ff6b6b;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            line-height: 1.6;
        }
        
        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary);
        }
        
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 30px;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
        }
        
        .tour-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 30px;
        }
        
        .tour-card:hover {
            transform: translateY(-10px);
        }
        
        .tour-card img {
            height: 200px;
            object-fit: cover;
        }
        
        .tour-card .card-body {
            padding: 20px;
        }
        
        .price-tag {
            background: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .hotel-category {
            display: inline-block;
            padding: 3px 10px;
            background: var(--light);
            border-radius: 15px;
            font-size: 0.8rem;
            margin-right: 5px;
            margin-bottom: 5px;
        }
        
        .hotel-category.deluxe {
            background: #ffeb3b;
        }
        
        .hotel-category.luxury {
            background: #e91e63;
            color: white;
        }
        
        .itinerary-day {
            border-left: 3px solid var(--primary);
            padding-left: 20px;
            margin-bottom: 30px;
            position: relative;
        }
        
        .itinerary-day:before {
            content: '';
            position: absolute;
            left: -8px;
            top: 0;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: var(--primary);
        }
        
        .sidebar-widget {
            background: var(--light);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }
        
        .testimonial-card img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer a {
            color: #ddd;
            text-decoration: none;
        }
        
        .footer a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        
        .btn-primary {
            background: var(--primary);
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
        }
        
        .btn-primary:hover {
            background: #155a8a;
        }
        
        .carousel-caption {
            background: rgba(0,0,0,0.5);
            border-radius: 10px;
            padding: 20px;
            bottom: 20px;
        }
        
        .inclusion-item {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .inclusion-item i {
            color: var(--secondary);
            margin-right: 10px;
        }
        
        .booking-form {
            background: var(--light);
            padding: 25px;
            border-radius: 10px;
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
            }
        }

