 :root {
            --primary-orange: #d08718;
            --dark-green: #0b190c;
            --light-cream: #fdeacc;
            --white: #ffffff;
            --black: #1a1a1a;
            --tripadvisor-green: #00aa6c;
            --google-blue: #4285F4;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Merriweather', serif;
            font-weight: 700;
        }

        /* Top Info Bar */
        .top-info-bar {
            background: var(--dark-green);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }

        .top-info-bar .contact-info a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .top-info-bar .contact-info a:hover {
            color: var(--primary-orange);
        }

        .social-icons a {
            color: white;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--primary-orange);
        }

        /* Navigation */
        .navbar {
            background: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }

        .navbar-brand img {
            max-height: 60px;
        }

        .navbar-nav .nav-link {
            color: var(--black) !important;
            font-weight: 500;
            padding: 10px 15px !important;
            transition: color 0.3s ease;
        }

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

        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 25px rgba(0,0,0,0.15);
            border-radius: 8px;
        }

        .mega-menu {
            min-width: 600px;
            padding: 30px;
        }

        .mega-menu h3 {
            color: var(--primary-orange);
            font-size: 18px;
            margin-bottom: 15px;
        }

        .mega-menu .list-unstyled li {
            margin-bottom: 8px;
        }

        .mega-menu .list-unstyled a {
            color: var(--black);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .mega-menu .list-unstyled a:hover {
            color: var(--primary-orange);
        }

        .inquiry-btn {
            background: var(--primary-orange);
            color: white !important;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .inquiry-btn:hover {
            background: var(--dark-green);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            height: 60vh;
            min-height: 500px;
            overflow: hidden;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

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

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(11, 25, 12, 0.5), rgba(11, 25, 12, 0.5));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .btn-primary-custom {
            background: var(--primary-orange);
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid var(--primary-orange);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary-custom:hover {
            background: transparent;
            color: var(--primary-orange);
            transform: translateY(-2px);
        }

        .btn-secondary-custom {
            background: transparent;
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid white;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-secondary-custom:hover {
            background: white;
            color: var(--dark-green);
            transform: translateY(-2px);
        }

        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 2;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .slider-dot.active {
            background: var(--primary-orange);
        }

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

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

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--dark-green);
            margin-bottom: 15px;
        }

        .section-divider {
            width: 80px;
            height: 4px;
            background: var(--primary-orange);
            margin: 0 auto 20px;
        }

        .section-description {
            /*max-width: 800px;*/
            margin: 0 auto;
            color: var(--black);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* Trust Badges */
        .trust-badges {
            background: var(--light-cream);
        }

        .trust-badge {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .trust-badge:hover {
            transform: translateY(-8px);
        }

        .trust-badge-icon {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
        }

        .trust-badge h4 {
            color: var(--dark-green);
            margin-bottom: 15px;
        }

        /* Safari Tours with Video Background */
        .safari-tours-section {
            position: relative;
            background: var(--white);
            overflow: hidden;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.1;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.9);
            z-index: 1;
        }

        .safari-content {
            position: relative;
            z-index: 2;
        }

        /* Tour Cards */
        .tour-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .tour-card:hover {
            transform: translateY(-10px);
        }

        .tour-img-container {
            position: relative;
            overflow: hidden;
        }

        .tour-img-container img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .tour-card:hover .tour-img-container img {
            transform: scale(1.1);
        }

        .tour-duration {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-orange);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
        }

        .tour-content {
            padding: 25px;
        }

        .tour-title {
            color: var(--dark-green);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .tour-features {
            list-style: none;
            margin-bottom: 20px;
        }

        .tour-features li {
            padding: 6px 0;
            color: var(--black);
        }

        .tour-features i {
            color: var(--primary-orange);
            margin-right: 10px;
            width: 16px;
        }

        .tour-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .price {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-orange);
        }

        .tour-btn {
            background: var(--primary-orange);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s ease;
        }

        .tour-btn:hover {
            background: var(--dark-green);
            color: white;
        }

        /* Gallery Section */
        .gallery-section {
            background: var(--light-cream);
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 20px;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
        }

        .gallery-item img, .gallery-item video {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(11, 25, 12, 0.8));
            color: white;
            padding: 20px;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 0;
        }

        /* Kilimanjaro Routes Section */
        .kilimanjaro-section {
            background: var(--white);
        }

        .route-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
            margin-bottom: 20px;
        }

        .route-card:hover {
            transform: translateY(-10px);
        }

        .route-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .route-content {
            padding: 20px;
        }

        .route-difficulty {
            display: inline-block;
            background: var(--primary-orange);
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .route-name {
            color: var(--dark-green);
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .route-duration {
            color: var(--primary-orange);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .route-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-orange);
            margin-bottom: 15px;
        }

        /* Activities Section */
        .activities-section {
            background: var(--light-cream);
        }

        .activity-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
            margin-bottom: 20px;
        }

        .activity-card:hover {
            transform: translateY(-10px);
        }

        .activity-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .activity-content {
            padding: 25px;
            text-align: center;
        }

        .activity-card h4 {
            color: var(--dark-green);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: var(--dark-green);
            color: white;
        }

        .testimonial-card {
            background: white;
            color: var(--black);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            text-align: center;
            position: relative;
            height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .testimonial-stars {
            color: #ffc107;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 0.95rem;
            flex-grow: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-info h5 {
            margin-bottom: 5px;
            color: var(--primary-orange);
            font-size: 0.9rem;
        }

        .author-info span {
            color: var(--black);
            font-size: 12px;
            opacity: 0.7;
        }

        /* Custom Carousel Styles */
        .carousel-indicators {
            position: static;
            margin-top: 30px;
            margin-bottom: 0;
        }

        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: none;
            background-color: rgba(208, 135, 24, 0.4);
            margin: 0 5px;
        }

        .carousel-indicators .active {
            background-color: var(--primary-orange);
        }

        .testimonials-section .carousel-indicators [data-bs-target] {
            background-color: rgba(255, 255, 255, 0.4);
        }

        .testimonials-section .carousel-indicators .active {
            background-color: var(--primary-orange);
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: var(--primary-orange);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
        }

        .carousel-control-prev {
            left: -25px;
        }

        .carousel-control-next {
            right: -25px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background-color: var(--dark-green);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 20px;
            height: 20px;
        }

        /* Blog Section */
        .blog-section {
            background: var(--white);
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-10px);
        }

        .blog-img-container {
            position: relative;
            overflow: hidden;
        }

        .blog-img-container img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-card:hover .blog-img-container img {
            transform: scale(1.1);
        }

        .blog-date {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-orange);
            color: white;
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            line-height: 1;
        }

        .blog-date .day {
            font-size: 18px;
            font-weight: 700;
            display: block;
        }

        .blog-date .month {
            font-size: 12px;
            text-transform: uppercase;
        }

        .blog-content {
            padding: 25px;
        }

        .blog-category {
            color: var(--primary-orange);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .blog-title {
            color: var(--dark-green);
            margin-bottom: 15px;
            font-size: 1.1rem;
            line-height: 1.4;
        }

        .blog-excerpt {
            color: var(--black);
            margin-bottom: 20px;
            line-height: 1.6;
            opacity: 0.8;
        }

        .blog-read-more {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .blog-read-more:hover {
            color: var(--dark-green);
        }

        /* Footer */
        .footer-section {
            background: var(--dark-green);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-logo img {
            max-height: 80px;
        }

        .footer-about {
            color: rgba(255,255,255,0.8);
            margin-bottom: 20px;
        }

        .footer-social .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: var(--primary-orange);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .footer-social .social-icon:hover {
            background: white;
            color: var(--primary-orange);
            transform: translateY(-3px);
        }

        .footer-heading {
            color: var(--primary-orange);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .footer-contact {
            list-style: none;
        }

        .footer-contact li {
            display: flex;
            margin-bottom: 15px;
        }

        .contact-icon {
            color: var(--primary-orange);
            margin-right: 15px;
            margin-top: 5px;
            min-width: 20px;
        }

        .footer-contact a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .newsletter-text {
            color: rgba(255,255,255,0.8);
            margin-bottom: 20px;
        }

        .newsletter-form .form-control {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            border-radius: 5px 0 0 5px;
        }

        .newsletter-form .form-control::placeholder {
            color: rgba(255,255,255,0.6);
        }

        .newsletter-form .btn {
            border-radius: 0 5px 5px 0;
            border: 1px solid rgba(255,255,255,0.2);
            background: var(--primary-orange);
        }

        .newsletter-form .btn:hover {
            background: white;
            color: var(--dark-green);
        }

        .payment-methods {
            color: var(--primary-orange);
        }

        .payment-methods i {
            font-size: 1.8rem;
            margin-right: 10px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
        }

        .footer-bottom-links {
            list-style: none;
            display: flex;
            gap: 20px;
            margin: 0;
        }

        .footer-bottom-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

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

            .hero-content p {
                display: none;
            }

            .btn-primary-custom,
            .btn-secondary-custom {
                padding: 10px 20px;
                font-size: 14px;
            }

            .mega-menu {
                min-width: auto;
                padding: 20px;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .section-description,
            .footer-about,
            .newsletter-text {
                text-align: left !important;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 10px;
            }

            .hero-section {
                height: 50vh;
                min-height: 400px;
            }

            .testimonial-card {
                height: auto;
                min-height: 300px;
            }

            .carousel-control-prev,
            .carousel-control-next {
                display: none !important;
            }
        }

        @media (min-width: 769px) {
            .carousel-indicators {
                display: none !important;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .btn-primary-custom,
            .btn-secondary-custom {
                padding: 8px 16px;
                font-size: 13px;
            }

            .section-padding {
                padding: 50px 0;
            }

            .hero-section {
                height: 45vh;
                min-height: 350px;
            }
        }

        /* Touch/Swipe support */
        .activities-slider,
        .testimonials-slider {
            touch-action: pan-y;
        }