
        :root {
            --animation-duration: 0.3s;
        }
        
        * {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8faf7;
            color: #333;
        }
        
        .hero-bg {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/img/background.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .nav-link {
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #f2aa4c;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .safari-card, .feature-card, .zone-card {
            transition: all var(--animation-duration) ease;
            overflow: hidden;
            position: relative;
        }
        
        .safari-card:hover, .feature-card:hover, .zone-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .safari-card::before, .feature-card::before, .zone-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #f2aa4c, #2c5f2d);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--animation-duration) ease;
        }
        
        .safari-card:hover::before, .feature-card:hover::before, .zone-card:hover::before {
            transform: scaleX(1);
        }
        
        .feature-icon {
            transition: transform var(--animation-duration) ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }
        
        .testimonial-bg {
            background: linear-gradient(rgba(44, 95, 45, 0.92), rgba(44, 95, 45, 0.92)), url('https://images.unsplash.com/photo-1546182990-dffeafbe841d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1800&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .step-card {
            position: relative;
            background: linear-gradient(135deg, #f8faf7 0%, #eef5ea 100%);
            border-radius: 12px;
            overflow: hidden;
            transition: all var(--animation-duration) ease;
        }
        
        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .step-number {
            position: absolute;
            top: -15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #f2aa4c, #e0913d);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            z-index: 10;
        }
        
        .booking-form {
            transition: all 0.3s ease;
        }
        
        .booking-form:focus-within {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .form-input:focus {
            border-color: #97bc62;
            box-shadow: 0 0 0 3px rgba(151, 188, 98, 0.2);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #2c5f2d, #1e3f20);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(44, 95, 45, 0.3);
        }
        
        .btn-primary::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(30deg) translate(-5px, -50px);
            transition: transform 0.6s ease;
        }
        
        .btn-primary:hover::after {
            transform: rotate(30deg) translate(10px, 100px);
        }
        
        .btn-secondary {
            background: linear-gradient(135deg, #f2aa4c, #e0913d);
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(242, 170, 76, 0.3);
        }
        
        .footer-link {
            position: relative;
            transition: color 0.3s ease;
        }
        
        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: #f2aa4c;
            transition: width 0.3s ease;
        }
        
        .footer-link:hover::after {
            width: 100%;
        }
        
        .whatsapp-btn {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        /* Google Ads Compliant Styling */
        .pricing-disclaimer {
            font-size: 0.75rem;
            color: #666;
            margin-top: 0.5rem;
        }
        
        .policy-links a {
            color: #2c5f2d;
            text-decoration: underline;
        }
        
        .policy-links a:hover {
            color: #1e3f20;
        }
        
        .compliant-heading {
            font-weight: 700;
            color: #1e3f20;
        }
        
        .no-guarantee {
            background: #fff9e6;
            border-left: 4px solid #f2aa4c;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 6px 6px 0;
        }

        /* NEW: Compliance Banner */
        .compliance-banner {
            background: #fff9e6;
            border-bottom: 2px solid #f2aa4c;
            padding: 10px 0;
            text-align: center;
            font-size: 0.85rem;
        }
        
        /* NEW: Trust badges */
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 15px;
            background: #f8faf7;
            border-radius: 50px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        /* NEW: Safari comparison table */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .comparison-table th, .comparison-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .comparison-table th {
            background-color: #f1f7ed;
            font-weight: 600;
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: #f8faf7;
        }
        
        /* NEW: Verification badge */
        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: #e6f4ea;
            color: #137333;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        /* NEW: Live counter */
        .live-counter {
            display: inline-flex;
            align-items: center;
            background: #e6f4ff;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .live-dot {
            width: 8px;
            height: 8px;
            background: #1a73e8;
            border-radius: 50%;
            margin-right: 5px;
            animation: pulse 1.5s infinite;
        }
        
        /* Multilingual selector */
        .language-selector {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
            background: white;
            border-radius: 50px;
            padding: 8px 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .language-selector select {
            border: none;
            background: transparent;
            font-weight: 500;
            cursor: pointer;
            outline: none;
        }
        
        .language-selector i {
            color: #2c5f2d;
            font-size: 1.2rem;
        }
        
        /* Google Ads compliant notice */
        .compliance-notice {
            background: #e6f4ea;
            border: 1px solid #97bc62;
            border-radius: 8px;
            padding: 15px;
            margin: 20px 0;
            font-size: 0.85rem;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-bg {
                background-position: 60% center;
                background-attachment: scroll;
            }
            
            .top-info-bar {
                flex-direction: column;
                gap: 8px;
                padding: 12px 0;
                text-align: center;
            }
            
            .mobile-menu-hidden {
                display: none;
            }
            
            .mobile-menu-visible {
                display: block;
            }
            
            .safari-card, .zone-card, .feature-card, .testimonial-card {
                margin-bottom: 20px;
            }
            
            .booking-section .flex {
                flex-direction: column;
            }
            
            .booking-section .w-1\/2 {
                width: 100%;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .hero-heading {
                font-size: 2.5rem;
            }
            
            .section-heading {
                font-size: 2rem;
            }
            
            .testimonials-container {
                flex-wrap: nowrap;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                padding-bottom: 15px;
            }
            
            .testimonials-container::-webkit-scrollbar {
                display: none;
            }
            
            .testimonial-card {
                min-width: 85vw;
                scroll-snap-align: start;
                margin-right: 20px;
            }
            
            /* NEW: Mobile adjustments */
            .comparison-table-container {
                overflow-x: auto;
            }
            
            .trust-badges-container {
                flex-wrap: wrap;
            }
            
            .language-selector {
                bottom: 70px;
                left: 50%;
                transform: translateX(-50%);
            }
        }
        
        @media (max-width: 480px) {
            .hero-heading {
                font-size: 2rem;
                line-height: 1.2;
            }
            
            .section-heading {
                font-size: 1.75rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 12px;
            }
            
            .hero-buttons a {
                width: 100%;
            }
            
            .step-card {
                margin-bottom: 40px;
            }
        }
        
        /* Animation classes */
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .delay-100 {
            animation-delay: 0.1s;
        }
        
        .delay-200 {
            animation-delay: 0.2s;
        }
        
        .delay-300 {
            animation-delay: 0.3s;
        }
        
        .delay-400 {
            animation-delay: 0.4s;
        }
        
        /* Safari image hover effect */
        .safari-image {
            transition: transform 0.5s ease, filter 0.5s ease;
        }
        
        .safari-card:hover .safari-image {
            transform: scale(1.05);
            filter: brightness(1.05);
        }
    
	
	
	
	/* Safety Section Styles */
#safety .safety-card {
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

#safety .safety-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-left-color: var(--primary);
}

#safety .emergency-card {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

#safety .prohibited-item {
  position: relative;
  padding-left: 1.5rem;
}

#safety .prohibited-item:before {
  content: "✖";
  position: absolute;
  left: 0;
  color: #ef4444;
}

#safety .required-item {
  position: relative;
  padding-left: 1.5rem;
}

#safety .required-item:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  #safety .emergency-columns {
    grid-template-columns: 1fr;
  }
}




