        :root {
            --primary-color: #ffce00;
            --color: #056839;
            --accent-color: #3a7d44;
            --dark-color: #1a1a1a;
            --light-color: #f8f9fa;
            --text-color: #333333;
            --text-light: #6c757d;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #fafafa;
            overflow-x: hidden;
            position: relative;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--color);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: var(--dark-color);
            padding: 12px 30px;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 10px rgba(255, 206, 0, 0.3);
        }

        .btn:hover {
            background: #e6b900;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 206, 0, 0.4);
        }

        .btn-secondary {
            background: var(--color);
            color: white;
            box-shadow: 0 4px 10px rgba(5, 104, 57, 0.3);
        }
        
        .btn-secondary:hover {
            background: #04502c;
            box-shadow: 0 6px 15px rgba(5, 104, 57, 0.4);
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }


        .section-title p {
            max-width: 700px;
            margin: 15px auto 0;
            font-size: 1.1rem;
            color: var(--text-light);
        }

        /* success pop up message for subsrcibing in the footer */
        .success-popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        text-align: center;
        z-index: 1000;
        max-width: 90%;
        width: 400px;
        }

        .success-popup.hidden {
        display: none;
        }

        .success-popup .checkmark {
        font-size: 3rem;
        color: #056839;
        margin-bottom: 1rem;
        }

        .success-popup h3 {
        color: #056839;
        margin-bottom: 0.5rem;
        }

        .success-popup p {
        color: #666;
        }



        /* Parallax Hero Section */
        .parallax-hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('https://www.sita.aero/globalassets/images/airlines-1137400812-1.webp');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            background-attachment: fixed; /* Enables parallax effect */
            height: 70vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            padding-top: 70px;
        }


        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            padding: 20px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
            animation: fadeInDown 1s ease;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            animation: fadeIn 1.5s ease;
        }

        /* Trust Badges Section */
        .trust-badges {
            background: var(--color);
            color: white;
            padding: 30px 0;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .trust-badges .container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .badge {
            margin: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 250px;
        }

        .badge i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .badge span {
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* Marquee Animation Styles */
        .marquee-container {
            background: white;
            padding: 40px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        
        .marquee {
            display: flex;
            overflow: hidden;
            user-select: none;
            gap: var(--gap, 1rem);
            mask-image: linear-gradient(
              to right,
              hsl(0 0% 0% / 0),
              hsl(0 0% 0% / 1) 20%,
              hsl(0 0% 0% / 1) 80%,
              hsl(0 0% 0% / 0)
            );
            -webkit-mask-image: linear-gradient(
              to right,
              hsl(0 0% 0% / 0),
              hsl(0 0% 0% / 1) 20%,
              hsl(0 0% 0% / 1) 80%,
              hsl(0 0% 0% / 0)
            );
          }

          .marquee__group {
            height: 150px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: var(--gap, 4rem);
            min-width: 100%;
            animation: scroll-x var(--duration, 60s) linear infinite;
          }

        .marquee--reverse .marquee__group {
          animation-direction: reverse;
          animation-delay: -3s;
        }

        .marquee:hover .marquee__group {
            animation-play-state: paused;
        }
          @media (prefers-reduced-motion: reduce) {
            .marquee__group {
              animation-play-state: paused;
            }
          }

          @keyframes scroll-x {
            from {
              transform: translateX(0);
            }
            to {
              transform: translateX(calc(-100% - var(--gap)));
            }
          }

          /* Marquee item styling */
          .marquee-item {
            filter: grayscale(30%);
            transition: all 0.3s ease;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
          }

          .marquee-item:hover {
            filter: grayscale(0%) drop-shadow(0 2px 4px rgba(0,0,0,0.1));
            transform: scale(1.05);
          }
          
          .marquee-item img {
            max-height: 50px;
            max-width: 150px;
            object-fit: contain;
          }

        /* Booking Warning Section */
        .booking-warning {
            background: #fff8e1;
            padding: 40px 0;
            border-bottom: 3px solid var(--primary-color);
            border-top: 3px solid var(--primary-color);
        }

        .warning-container {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .warning-icon {
            background: var(--primary-color);
            color: var(--dark-color);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            flex-shrink: 0;
        }

        .warning-content h3 {
            color: #d32f2f;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .warning-content p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .warning-list {
            list-style-type: none;
            padding-left: 0;
            margin-top: 15px;
        }

        .warning-list li {
            padding: 8px 0;
            display: flex;
            align-items: flex-start;
        }

        .warning-list i {
            color: #d32f2f;
            margin-right: 10px;
            font-size: 1.2rem;
            margin-top: 4px;
        }

        /* Service Details Sections */
        .service-section {
            background: var(--light-color);
            padding: 80px 0;
        }

        .service-section-alt {
            background: white;
        }

        .service-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 50px;
            margin: 0 auto;
            max-width: 900px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 5px solid var(--primary-color);
            position: relative;
            overflow: hidden;
        }

        .service-section-alt .service-card {
            background: #f8fbf9;
            border-left: 5px solid var(--accent-color);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .service-card h3 {
            margin-top: 0;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .service-card ul {
            list-style-type: none;
            padding-left: 0;
        }

        .service-card li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: flex-start;
            font-size: 1.05rem;
        }

        .service-card li:last-child {
            border-bottom: none;
        }

        .service-card i {
            color: var(--accent-color);
            margin-right: 12px;
            font-size: 1.3rem;
            min-width: 24px;
            margin-top: 4px;
        }

        .service-card ol {
            padding-left: 20px;
        }

        .service-card ol li {
            border: none;
            padding: 10px 0;
            font-size: 1.05rem;
        }

        /* Airline Partners Section */
        .airline-partners {
            background: white;
            text-align: center;
            padding: 80px 0;
        }

        .airline-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
        }

        .airline-logo {
            width: 140px;
            height: auto;
            filter: grayscale(100%);
            transition: all 0.3s ease;
            opacity: 0.7;
        }

        .airline-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

        /* Middle Parallax Section */
        .middle-parallax {
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('https://gallivant.africa/wp-content/uploads/2024/04/Uganda-Airlines2.jpg');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            background-attachment: fixed;
            height: 60vh;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .parallax-content {
            max-width: 800px;
            padding: 30px;
        }

        .parallax-content h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
            color: white;
        }

        .parallax-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
        }

        /* Testimonials Section */
        .testimonials {
            background: #f1f8ff;
            padding: 80px 0;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            transition: transform 0.3s ease;
            border-top: 4px solid var(--primary-color);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 15px;
            left: 20px;
            font-size: 5rem;
            color: var(--primary-color);
            opacity: 0.1;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-card .quote {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-card .author {
            font-weight: bold;
            color: var(--color);
            display: flex;
            align-items: center;
        }

        .testimonial-card .author::before {
            content: '';
            display: inline-block;
            width: 30px;
            height: 2px;
            background: var(--primary-color);
            margin-right: 10px;
        }

        .rating {
            color: var(--primary-color);
            margin: 10px 0;
            font-size: 1.1rem;
        }

        /* FAQ Section */
        .faq-section {
            background: white;
            padding: 80px 0;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            border-left: 4px solid var(--accent-color);
        }

        .faq-question {
            background: var(--light-color);
            color: var(--color);
            padding: 20px 25px;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question i {
            transition: transform 0.3s ease;
            color: var(--accent-color);
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        /* .faq-answer {
            background: #f9f9f9;
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-answer.show {
            padding: 25px;
            max-height: 500px;
        } */

        .faq-answer {
            display: none;
            padding: 15px;
            background: #f9f9f9;
            color: #333;
            font-size: 15px;
            line-height: 1.6;
            border-radius: 0 8px 8px 8px;
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; max-height: 0; overflow: hidden; }
            to { opacity: 1; padding: 15px; max-height: 500px; overflow: hidden; }
        }


        /* Call-to-Action Section */
        .cta-section {
            background: linear-gradient(135deg, var(--color), var(--accent-color));
            color: white;
            text-align: center;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://responsibletourismcompany.com/wp-content/uploads/2020/10/inside-Uganda-Airlines-Airbus-A330-NEO-coming-to-Entebbe-Airport-Uganda.jpg') center/cover no-repeat;
            opacity: 0.3;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: white;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .contact-infos {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .contact-icons {
            display: flex;
            align-items: center;
            font-size: 1.2rem;
        }

        .contact-icons i {
            margin-right: 10px;
            font-size: 1.5rem;
            color: var(--primary-color);
        }

               
        /* Converted Footer Styles */
        .footer {
            background-color: #111827;
            color: #fff;
            padding: 3rem 0;
            font-size: 1rem;
        }
        
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .grid-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        @media (min-width: 768px) {
            .grid-container {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .footer-section {
            padding: 0.5rem;
        }
        
        .footer-heading {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .footer-text {
            color: #9ca3af;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #fff;
        }
        
        .contact-iconss {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.5rem;
            color: #9ca3af;
        }
        
        .contact-iconss i {
            margin-right: 0.5rem;
            margin-top: 0.25rem;
        }
        
        .newsletter-form {
            display: flex;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border-top-left-radius: 0.375rem;
            border-bottom-left-radius: 0.375rem;
            border: none;
            color: #111827;
            outline: none;
        }
        
        .newsletter-button {
            background-color: #056839;
            color: white;
            padding: 0.5rem 1.1rem;
            border-top-right-radius: 0.375rem;
            border-bottom-right-radius: 0.375rem;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .newsletter-button:hover {
            background-color: #056839;
            opacity: 90%;
        }
        
        .affiliate-section {
            margin-top: 3rem;
            border-top: 1px solid #1f2937;
            padding-top: 2rem;
        }
        
        .affiliate-container {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .affiliate-container {
                flex-direction: row;
            }
        }
        
        .affiliate-block {
            text-align: center;
            width: 100%;
        }
        
        @media (min-width: 768px) {
            .affiliate-block {
                text-align: left;
                width: auto;
            }
            
            .affiliate-block.right {
                text-align: right;
            }
        }
        
        .affiliate-text {
            color: #d1d5db;
            font-weight: 500;
            margin-bottom: 0.75rem;
        }
        
        .affiliate-logos {
            display: flex;
            gap: 0.25rem;
            align-items: center;
            justify-content: center;
        }
        
        @media (min-width: 768px) {
            .affiliate-logos {
                justify-content: flex-start;
            }
            
            .affiliate-logos.right {
                justify-content: flex-end;
            }
        }
        
        .affiliate-logo-link {
            display: inline-block;
        }
        
        .affiliate-logo {
            height: 3rem;
            opacity: 1;
            transition: opacity 0.3s;
        }
        
        .affiliate-logo-link:hover .affiliate-logo {
            opacity: 0.8;
        }
        
        .booking-logo {
            height: 2rem;
        }
        
        .tripadvisor-logo {
            height: 5rem;
        }
        
        .pesapal-logo {
            height: 3rem;
        }
        
        .copyright-section {
            border-top: 1px solid #1f2937;
            margin-top: 2rem;
            padding-top: 1.5rem;
        }
        
        .copyright-container {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
        }
        
        @media (min-width: 768px) {
            .copyright-container {
                flex-direction: row;
            }
        }
        
        .copyright-text {
            color: #9ca3af;
            margin-bottom: 1rem;
        }
        
        @media (min-width: 768px) {
            .copyright-text {
                margin-bottom: 0;
            }
        }
        
        .social-icons {
            display: flex;
            gap: 1.5rem;
        }
        
        .social-link {
            color: #9ca3af;
            transition: color 0.3s;
            font-size: 1.25rem;
        }
        
        .social-link:hover {
            color: #fff;
        }
        
        /* Logo Placeholders */
        .logo-placeholder {
            background: #374151;
            color: #9ca3af;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: bold;
            text-align: center;
        }
        
        /* Animation for affiliate blocks */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .animate-left {
            animation: fadeInLeft 0.6s ease-out forwards;
        }
        
        .animate-right {
            animation: fadeInRight 0.6s ease-out forwards;
        }
 

 
        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: var(--dark-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            z-index: 99;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .service-card {
                padding: 40px 30px;
            }
                        
            .warning-container {
                flex-direction: column;
                text-align: center;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                background: white;
                width: 300px;
                height: calc(100vh - 70px);
                flex-direction: column;
                align-items: center;
                padding: 50px 0;
                transition: right 0.4s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-item {
                margin: 15px 0;
            }

            .mobile-toggle {
                display: block;
            }
            
            .marquee__group {
                height: 80px;
                gap: var(--gap, 2rem);
            }
            
            .marquee-item img {
                max-height: 40px;
            }
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }
            
            .hero-content h1 {
                font-size: 2.3rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .trust-badges .container {
                flex-direction: column;
                align-items: center;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .parallax-content h2 {
                font-size: 2rem;
            }
            
            .contact-infos {
                flex-direction: column;
                gap: 20px;
            }
                        
            .warning-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }

            .parallax-hero {
                min-height: 500px;
            }
        }

        @media (max-width: 576px) {
            .container {
                width: 95%;
            }
            
            .service-card {
                padding: 30px 20px;
            }
            
            .testimonial-card {
                padding: 25px 20px;
            }
            
            .faq-question {
                padding: 15px 20px;
                font-size: 1.1rem;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .parallax-content h2 {
                font-size: 1.8rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            .warning-content h3 {
                font-size: 1.5rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .marquee__group {
                height: 60px;
            }
            
            .marquee-item img {
                max-height: 30px;
            }
        }

        /* Mobile-specific parallax adjustments */
        @media only screen and (max-width: 768px) {
            .parallax-hero, 
            .middle-parallax {
                background-attachment: scroll !important;
            }
        }


        
            /* Redesigned sidebar button container with center panel positioning */
        .sidebar-button-container {
            position: fixed;
            right: 0;
            top: 70%;
            transform: translateY(-50%);
            z-index: 1000;
        }

        /* Modern professional button design */
        .sidebar-button {
            background: linear-gradient(135deg, #cc7f0c 0%, #db4905 100%);
            color: white;
            padding: 18px 25px;
            border: none;
            border-radius: 30px 0 0 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 320px;
            position: relative;
            border-right: 4px solid #0bf52a;
        }

        .sidebar-button:hover {
            opacity: 0;
            transform: translateX(20px) translateY(-50%);
        }

        /* Professional logo with SafariBookings colors */
        .safari-logo {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: white;
            font-weight: bold;
            box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
        }

        /* Centered hover panel with professional SafariBookings design */
        .hover-panel {
            position: fixed;
            left: 27%;
            top: -120%;
            transform: translate(-50%, -50%);
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            padding: 0;
            width: 480px;
            max-height: 900px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            overflow: hidden;
            border: 1px solid #e5e7eb;
        }

        .sidebar-button-container:hover .hover-panel {
            opacity: 1;
            visibility: visible;
        }
        .safari-logo img{
            width: 100%;
            height: 100%;
            border-radius: 8px;
        }
        .partner-text {
            display: inline;
            }
        /* Professional header section */
        .panel-headers {
            background: linear-gradient(135deg, #f58e07 0%, #db5314 100%);
            color: white;
            padding: 25px;
            text-align: center;
            position: relative;
        }

        .panel-headers h3 {
            font-size: 25px;
            font-weight: 900;
            margin-bottom: 8px;
        }

        .panel-headers p {
            font-size: 14px;
            opacity: 0.9;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .close-btn:hover {
            opacity: 1;
        }

        /* Trust indicators section */
        .trust-section {
            padding: 20px 25px;
            background: #f8fafc;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .rating-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .stars {
            color: #f59e0b;
            font-size: 18px;
        }

        .rating-text {
            font-weight: 600;
            color: #1f2937;
        }

        .verified-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            background: #dcfce7;
            color: #166534;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        /* Professional reviews section matching SafariBookings design */
        .reviews-section {
            padding: 25px;
            max-height: 260px;
            overflow-y: auto;
        }

        .review {
            margin-bottom: 20px;
            padding: 20px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .reviewer-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 16px;
        }

        .reviewer-info {
            flex: 1;
        }

        .reviewer-name {
            font-weight: 600;
            color: #1f2937;
            font-size: 14px;
        }

        .reviewer-details {
            font-size: 12px;
            color: #6b7280;
            margin-top: 2px;
        }

        .review-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }

        .review-stars {
            color: #f59e0b;
            font-size: 14px;
        }

        .review-score {
            font-weight: 600;
            color: #1f2937;
            font-size: 14px;
        }

        .review-text {
            color: #374151;
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .review-meta {
            font-size: 11px;
            color: #9ca3af;
            border-top: 1px solid #f3f4f6;
            padding-top: 8px;
        }

        /* Professional action section */
        .action-section {
            max-height: 200px;
            padding: 20px 15px;
            background: #f8fafc;
            border-top: 1px solid #e5e7eb;
            text-align: center;
        }

        .review-count {
            font-size: 13px;
            color: #6b7280;
            margin-bottom: 15px;
        }

        .action-button {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
        }

        .action-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
        }

        /* Custom scrollbar for reviews */
        .reviews-section::-webkit-scrollbar {
            width: 6px;
        }

        .reviews-section::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 3px;
        }

        .reviews-section::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }

        .reviews-section::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .sidebar-button {
                min-width: 80px;
                font-size: 14px;
                padding: 15px 20px;
            }
            
            .hover-panel {
                left: -180%;
                width: 90vw;
                max-width: 500px;
                max-height: 80vh;
            }
              .partner-text {
                display: none;
            }
        
        }