:root {
    --color-forest-green: #1a3c34;
    --color-deep-green: #0f2b26;
    --color-earth-brown: #5d4037;
    --color-safari-yellow: #fbc02d;
    --color-wildlife-orange: #e65100;
    --color-text-light: #f1f8e9;
    --color-text-dark: #1b1b1b;
    --color-white: #ffffff;
    --color-glass: rgba(255, 255, 255, 0.1);
    
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-deep-green);
    color: var(--color-text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    gap: 10px;
}

.btn-primary {
    background: var(--color-wildlife-orange);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
}

.btn-primary:hover {
    background: #ff6d00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 81, 0, 0.4);
}

.btn-secondary {
    background: var(--color-safari-yellow);
    color: var(--color-deep-green);
}

.btn-secondary:hover {
    background: #fdd835;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-deep-green);
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-orange {
    color: var(--color-wildlife-orange);
}

.text-yellow {
    color: var(--color-safari-yellow);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(230, 81, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(230, 81, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 81, 0, 0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/hero.webp') no-repeat center center/cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 61, 10, 0.3), rgba(10, 61, 10, 0.8));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #fff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.highlights-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    background: rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.highlight-icon {
    font-size: 1.5rem;
    color: var(--color-safari-yellow);
}

/* About Section */
.about {
    background: var(--color-deep-green);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-icon {
    color: var(--color-wildlife-orange);
    background: rgba(230, 81, 0, 0.1);
    padding: 10px;
    border-radius: 50%;
}

/* Safari Zones */
.zones {
    background: #15332b;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(
        to right,
        var(--color-safari-yellow) 20%,
        #fff 40%,
        #fff 60%,
        var(--color-safari-yellow) 80%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 8s linear infinite;
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.zone-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-fast);
    border: 1px solid rgba(255,255,255,0.1);
}

.zone-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255,255,255,0.08);
    border-color: var(--color-safari-yellow);
}

.zone-image {
    height: 200px;
    background: #2a2a2a;
    position: relative;
    overflow: hidden;
}

.zone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zone-card:hover .zone-image img {
    transform: scale(1.1);
}

.zone-content {
    padding: 25px;
}

.zone-title {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 5px;
}

.zone-subtitle {
    color: var(--color-wildlife-orange);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.zone-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.8rem;
    background: rgba(255,255,255,0.1);
    padding: 5px 10px;
    border-radius: 15px;
}

/* Packages */
.packages {
    background: var(--color-deep-green);
}

.packages-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
}

.packages-table th, .packages-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.packages-table th {
    background: rgba(0,0,0,0.2);
    color: var(--color-safari-yellow);
    font-size: 1.2rem;
}

.packages-table tr:last-child td {
    border-bottom: none;
}

/* Gallery */
.gallery {
    background: #15332b;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Reviews */
.reviews {
    background: var(--color-deep-green);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    position: relative;
}

.stars {
    color: var(--color-safari-yellow);
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #ccc;
}

.review-author {
    font-weight: 600;
    color: var(--color-white);
}

/* Safety */
.safety {
    background: #15332b;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.safety-item i {
    font-size: 3rem;
    color: var(--color-wildlife-orange);
    margin-bottom: 20px;
}

/* Urgency CTA */
.urgency-cta {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/images/tiger.webp') no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
    background-attachment: fixed;
}

.urgency-title {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #051a15;
    padding: 60px 0 20px;
    color: #aaa;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--color-safari-yellow);
}

.map-container {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    background: #333;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Particles */
.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: float-particle linear infinite;
    z-index: 1;
}

@keyframes float-particle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

/* Tiger Stripe Shimmer */
.shimmer-text {
    background: linear-gradient(
        to right,
        var(--color-safari-yellow) 20%,
        #fff 40%,
        #fff 60%,
        var(--color-safari-yellow) 80%
    );
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}
