/* Hero Section Styling */
        .hero-section {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(var(--hero-overlayy), var(--hero-overlayy)), url('../images/buggy.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
        }
        
        /* Desert background simulation using gradients and pseudo-elements */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(218, 165, 32, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(160, 82, 45, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, 
                    #c8860d 0%, 
                    #daa520 25%, 
                    #cd853f 50%, 
                    #d2b48c 75%, 
                    #f4a460 100%
                );
            z-index: -1;
        }
        
        /* Hero Content */
        .hero-content {
            text-align: center;
            max-width: 800px;
            padding: 2rem;
            position: relative;
            z-index: 2;
            margin: auto;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            font-weight: 400;
            line-height: 1.6;
            margin-bottom: 3rem;
            opacity: 0.95;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        /* Button Styling */
        .btn-primary-orange {
            background-color: var(--primary-orange);
            border: 2px solid var(--primary-orange);
            color: white;
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin: 0 0.5rem;
        }
        
        .btn-primary-orange:hover {
            background-color: var(--primary-orange-hover);
            border-color: var(--primary-orange-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
            color: white;
        }
        
        .btn-outline-white {
            background-color: transparent;
            border: 2px solid white;
            color: white;
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin: 0 0.5rem;
        }
        
        .btn-outline-white:hover {
            background-color: white;
            border-color: white;
            color: #333;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
        }
        
        /* Action Buttons Container */
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 1rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }
            
            .btn-primary-orange,
            .btn-outline-white {
                padding: 0.875rem 1.5rem;
                font-size: 1rem;
                width: 100%;
                text-align: center;
                margin: 0.5rem 0;
            }
            
            .hero-actions {
                flex-direction: column;
                width: 100%;
            }
            
            .hero-content {
                padding: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
        }
        
        /* Scroll indicator (optional enhancement) */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }
        
        /* Accessibility improvements */
        .btn-primary-orange:focus,
        .btn-outline-white:focus {
            outline: 3px solid rgba(255, 255, 255, 0.5);
            outline-offset: 2px;
        }

        /* Safari Packages Section */
        .safari-packages-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, 
                #d2b48c 0%, 
                #ddbf94 25%, 
                #e6ccb2 50%, 
                #f0d9c4 75%, 
                #f4e4bc 100%
            );
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .safari-packages-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(210, 180, 140, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(244, 164, 96, 0.2) 0%, transparent 50%);
            pointer-events: none;
        }
        
        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }
        
        .section-label {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: white;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }
        
        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: white;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .section-description {
            font-size: 1.2rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }
        
        /* Package Cards */
        .packages-container {
            position: relative;
            z-index: 2;
        }
        
        .package-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
            height: 100%;
            margin-bottom: 1rem;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        }
        
        .package-image {
            height: 210px;
            background-size: cover;
            background-position: center;
            /* border-radius: 15px;
            margin: 1.5rem 1.5rem 0; */
            position: relative;
            color: #fff;
        }
        
        .explorer-image {
            background: url('../images/30-min-2seater-buggy.webp') center/cover no-repeat;
        }
        
        .thrill-imagee {
            background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3)), url('../images/60-min-2seater-buggy.webp') center/cover no-repeat;
        }
        .thrill-image {
            background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3)), url('../images/30-min-1000cc-buggy.webp') center/cover no-repeat;
        }

        .thrill-image3 {
            background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3)), url('../images/60-min-1000cc-buggy.webp') center/cover no-repeat;
        }
        .thrill-image4 {
            background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3)), 
                        url('images/morning-safari.jpg');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }
        .thrill-image5 {
            background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3)), 
                        url('images/night-safari.png') center/cover no-repeat;
        }
        
        .package-content {
            padding: 1rem;
        }
        
        .package-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--card-bg);
            margin-bottom: 1.5rem;
            position: absolute;
            left: 20px;
            bottom: -7px;
        }
        
        /* Features List */
        .features-list {
            margin-bottom: 1rem;
        }
        
        .features-row {
            display: flex;
            margin-bottom: 0.75rem;
        }
        
        .feature-item {
            flex: 1;
            display: flex;
            align-items: center;
            font-size: 0.95rem;
            color: var(--text-medium);
        }
        
        .feature-item i {
            color: var(--primary-orange);
            margin-right: 0.5rem;
            font-size: 0.8rem;
        }
        
        /* Package Description */
        .package-description {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-medium);
            margin-bottom: 1rem;
        }

        .package-description-sub {
            font-size: .9rem;
            line-height: 1.6;
            color: var(--text-medium);
            margin-bottom: 1rem;
        }
        
        /* Price and Book Section */
        .price-book-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        
        .price {
            display: flex;
            align-items: baseline;
        }
        
        .price-amount {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-orange);
            margin-right: 0.5rem;
        }
        
        .price-period {
            font-size: 1rem;
            color: var(--text-light);
        }
        
        .btn-book {
            background-color: var(--primary-orange);
            border: 2px solid var(--primary-orange);
            color: white;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .btn-book:hover {
            background-color: var(--primary-orange-hover);
            border-color: var(--primary-orange-hover);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
            color: white;
        }
        
        /* Responsive Design */
        @media (max-width: 991.98px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .section-description {
                font-size: 1.1rem;
            }
            
            .safari-packages-section {
                padding: 4rem 0;
            }
        }
        
        @media (max-width: 767.98px) {
            .section-title {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }
            
            .section-description {
                font-size: 1rem;
            }
            
            .section-header {
                margin-bottom: 3rem;
            }
            
            .package-image {
                height: 200px;
            }
            
            .price-book-section {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
            }
            
            .price {
                justify-content: center;
            }
            
            .btn-book {
                width: 100%;
                text-align: center;
            }
        }
        
        /* Focus states for accessibility */
        .btn-book:focus {
            outline: 3px solid rgba(230, 126, 34, 0.5);
            outline-offset: 2px;
        }