        :root {
            --primary-green: #6cb33d;
            --dark-brown: #513a2a;
            --light-brown: #8b6f47;
            --off-white: #fefefe;
            --black: #333;
        }

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

        /* Hero Section */
        .hero-section {
            position: relative;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }

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

        .hero-badge {
            background: var(--primary-green);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .price-highlight {
            background: rgba(255,255,255,0.15);
            border: 2px solid white;
            padding: 15px 25px;
            border-radius: 25px;
            display: inline-block;
            font-weight: 600;
            font-size: 1.2rem;
            backdrop-filter: blur(10px);
        }

        /* Navigation Breadcrumb */
        .breadcrumb-section {
            background: var(--off-white);
            padding: 15px 0;
        }

        .breadcrumb {
            background: none;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item a {
            color: var(--primary-green);
            text-decoration: none;
        }

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

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

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

        .section-divider {
            width: 80px;
            height: 3px;
            background: linear-gradient(45deg, var(--primary-green), #6cb33d);
            margin: 0 auto 20px;
            border-radius: 2px;
        }

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

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

        /* Itinerary Compact Styles */
        .itinerary-compact {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .itinerary-tabs {
            display: flex;
            background: var(--primary-green);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .day-tab {
            background: none;
            border: none;
            color: rgba(255,255,255,0.7);
            padding: 15px 25px;
            font-weight: 500;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .day-tab:hover,
        .day-tab.active {
            background: rgba(255,255,255,0.1);
            color: white;
            transform: translateY(-2px);
        }

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

        .day-item {
            display: none;
            padding: 30px;
            border-bottom: 1px solid #eee;
        }

        .day-item:last-child {
            border-bottom: none;
        }

        .day-item.active {
            display: block;
            animation: fadeInUp 0.5s ease-out;
        }

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

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

        .day-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-green);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .day-info h4 {
            color: var(--dark-brown);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .day-info h4 i {
            color: var(--primary-green);
            margin-right: 10px;
        }

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

        .stat-compact {
            font-size: 0.9rem;
            color: #666;
        }

        .stat-compact i {
            color: var(--primary-green);
            margin-right: 8px;
        }

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

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

        .highlight-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .highlight-list li:last-child {
            border-bottom: none;
        }

        .highlight-list i {
            color: var(--primary-green);
            margin-right: 10px;
            width: 16px;
        }

        /* Pricing Section */
        .pricing-section {
            background: white;
        }

        .pricing-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .pricing-header {
            background: linear-gradient(45deg, var(--dark-brown), var(--light-brown));
            color: white;
            padding: 25px;
            text-align: center;
        }

        .pricing-body {
            padding: 0;
        }

        .price-row {
            display: flex;
            align-items: center;
            padding: 15px 25px;
            border-bottom: 1px solid #eee;
        }

        .price-row:last-child {
            border-bottom: none;
        }

        .group-size {
            flex: 1;
            font-weight: 500;
        }

        .price-amount {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-green);
        }

        .price-note {
            font-size: 0.9rem;
            color: #666;
            text-align: center;
            padding: 20px;
            background: var(--off-white);
        }

        /* Includes/Excludes */
        .includes-section {
            background: var(--off-white);
        }

        .includes-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
        }

        .includes-card h4 {
            color: var(--dark-brown);
            margin-bottom: 25px;
            font-weight: 600;
        }

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

        .includes-list li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 0.95rem;
        }

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

        .includes-list .fa-check {
            color: var(--primary-green);
        }

        .includes-list .fa-times {
            color: #dc3545;
        }

        /* Gallery Section */
        .gallery-section {
            background: white;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

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

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--dark-brown) 0%, var(--light-brown) 100%);
            color: white;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary-custom {
            background: linear-gradient(45deg, var(--primary-green), #20c997);
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            color: white;
            text-decoration: none;
            box-shadow: 0 10px 25px rgba(74, 124, 89, 0.3);
        }

        .btn-secondary-custom {
            background: transparent;
            border: 2px solid white;
            padding: 13px 28px;
            border-radius: 30px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
        }

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

        .whatsapp-btn {
            background: #6cb33d;
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .whatsapp-btn:hover {
            background: #6cb33d;
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
        }

        /* Quick Info Bar */
        .quick-info-bar {
            background: var(--primary-green);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .quick-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .quick-price {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .quick-book {
            background: white;
            color: var(--primary-green);
            padding: 8px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .quick-book:hover {
            background: var(--off-white);
            color: var(--dark-brown);
            text-decoration: none;
        }

     .lead{
        text-align: left;
     }
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .quick-info {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .day-item {
                padding: 20px;
            }

            .day-tab {
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            /* Mobile Text Alignment - Left Align All Text */
            .section-header {
                text-align: left;
            }

            .section-header h2 {
                text-align: left;
            }

            .section-header .section-divider {
                margin: 0 0 20px 0;
            }

            .section-header p.lead {
                text-align: left;
            }

            .overview-card {
                text-align: left;
            }

            .overview-card{
                text-align: left;
            }

            .pricing-header {
                text-align: left;
            }

            .pricing-header h4 {
                text-align: left;
            }

            .price-note {
                text-align: left;
            }

            .includes-section .section-header {
                text-align: left;
            }

            .gallery-section .section-header {
                text-align: left;
            }

            .cta-section {
                text-align: left;
            }

            .cta-section h2 {
                text-align: left;
            }

            .cta-section p.lead {
                text-align: left;
            }

            .cta-section .row.text-start {
                text-align: left;
            }

            .overview-card .overview-icon {
                margin-left: 0;
                margin-right: auto;
            }

            /* Keep CTA buttons centered but text left */
            .cta-buttons {
                align-items: flex-start;
            }

            /* Gallery section text left */
            .gallery-section .section-header h2,
            .gallery-section .section-header p {
                text-align: left;
            }
        }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}


/* Option 1: Dropdown Style for Mobile (Recommended for 7+ days) */
@media (max-width: 768px) {
    .itinerary-tabs-mobile {
        display: none; /* Hide by default, show when many days */
        position: relative;
        background: var(--primary-green);
        border-radius: 10px 10px 0 0;
    }

    .day-selector-dropdown {
        width: 100%;
        background: var(--primary-green);
        color: white;
        border: none;
        padding: 15px 20px;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 10px 10px 0 0;
        cursor: pointer;
        position: relative;
    }

    .day-selector-dropdown:after {
        content: '\f078'; /* Font Awesome down arrow */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .day-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #ddd;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 100;
        max-height: 250px;
        overflow-y: auto;
        display: none;
    }

    .day-dropdown-menu.show {
        display: block;
    }

    .day-dropdown-item {
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
        cursor: pointer;
        transition: background 0.3s ease;
        font-weight: 500;
    }

    .day-dropdown-item:last-child {
        border-bottom: none;
    }

    .day-dropdown-item:hover {
        background: var(--off-white);
    }

    .day-dropdown-item.active {
        background: var(--primary-green);
        color: white;
    }
}

/* Option 2: Improved Horizontal Scroll with Navigation Arrows */
@media (max-width: 768px) {
    .itinerary-tabs-wrapper {
        position: relative;
        background: var(--primary-green);
        border-radius: 10px 10px 0 0;
    }

    .itinerary-tabs {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        scroll-behavior: smooth;
        padding: 0 40px; /* Space for navigation arrows */
    }

    .itinerary-tabs::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .day-tab {
        background: none;
        border: none;
        color: rgba(255,255,255,0.7);
        padding: 12px 20px;
        font-weight: 500;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: 80px;
        text-align: center;
        border-radius: 20px;
        margin: 5px 2px;
    }

    .day-tab:hover,
    .day-tab.active {
        background: rgba(255,255,255,0.15);
        color: white;
        transform: translateY(-2px);
    }

    /* Navigation Arrows */
    .tab-nav-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.2);
        border: none;
        color: white;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
        backdrop-filter: blur(10px);
    }

    .tab-nav-arrow:hover {
        background: rgba(255,255,255,0.3);
    }

    .tab-nav-arrow.disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    .tab-nav-left {
        left: 5px;
    }

    .tab-nav-right {
        right: 5px;
    }

    /* Scroll Indicators */
    .scroll-indicator {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 20px;
        pointer-events: none;
        z-index: 5;
    }

    .scroll-indicator-left {
        left: 35px;
        background: linear-gradient(to right, var(--primary-green), transparent);
    }

    .scroll-indicator-right {
        right: 35px;
        background: linear-gradient(to left, var(--primary-green), transparent);
    }
}

/* Quick inline styles for immediate testing - move to your style.css file */
@media (max-width: 768px) {
    /* Ensure tabs container has proper mobile styling */
    .itinerary-tabs {
        background: var(--primary-green);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 10px;
    }
    
    .itinerary-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .day-tab {
        white-space: nowrap;
        flex-shrink: 0;
        min-width: 75px;
        padding: 10px 15px;
        font-size: 0.85rem;
        margin: 5px 2px;
        border-radius: 15px;
    }
    
    /* Show scroll hint with shadow */
    .itinerary-tabs::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 30px;
        background: linear-gradient(to left, var(--primary-green), transparent);
        pointer-events: none;
    }
}

/* Option 3: Compact Grid Style for Mobile */
@media (max-width: 768px) {
    .itinerary-tabs-grid {
        display: none; /* Show this version for very long itineraries */
        background: var(--primary-green);
        border-radius: 10px 10px 0 0;
        padding: 15px;
    }

    .day-tabs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 8px;
    }

    .day-tab-grid {
        background: rgba(255,255,255,0.1);
        border: none;
        color: rgba(255,255,255,0.8);
        padding: 10px 5px;
        font-weight: 500;
        font-size: 0.85rem;
        cursor: pointer;
        border-radius: 15px;
        transition: all 0.3s ease;
        text-align: center;
    }

    .day-tab-grid.active,
    .day-tab-grid:hover {
        background: rgba(255,255,255,0.25);
        color: white;
        transform: scale(1.05);
    }
}

/* Option 4: Accordion Style (Alternative for very long itineraries) */
@media (max-width: 768px) {
    .itinerary-accordion {
        display: none; /* Use this for 10+ day itineraries */
    }

    .accordion-day-item {
        border: 1px solid #ddd;
        border-radius: 10px;
        margin-bottom: 10px;
        overflow: hidden;
    }

    .accordion-day-header {
        background: var(--primary-green);
        color: white;
        padding: 15px 20px;
        cursor: pointer;
        font-weight: 600;
        display: flex;
        justify-content: between;
        align-items: center;
        border: none;
        width: 100%;
        text-align: left;
    }

    .accordion-day-header:after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .accordion-day-header.active:after {
        transform: rotate(180deg);
    }

    .accordion-day-content {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .accordion-day-content.active {
        max-height: 1000px; /* Adjust based on content */
        padding: 20px;
    }
}

/* Utility Classes for Dynamic Switching */
.hide-on-mobile {
    @media (max-width: 768px) {
        display: none !important;
    }
}

.show-on-mobile {
    display: none;
    @media (max-width: 768px) {
        display: block !important;
    }
}

.show-on-mobile-flex {
    display: none;
    @media (max-width: 768px) {
        display: flex !important;
    }
}

/* Smooth Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.day-dropdown-menu.show {
    animation: slideInDown 0.3s ease-out;
}

/* Enhanced Mobile Typography */
@media (max-width: 768px) {
    .day-item {
        padding: 15px;
    }

    .day-info h4 {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .day-stats-compact {
        margin: 15px 0;
    }
}



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

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

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

        .section-divider {
            width: 80px;
            height: 3px;
            background: linear-gradient(45deg, var(--primary-green), #6cb33d);
            margin: 0 auto 20px;
            border-radius: 2px;
        }


        /* Safari Category Cards */
        .safari-category-card {
            background: white;
            border-radius: 20px;
            padding: 0;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
        }

        .safari-category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .safari-card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .safari-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .safari-category-card:hover .safari-card-image img {
            transform: scale(1.1);
        }

        .safari-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .safari-category-icon {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .safari-card-content {
            padding: 30px;
        }

        .safari-card-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark-brown);
            margin-bottom: 15px;
        }

        .safari-card-description {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .safari-features {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }

        .safari-features li {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: #555;
        }

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

        .safari-price-range {
            background: linear-gradient(45deg, var(--primary-green), #6cb33d);
            color: white;
            padding: 10px 15px;
            border-radius: 20px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .safari-card-actions {
            display: flex;
            gap: 10px;
        }

        .btn-safari-primary {
            background: linear-gradient(45deg, var(--primary-green), #6cb33d);
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            flex: 1;
            text-align: center;
            font-size: 0.9rem;
        }

        .btn-safari-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(74, 124, 89, 0.3);
            color: white;
            text-decoration: none;
        }

        .btn-safari-outline {
            border: 2px solid var(--primary-green);
            color: var(--primary-green);
            background: transparent;
            padding: 8px 18px;
            border-radius: 25px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            flex: 1;
            text-align: center;
            font-size: 0.9rem;
        }

        .btn-safari-outline:hover {
            background: var(--primary-green);
            color: white;
            text-decoration: none;
        }

        /* Special Styling for Different Safari Types */
        .budget-safari {
            border-top: 4px solid #6cb33d;
        }

        .midrange-safari {
            border-top: 4px solid var(--primary-green);
        }

        .luxury-safari {
            border-top: 4px solid #ffc107;
        }

        .honeymoon-safari {
            border-top: 4px solid #e91e63;
        }

 
        /* Responsive Design */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }
            
            .safari-card-content {
                padding: 20px;
            }
            
            .safari-card-actions {
                flex-direction: column;
            }
            
            .section-header {
                text-align: left;
            }
            
            .section-header .section-divider {
                margin: 0 0 20px 0;
            }
        }


             .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .price-highlight {
            background: var(--primary-green);
            padding: 10px 20px;
            border-radius: 20px;
            display: inline-block;
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* Navigation Breadcrumb */
        .breadcrumb-section {
            background: var(--off-white);
            padding: 15px 0;
        }

        .breadcrumb {
            background: none;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item a {
            color: var(--primary-green);
            text-decoration: none;
        }

        /* Filter Section */
        .filter-section {
            background: white;
            padding: 30px 0;
            border-bottom: 1px solid #eee;
        }

        .filter-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 20px;
        }

        .filter-btn {
            background: transparent;
            border: 2px solid var(--primary-green);
            color: var(--primary-green);
            padding: 8px 20px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--primary-green);
            color: white;
        }

        .sort-select {
            max-width: 200px;
            margin: 0 auto;
        }

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

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

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

        .section-divider {
            width: 80px;
            height: 3px;
            background: linear-gradient(45deg, var(--primary-green), #20c997);
            margin: 0 auto 20px;
            border-radius: 2px;
        }

        /* Compact Safari Cards */
        .safari-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 520px; /* Fixed height for consistency */
            border: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
        }

        /* Add extra space after every 3rd visible package */
        .safari-item.add-space-after {
            margin-bottom: 70px !important;
        }

        .safari-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .safari-card.featured {
            border: 2px solid var(--primary-green);
            position: relative;
        }

        .featured-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-green);
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }

        .safari-image {
            position: relative;
            height: 180px;
            overflow: hidden;
        }

        .safari-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .safari-card:hover .safari-image img {
            transform: scale(1.05);
        }

        .duration-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 5px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .safari-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .safari-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-brown);
            line-height: 1.3;
        }

        .safari-description {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.9rem;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1; /* This will make the description take available space */
        }

        .safari-highlights {
            margin-bottom: 15px;
            min-height: 75px; /* Ensure consistent height for highlights section */
        }

        .highlight-item {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
            font-size: 0.85rem;
        }

        .highlight-item i {
            color: var(--primary-green);
            margin-right: 8px;
            width: 12px;
            font-size: 0.8rem;
        }

        .price-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
            margin-top: auto; /* This pushes the price section to the bottom */
        }

        .price-info {
            display: flex;
            flex-direction: column;
        }

        .price-amount {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-green);
        }

        .price-note {
            font-size: 0.8rem;
            color: #666;
        }

        .btn-primary-custom {
            background: linear-gradient(45deg, var(--primary-green), #20c997);
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 0.9rem;
        }

        .btn-primary-custom:hover {
            transform: translateY(-1px);
            color: white;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
        }

        .btn-secondary-custom {
            background: transparent;
            border: 2px solid var(--primary-green);
            padding: 10px 20px;
            border-radius: 25px;
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-secondary-custom:hover {
            background: var(--primary-green);
            color: white;
            text-decoration: none;
        }

        /* Info Section */
        .info-section {
            background: var(--off-white);
        }

        .info-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            height: 100%;
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--primary-green), #20c997);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            color: white;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--dark-brown) 0%, var(--light-brown) 100%);
            color: white;
        }

        .whatsapp-btn {
            background: #25d366;
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            background: #128c7e;
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
        }

        /* Package Counter */
        .package-counter {
            text-align: center;
            margin-bottom: 30px;
            color: #666;
            font-weight: 500;
        }

        /* Load More Button */
        .load-more-section {
            text-align: center;
            margin-top: 40px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .filter-buttons {
                justify-content: flex-start;
            }

            .safari-card {
                height: 500px; /* Medium height for tablets */
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .safari-image {
                height: 160px;
            }

            .safari-card {
                height: 480px; /* Slightly smaller height for mobile */
            }
            
            .filter-buttons {
                justify-content: center;
            }

            /* On mobile, add space after every 2 packages instead of 3 */
            .safari-item.add-space-after {
                margin-bottom: 50px !important;
            }
        }

        /* Animation for filtering */
        .safari-card.hidden {
            display: none;
        }

        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

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

                .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .price-highlight {
            background: var(--primary-green);
            padding: 12px 24px;
            border-radius: 25px;
            display: inline-block;
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* Navigation Breadcrumb */
        .breadcrumb-section {
            background: var(--off-white);
            padding: 15px 0;
        }

        .breadcrumb {
            background: none;
            padding: 0;
            margin: 0;
        }

        .breadcrumb-item a {
            color: var(--primary-green);
            text-decoration: none;
        }

        /* Filter Section */
        .filter-section {
            background: white;
            padding: 30px 0;
            border-bottom: 1px solid #eee;
        }

        .filter-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 20px;
        }

        .filter-btn {
            background: transparent;
            border: 2px solid var(--primary-green);
            color: var(--primary-green);
            padding: 8px 20px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--primary-green);
            color: white;
        }

        .sort-select {
            max-width: 200px;
            margin: 0 auto;
        }

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

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

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

        .section-divider {
            width: 80px;
            height: 3px;
            background: linear-gradient(45deg, var(--primary-green), #20c997);
            margin: 0 auto 20px;
            border-radius: 2px;
        }

        /* Compact Safari Cards */
        .safari-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 540px; /* Fixed height for consistency */
            border: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
        }

        .safari-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .safari-card.featured {
            border: 2px solid var(--primary-green);
            position: relative;
        }

        .featured-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-green);
            color: white;
            padding: 6px 14px;
            border-radius: 18px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }

        .safari-image {
            position: relative;
            height: 180px;
            overflow: hidden;
        }

        .safari-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .safari-card:hover .safari-image img {
            transform: scale(1.05);
        }

        .duration-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 6px 14px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .quality-badge {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: var(--light-brown);
            color: white;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .safari-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .safari-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-brown);
            line-height: 1.3;
        }

        .safari-description {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.9rem;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }

        .safari-highlights {
            margin-bottom: 15px;
            min-height: 80px;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            margin-bottom: 6px;
            font-size: 0.85rem;
        }

        .highlight-item i {
            color: var(--primary-green);
            margin-right: 8px;
            width: 12px;
            font-size: 0.8rem;
        }

        .price-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
            margin-top: auto;
        }

        .price-info {
            display: flex;
            flex-direction: column;
        }

        .price-amount {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-green);
        }

        .price-note {
            font-size: 0.8rem;
            color: #666;
        }

        .btn-primary-custom {
            background: linear-gradient(45deg, var(--primary-green), #6cb33d);
            border: none;
            padding: 10px 18px;
            border-radius: 22px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 0.9rem;
        }

        .btn-primary-custom:hover {
            transform: translateY(-1px);
            color: white;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
        }

        .btn-secondary-custom {
            background: transparent;
            border: 2px solid var(--primary-green);
            padding: 10px 20px;
            border-radius: 25px;
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-secondary-custom:hover {
            background: var(--primary-green);
            color: white;
            text-decoration: none;
        }

        /* Info Section */
        .info-section {
            background: var(--off-white);
        }

        .info-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            height: 100%;
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--primary-green), #6cb33d);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            color: white;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--dark-brown) 0%, var(--light-brown) 100%);
            color: white;
        }

        .whatsapp-btn {
            background: #6cb33d;
            color: white;
            padding: 14px 28px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            background: #6cb33d;
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
        }

        /* Package Counter */
        .package-counter {
            text-align: center;
            margin-bottom: 30px;
            color: #666;
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .filter-buttons {
                justify-content: flex-start;
            }

            .safari-card {
                height: 520px;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .safari-image {
                height: 160px;
            }

            .safari-card {
                height: 500px;
            }
            
            .filter-buttons {
                justify-content: center;
            }
        }

        /* Animation for filtering */
        .safari-card.hidden {
            display: none;
        }

        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

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


        /* Gallery Section */
        .gallery-section {
            background: white;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

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

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }