           :root {
            --sunset-orange: #F1661C;
            --beige-green: #C4BD86;
            --dark-brown: #3B1E0D;
            --off-white: #fefefe;
            --light-orange: #ff8c42;
            --accent-beige: #e6e0c4;
            --safari-green: #228B22;
            --earth-brown: #8B4513;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark-brown);
        }

    
    
    .adventure-badge {
            background: linear-gradient(45deg, var(--safari-green), #32CD32);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .safari-feature {
            background: linear-gradient(135deg, var(--earth-brown), var(--sunset-orange));
            color: white;
            padding: 10px 18px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .hero-badges {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        /* Navigation Styles */
        .navbar-custom {
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(241, 102, 28, 0.1);
            padding: 12px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand img {
            height: 45px;
            width: auto;
        }

        .nav-link {
            color: var(--dark-brown) !important;
            font-weight: 500;
            padding: 8px 16px !important;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: var(--sunset-orange) !important;
        }

        .btn-primary-custom {
            background: linear-gradient(45deg, var(--sunset-orange), var(--light-orange));
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            color: white;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(241, 102, 28, 0.4);
        }

        /* Section Styling */
        .section-padding {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-brown);
        }

        .section-divider {
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, var(--sunset-orange), var(--light-orange));
            margin: 0 auto 25px;
            border-radius: 2px;
        }

        /* Overview Cards */
        .overview-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .overview-card:hover {
            transform: translateY(-5px);
        }

        .overview-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--sunset-orange), var(--light-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: white;
        }

        .highlight-list {
            list-style: none;
            padding: 0;
        }

        .highlight-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }

        .highlight-list li i {
            color: var(--safari-green);
            margin-right: 10px;
            font-size: 1.1rem;
        }

        .stat-compact {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: #666;
        }

        .stat-compact i {
            color: var(--sunset-orange);
            margin-right: 8px;
            width: 16px;
        }

        /* Day Tabs and Content */
        .itinerary-compact {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .itinerary-tabs {
            display: flex;
            background: var(--dark-brown);
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .itinerary-tabs::-webkit-scrollbar {
            display: none;
        }

        .day-tab {
            background: transparent;
            border: none;
            color: #ccc;
            padding: 15px 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            border-bottom: 3px solid transparent;
        }

        .day-tab:hover {
            background: rgba(241, 102, 28, 0.1);
            color: var(--sunset-orange);
        }

        .day-tab.active {
            color: var(--sunset-orange);
            border-bottom-color: var(--sunset-orange);
            background: rgba(241, 102, 28, 0.1);
        }

        .day-content-wrapper {
            padding: 0;
        }

        .day-item {
            padding: 40px;
            display: none;
            animation: fadeIn 0.5s ease-in;
        }

        .day-item.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .day-image-compact {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
        }

        .day-image-compact img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .day-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--sunset-orange);
            color: white;
            padding: 6px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        .day-info h4 {
            color: var(--dark-brown);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .day-info p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .day-stats-compact {
            margin-top: 20px;
        }

        .stat-badge-small {
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            text-align: center;
        }

        /* Includes/Excludes */
        .includes-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
        }

        .includes-list {
            list-style: none;
            padding: 0;
        }

        .includes-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .includes-list li i {
            margin-right: 10px;
            width: 16px;
        }

        /* Similar Tours Slider */
        .similar-routes-slideshow {
            position: relative;
        }

        .routes-slider-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .routes-slider {
            display: flex;
            transition: transform 0.5s ease;
        }

        .route-slide {
            min-width: 100%;
            padding: 40px;
            background: white;
        }

        .route-slide-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
        }

        .route-slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .tour-difficulty-badge, .tour-duration-badge {
            position: absolute;
            padding: 6px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        .tour-difficulty-badge {
            top: 15px;
            left: 15px;
            background: var(--safari-green);
            color: white;
        }

        .tour-duration-badge {
            top: 15px;
            right: 15px;
            background: rgba(0,0,0,0.8);
            color: var(--sunset-orange);
        }

        .route-slide-title {
            color: var(--dark-brown);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .route-highlights {
            margin: 20px 0;
        }

        .route-highlight {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .route-highlight i {
            color: var(--safari-green);
            margin-right: 8px;
            width: 16px;
        }

        .btn-tour-outline {
            background: transparent;
            border: 2px solid var(--sunset-orange);
            color: var(--sunset-orange);
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-tour-outline:hover {
            background: var(--sunset-orange);
            color: white;
            text-decoration: none;
        }

        /* Slider Navigation */
        .routes-slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
        }

        .slider-btn {
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--sunset-orange);
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: auto;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .slider-btn:hover {
            background: var(--sunset-orange);
            color: white;
            transform: scale(1.1);
        }

        .routes-slider-indicators {
            text-align: center;
            padding: 20px;
            background: #f8f9fa;
        }

        .indicator {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--sunset-orange);
        }

        /* Footer */
        /* Footer */
.footer {
    background: var(--dark-brown);
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--sunset-orange);
    margin-bottom: 1rem;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--sunset-orange);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--sunset-orange);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--deep-orange);
    transform: translateY(-3px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-item i {
    color: var(--sunset-orange);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-links a {
    margin: 0 0.5rem;
    font-size: 0.9rem;
}

        .footer {
            background: linear-gradient(135deg, var(--dark-brown) 0%, #2c1810 100%);
            color: white;
            padding: 60px 0 30px;
        }

        .footer h5 {
            color: var(--sunset-orange);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
            line-height: 2;
        }

        .footer ul li a:hover {
            color: var(--sunset-orange);
        }

        .social-links a {
            color: #ccc;
            font-size: 1.2rem;
            margin-right: 15px;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--sunset-orange);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #ccc;
        }

        .contact-item i {
            color: var(--sunset-orange);
            margin-right: 10px;
            width: 20px;
        }

        .contact-item a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--sunset-orange);
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--sunset-orange);
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 20px;
            right: 20px;
            background: #25d366;
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            background: #128c7e;
            color: white;
            text-decoration: none;
            transform: scale(1.1);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .day-item {
                padding: 20px;
            }

            .day-image-compact {
                height: 200px;
                margin-bottom: 20px;
            }

            .hero-badges {
                justify-content: center;
            }

            .routes-slider-nav {
                padding: 0 10px;
            }
        }