:root {
    --primary: #2E5D31; /* Forest Green */
    --accent: #FFB74D; /* Sunset Orange */
    --dark: #1a1a1a;
    --light: #f4f4f4;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-head: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom cursor */
}

body {
    background-color: #0f1210;
    color: var(--light);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* === TEXTURE OVERLAY (DETAIL) === */
.texture-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
    opacity: 0.3;
    pointer-events: none;
    z-index: 9000;
}

/* === CUSTOM CURSOR === */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-follower.active {
    width: 60px;
    height: 60px;
    background: rgba(255, 183, 77, 0.1);
    border-color: var(--accent);
}

/* === NAVIGATION === */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo-img {
    height: 100px;
    object-fit: contain;
}

.logo-text {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--light);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-nav {
    border: 1px solid var(--accent);
    padding: 10px 25px;
    border-radius: 30px;
    color: var(--accent) !important;
}

.btn-nav:hover {
    background: var(--accent);
    color: var(--dark) !important;
}

/* === HERO SECTION (FOREST) === */
.parallax-header {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Replace these with your actual transparent PNGs for best effect */
.layer-bg { 
    background-image: url('https://images.unsplash.com/photo-1542273917363-3b1817f69a2d?q=80&w=2000');
    filter: brightness(0.6);
    transform: scale(1.1);
}

.layer-mid {
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, #0f1210 100%); /* Fake trees gradient */
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.subtitle {
    color: var(--accent);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

h1 {
    font-family: var(--font-head);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.highlight {
    color: var(--primary);
    -webkit-text-stroke: 1px rgba(255,255,255,0.5);
    font-style: italic;
}

.description {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #ccc;
}

.cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent);
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 183, 77, 0.3);
}

/* Fireflies (CSS Animation) */
.firefly {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: fly 10s infinite linear;
    opacity: 0;
    z-index: 5;
}

/* Generate random positions for fireflies */
.firefly:nth-child(1) { top: 60%; left: 20%; animation-duration: 8s; animation-delay: 0s; }
.firefly:nth-child(2) { top: 40%; left: 80%; animation-duration: 12s; animation-delay: 2s; }
.firefly:nth-child(3) { top: 80%; left: 40%; animation-duration: 15s; animation-delay: 1s; }
.firefly:nth-child(4) { top: 30%; left: 10%; animation-duration: 9s; animation-delay: 4s; }
.firefly:nth-child(5) { top: 70%; left: 90%; animation-duration: 11s; animation-delay: 3s; }

@keyframes fly {
    0% { transform: translate(0, 0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translate(50px, -100px); opacity: 0; }
}

.fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #0f1210, transparent);
    z-index: 15;
}

/* === STATS BAR === */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 40px 0;
    background: #0f1210;
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--glass-border);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    font-family: var(--font-head);
}

.stat-item p {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #666;
}

/* === CARDS SECTION === */
.section-padding {
    padding: 100px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tag {
    color: var(--accent);
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 700;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: 3rem;
    margin-top: 10px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.travel-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s ease;
    position: relative;
}

.travel-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.card-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.card-info {
    padding: 25px;
}

.card-info h3 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.location {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.location i {
    color: var(--primary);
    margin-right: 5px;
}

.details {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ccc;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--light);
}

.link-btn {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* === CONTACT SECTION === */
.contact-area {
    padding: 100px 20px;
    background: radial-gradient(circle at center, #1b3a1d 0%, #0f1210 70%);
}

.contact-wrapper {
    max-width: 800px; /* Reduced width since we don't need space for a form */
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 60px 40px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.contact-content-centered h2 {
    font-family: var(--font-head);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--light);
}

.contact-content-centered p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Action Buttons Container */
.contact-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap; /* Wraps on small mobile screens */
}

/* Individual Buttons */
.action-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s ease;
    min-width: 280px;
}

.action-btn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

/* Icons inside buttons */
.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: background 0.3s;
}

/* Specific Colors */
.email-btn .icon-circle { color: #EA4335; } /* Gmail Red */
.whatsapp-btn .icon-circle { color: #25D366; } /* WhatsApp Green */

.action-btn:hover .icon-circle {
    background: var(--light);
}

.btn-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.btn-text span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.btn-text strong {
    font-size: 1.1rem;
    color: var(--light);
}

/* HQ Info at bottom */
.hq-info {
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    display: inline-block;
}

.hq-info i {
    color: var(--primary);
    margin-right: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-wrapper {
        padding: 40px 20px;
    }
    
    .contact-content-centered h2 {
        font-size: 2rem;
    }

    .contact-actions {
        flex-direction: column;
        gap: 20px;
    }

    .action-btn {
        width: 100%;
        min-width: auto;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 50px 20px;
    border-top: 1px solid #222;
}

.footer-logo-img {
    height: 80px; /* Larger than header */
    margin-bottom: 1rem;
    object-fit: contain;
}

.footer-tagline {
    margin-bottom: 1.5rem;
    color: var(--light);
}

.copyright {
    color: #444;
    font-size: 0.8rem;
    margin-top: 2rem;
}

/* Mobile */
.hamburger { display: none; }

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .stats-bar { flex-direction: column; gap: 30px; }
    .contact-wrapper { grid-template-columns: 1fr; padding: 30px; }
    .nav-links { display: none; }
    .hamburger { display: block; cursor: pointer; }
    .line { width: 30px; height: 3px; background: white; margin: 5px 0; }
    
    .cursor, .cursor-follower { display: none; }
    * { cursor: auto; }
}

.gallery-section {
    background: radial-gradient(circle at center, #1b3a1d 0%, #0f1210 80%);
    overflow: hidden; /* Hide overflow from 3D effects */
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.gallery-stage {
    width: 100%;
    height: 100%;
    perspective: 1200px; /* Stronger 3D depth */
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-track {
    position: relative;
    width: 300px; /* Mobile base width */
    height: 500px; /* Mobile base height */
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

@media (min-width: 768px) {
    .gallery-track {
        width: 600px;
        height: 400px;
    }
}

.gallery-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: #000;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    opacity: 0;
    /* Default state: hidden far back */
    transform: translateZ(-600px) rotateY(0deg); 
}

.gallery-card video, .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === GALLERY STATES === */
.gallery-card.active {
    opacity: 1;
    transform: translateX(0) translateZ(0) rotateY(0deg);
    z-index: 10;
    box-shadow: 0 0 30px rgba(46, 93, 49, 0.3); /* Glow effect using --primary */
    border-color: var(--accent);
}

.gallery-card.prev {
    opacity: 0.5;
    transform: translateX(-60%) translateZ(-300px) rotateY(25deg);
    z-index: 5;
    filter: brightness(0.4) grayscale(0.5);
}

.gallery-card.next {
    opacity: 0.5;
    transform: translateX(60%) translateZ(-300px) rotateY(-25deg);
    z-index: 5;
    filter: brightness(0.4) grayscale(0.5);
}

/* Navigation Buttons */
.nav-btn {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--accent);
    font-size: 2rem;
    padding: 1rem;
    cursor: none; /* Keep your custom cursor style */
    z-index: 20;
    border-radius: 50%;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.nav-btn:hover {
    background: var(--accent);
    color: var(--dark);
    transform: scale(1.1);
}