:root {
    --primary: #ffce00;
    --primary-light: #cfb446;
    --text-dark: #000000;
    --text-light: #faf6f6;
    --bg-light: #f8f9fa;
    --primary-color: #ffce00;
    --color: #056839;
    --secondary-color: #d62828;
    --secondary-light: #f0c75e;
    --accent-color: #3a7d44;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 50px;
    --border-color: #dee2e6;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ribbon-wildlife: #3B82F6;
    --ribbon-safari: #10B981;
    --ribbon-water: #06B6D4;
    --ribbon-adventure: #F59E0B;
    --ribbon-cultural: #8B5CF6;
    --transition-speed: 2s;
    --transition-speeds: 0.5s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.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;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--color) 0%, var(--accent-color) 100%);
    color: var(--text-light);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(5, 104, 57, 0.95);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('https://www.gorillaugandasafaris.com/wp-content/uploads/2024/11/How-many-mountain-gorillas-are-in-Bwindi-Impenetrable-National-Park.jpg');
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 3rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    box-shadow: var(--shadow);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color);
    font-size: 1.1rem;
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--dark-color);
}

.search-btn:hover {
    background: var(--secondary-light);
    transform: translateY(-50%) scale(1.05);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* FAQ Sections */
.faq-section {
    margin-bottom: 4rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-section:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.section-header {
    background: linear-gradient(135deg, var(--color) 0%, var(--accent-color) 100%);
    color: var(--text-light);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 206, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.section-icon {
    font-size: 2.5rem;
    color: var(--primary);
    width: 60px;
    height: 60px;
    background: rgba(255, 206, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
}

.section-title {
    flex: 1;
}

.section-title h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-title p {
    opacity: 0.9;
    font-size: 1rem;
}

.section-stats {
    text-align: center;
    color: var(--primary);
}

.section-stats .count {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.section-stats .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* FAQ Items */
.faq-content {
    padding: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: rgba(5, 104, 57, 0.02);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    gap: 1rem;
}

.faq-question:hover {
    color: var(--color);
}

.faq-question.active {
    color: var(--color);
    background: rgba(5, 104, 57, 0.05);
}

.faq-question-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-question-icon {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--transition);
    color: var(--primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 206, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary);
    color: var(--dark-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 2rem 2rem 4rem;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
}

       
.back-home {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #3b82f6;
    font-weight: bold;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.back-home i {
    font-size: 16px;
}

.back-home:hover {
    color: #2563eb;
}



/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--color) 0%, var(--accent-color) 100%);
    color: var(--text-light);
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-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,206,0,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(255,206,0,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,206,0,0.1)"/><circle cx="30" cy="80" r="1" fill="rgba(255,206,0,0.1)"/><circle cx="70" cy="70" r="2" fill="rgba(255,206,0,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-btn.primary {
    background: var(--primary);
    color: var(--dark-color);
}

.cta-btn.primary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 206, 0, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.cta-btn.secondary:hover {
    background: var(--text-light);
    color: var(--color);
    transform: translateY(-2px);
}

.contact-infos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-items {
    text-align: center;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.contact-items:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.contact-items i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-items h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-items a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary);
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .nav-links {
        display: none;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .section-header {
        padding: 1.5rem;
    }

    .section-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .section-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 1rem 1.5rem 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .cta-buttons {
        grid-template-columns: 1fr;
    }

    .contact-infos {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary);
    color: var(--dark-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

/* Search Results Highlighting */
.highlight {
    background: var(--primary);
    color: var(--dark-color);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.no-results i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}



            /* 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;
            }
        
        }