/* Foundation Variables: Jungle theme */
:root {
    /* Colors - Premium Jungle Theme */
    --color-primary: #1b4332; /* Deep Premium Green */
    --color-primary-light: #2d6a4f;
    --color-primary-dark: #081c15;
    
    --color-accent: #d4a373; /* Rich Gold/Sand */
    --color-accent-hover: #b98b5e;
    
    --color-whatsapp: #25D366;
    --color-whatsapp-hover: #128C7E;
    
    --color-bg-light: #f8fbf9; /* Soft minimal green-tint white */
    --color-bg-dark: #121a16;
    
    --color-text-main: #25332b; 
    --color-text-muted: #5e7065;
    --color-text-light: #ffffff;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    /* Shadows & Glassmorphism */
    --shadow-sm: 0 4px 20px rgba(8, 28, 21, 0.05);
    --shadow-md: 0 10px 30px rgba(8, 28, 21, 0.08);
    --shadow-lg: 0 20px 40px rgba(8, 28, 21, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
    --gradient-hero: linear-gradient(135deg, rgba(8,28,21,0.9) 0%, rgba(27,67,50,0.7) 100%);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Layout */
    --container-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Fix scrolling offset for fixed header */
section {
    scroll-margin-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-whatsapp), #10b981);
    color: white;
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #128C7E, #059669);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.5);
}

/* Button Ripple effect */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:active::after {
    width: 250px;
    height: 250px;
    opacity: 0;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-light);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 8px 16px rgba(27, 67, 50, 0.2);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(249, 253, 249, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(44, 94, 59, 0.1);
    transition: all var(--transition-normal);
    padding: 1rem 0;
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary-dark);
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--color-primary);
}

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-main);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -5%; left: -5%; right: -5%; bottom: -5%;
    background-image: url('hero_jungle_cover.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: bgZoom 25s infinite alternate ease-in-out;
}

@keyframes bgZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--gradient-hero);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(212, 163, 115, 0.2);
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.hero .highlight {
    color: var(--color-accent);
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-trust-signals span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-trust-signals i {
    color: var(--color-accent);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Trust Statistics Section */
.trust-stats {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
    padding: 3rem 0;
    position: relative;
    z-index: 10;
    margin-top: -5px; /* Blend with hero */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.trust-stats::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-accent);
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Features Section (Trust Features Overlapping stats now) */
.features {
    position: relative;
    z-index: 15;
    margin-top: -40px;
    padding-bottom: var(--spacing-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-img-wrapper {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.feature-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: #ffffff;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(44, 94, 59, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
    padding: 4rem 0 1rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--color-text-light);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
    font-family: var(--font-heading);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a,
.footer-contact li {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--color-accent);
    margin-top: 0.2rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .features {
        margin-top: 0;
        padding-top: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 70px; /* Below header */
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-bg-light);
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        transition: left var(--transition-normal);
        border-top: 1px solid rgba(44, 94, 59, 0.1);
        z-index: 999;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }

    .mobile-menu-btn {
        display: block;
    }
    .header-actions .btn {
        display: none;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .logo-image {
        height: 50px; /* Slightly smaller on mobile to fit header */
    }
    .activity-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Floating WhatsApp Widget */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-whatsapp), #10b981);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float-pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px) rotate(10deg);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E, #059669);
    color: white;
}

@keyframes float-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Common Section Styles */
.section-padding {
    padding: var(--spacing-xl) 0;
}

.section-header {
    margin-bottom: var(--spacing-xl);
}

.text-center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.bg-light {
    background-color: white;
}

.btn-full {
    width: 100%;
}

/* CTA Section Background specifically */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
}
.cta-section h2, .cta-section p {
    color: white;
}

/* Routes Section */
.routes {
    position: relative;
    background-color: var(--color-primary-dark);
    overflow: hidden;
}

.routes-bg {
    position: absolute;
    top: -5%; left: -5%; right: -5%; bottom: -5%;
    background-image: url('train_bg.png?v=2');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    z-index: 1;
    opacity: 0.6;
}

.routes-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, var(--color-bg-light) 0%, transparent 15%, transparent 85%, var(--color-bg-light) 100%),
                linear-gradient(135deg, rgba(8,28,21,0.85) 0%, rgba(27,67,50,0.6) 100%);
    z-index: 2;
}

.routes-content {
    position: relative;
    z-index: 3;
}

.text-light {
    color: var(--color-text-light) !important;
}

.text-light-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.route-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2.5rem 2.5rem; /* Extra top padding for badge */
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.route-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #d4a373, #b98b5e);
    color: white;
    padding: 0.3rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom-right-radius: 12px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.route-badge.accent-badge { background: linear-gradient(90deg, #e76f51, #f4a261); }
.route-badge.green-badge { background: linear-gradient(90deg, #2a9d8f, #264653); }
.route-badge.blue-badge { background: linear-gradient(90deg, #457b9d, #1d3557); }

.route-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--color-primary-light), var(--color-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.route-card:hover::before {
    transform: scaleX(1);
}

.route-header {
    width: 100%;
}

.route-locations-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.location-point {
    display: flex;
    flex-direction: column;
}

.location-point.dest {
    text-align: right;
}

.location-point h4 {
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.1rem;
    line-height: 1.1;
}

.location-point span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.route-divider {
    flex-grow: 1;
    margin: 0 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-line {
    width: 100%;
    height: 2px;
    border-top: 2px dashed rgba(44, 94, 59, 0.3);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.route-car-icon {
    color: var(--color-primary);
    font-size: 1.1rem;
    background: var(--glass-bg);
    padding: 0 0.5rem;
    z-index: 2;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.route-card:hover .route-car-icon {
    transform: translateX(15px) scale(1.1);
    color: var(--color-accent);
}

.route-details {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px dashed rgba(44, 94, 59, 0.2);
    font-size: 0.9rem;
    color: var(--color-text-main);
    flex-grow: 1;
    font-weight: 500;
}

.route-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-details i {
    color: var(--color-primary-light);
}

/* Fleet Section */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.fleet-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--glass-border);
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.fleet-img-wrapper {
    height: 200px;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-bg-dark); /* Fallback */
}

.fleet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.fleet-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fleet-info h3 {
    font-size: 1.4rem;
}

.fleet-ideal {
    color: var(--color-accent-hover);
    font-size: 0.9rem;
    font-weight: 600;
}

.fleet-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.fleet-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

/* Travel Guide Section */
.guide-section {
    background-color: white; /* Contrast from explore and testimonials */
    position: relative;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.guide-card {
    background: var(--color-bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid rgba(44, 94, 59, 0.05);
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.guide-img-wrapper {
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.guide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.guide-card:hover .guide-img {
    transform: scale(1.08);
}

.guide-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.guide-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 500;
}

.guide-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

.guide-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.guide-link {
    color: var(--color-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
}

.guide-link:hover {
    color: var(--color-primary-light);
}

.guide-link i {
    transition: transform var(--transition-fast);
}

.guide-link:hover i {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--color-bg-light);
    position: relative;
}

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

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.testimonial-card::before {
    content: '\201C'; /* Left Double Quote */
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 6rem;
    font-family: 'Playfair Display', serif;
    color: rgba(212, 163, 115, 0.15); /* Accent color highly transparent */
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: white;
}

.stars {
    color: #FFD700; /* Gold */
    font-size: 1.1rem;
    display: flex;
    gap: 0.2rem;
    z-index: 1;
}

.review-text {
    font-style: italic;
    color: var(--color-text-main);
    line-height: 1.7;
    flex-grow: 1;
    z-index: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px dashed rgba(44, 94, 59, 0.2);
    padding-top: 1.5rem;
    z-index: 1;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.reviewer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* FAQ Section */
.faq {
    background-color: var(--color-bg-light);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: transparent;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: rgba(44, 94, 59, 0.03);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin: 0;
    color: var(--color-text-main);
}

.faq-question i {
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--color-text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 200px; /* Arbitrary large max-height for dropdown */
    border-top: 1px dashed rgba(44, 94, 59, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Explore Section */
.explore {
    background-color: var(--color-bg-light);
    position: relative;
}

.explore::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPjxyZWN0IHdpZHRoPSI0IiBoZWlnaHQ9IjQiIGZpbGw9IiM0YThjNWIiIGZpbGwtb3BhY2l0eT0iMC4wMiIvPjwvc3ZnPg==');
    opacity: 0.8;
    z-index: 0;
}

.explore .container {
    position: relative;
    z-index: 1;
}

.explore-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.activities-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    border-top: 4px solid var(--color-primary);
    transition: all var(--transition-normal);
}

.activities-card:hover {
    transform: translateY(-5px);
}

.activities-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-primary-dark);
}

.activities-card h3 i {
    color: var(--color-accent);
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.activity-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    box-shadow: var(--shadow-sm);
}

.activity-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.activity-item:hover .activity-img {
    transform: scale(1.1);
}

.activity-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(8, 28, 21, 0.95) 0%, rgba(8, 28, 21, 0.8) 40%, rgba(8, 28, 21, 0) 100%);
    color: var(--color-text-light);
    padding: 2rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.activity-item:hover .activity-label {
    background: linear-gradient(0deg, rgba(8, 28, 21, 1) 0%, rgba(8, 28, 21, 0.9) 60%, rgba(8, 28, 21, 0) 100%);
    padding-bottom: 1.5rem;
}

.activity-title {
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-title i {
    color: var(--color-accent);
}

.activity-book-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    align-self: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.activity-item:hover .activity-book-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.cta-section h2 {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.cta-section h2::after {
    background-color: var(--color-accent);
}

.cta-section p {
    color: rgba(241, 245, 242, 0.9);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
