/* 
   Camp IDN - Adventure Nature Theme
   A responsive design focused on earth, sky, mountains and nature elements
   with smooth animations and modern aesthetic
*/

/* ===== GLOBAL STYLES AND VARIABLES ===== */
:root {
    /* Nature-inspired color palette */
    --color-forest: #2c5d2d;
    --color-leaf: #55a630;
    --color-moss: #80b918;
    --color-sand: #e6c280;
    --color-earth: #6c464f;
    --color-stone: #606c38;
    --color-mountain: #432818;
    --color-sky-light: #90e0ef;
    --color-sky: #48cae4;
    --color-ocean: #0077b6;
    --color-deep-sea: #023e8a;
    --color-sunset: #e76f51;
    --color-sunset-dark: #bc4639;
    --color-white: #ffffff;
    --color-cloud: #f8f9fa;
    --color-mist: rgba(255, 255, 255, 0.8);
    --color-night: #1a1a2e;
    
    /* Shadows & Depth */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
    
    /* Font families */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-accent: 'Caveat', cursive;
    
    /* Borders & Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 24px;
    --radius-round: 50%;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index levels */
    --z-base: 1;
    --z-menu: 100;
    --z-modal: 1000;
    --z-popup: 2000;
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Caveat:wght@400;600&display=swap');

/* Base Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-night);
    overflow-x: hidden;
    background-color: var(--color-cloud);
    background-image: linear-gradient(to bottom, var(--color-sky-light), var(--color-cloud));
    min-height: 100%;
    position: relative;
}

/* Forest Ambiance Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 100 100'%3E%3Cpath fill='%2355a63020' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: -1;
    animation: forestAmbiance 40s linear infinite;
}

@keyframes forestAmbiance {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--color-ocean);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-forest);
}

ul, ol {
    list-style-type: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

button, .btn-primary, .btn-secondary, .btn-more, .btn-book-now, .btn-submit, .btn-view-details, .btn-contact {
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 600;
    border: none;
    outline: none;
    transition: all var(--transition-medium);
}

section {
    padding: 5rem 1.5rem;
    overflow: hidden;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--color-earth);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-moss);
    border-radius: var(--radius-sm);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--color-mountain);
    max-width: 700px;
    margin: 0 auto;
    margin-top: 1rem;
}


/* Nature-inspired decorative elements */
.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0.15;
    z-index: -1;
}

.section-title::before {
    top: -20px;
    left: 25%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2355a630' d='M12 22a10 10 0 1 1 0-20 10 10 0 0 1 0 20zm0-2a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm-3.54-4.46a1 1 0 0 1 1.42-1.42 3 3 0 0 0 4.24 0 1 1 0 0 1 1.42 1.42 5 5 0 0 1-7.08 0zM9 11a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm6 0a1 1 0 1 1 0-2 1 1 0 0 1 0 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    transform: rotate(-15deg);
}

.section-title::after {
    bottom: -30px;
    right: 25%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232c5d2d' d='M20 15a1 1 0 0 1 0 2h-5v5a1 1 0 0 1-2 0v-5H8a1 1 0 0 1 0-2h5v-5a1 1 0 0 1 2 0v5h5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    transform: rotate(12deg);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Mountain pattern divider */
.mountain-divider {
    position: relative;
    height: 80px;
    margin-top: -1px;
    margin-bottom: -1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25'/%3E%3Cpath fill='%23ffffff' d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5'/%3E%3Cpath fill='%23ffffff' d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.mountain-divider-flipped {
    transform: rotate(180deg);
}

/* ===== HEADER STYLES ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-menu);
    transition: background-color var(--transition-medium), box-shadow var(--transition-medium);
    padding: 1rem 0;
}

header.sticky {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 0.7rem 0;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    z-index: var(--z-menu);
}

.logo img {
    height: 50px;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1) rotate(5deg);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0;
    color: var(--color-forest);
    font-family: var(--font-accent);
    letter-spacing: 1px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo:hover h1 {
    transform: translateX(5px);
}

.hamburger-menu {
    display: none;
}

#nav-menu {
    transition: transform var(--transition-medium);
}

#nav-menu ul {
    display: flex;
    align-items: center;
}

#nav-menu li {
    margin-left: 1.5rem;
    position: relative;
}

#nav-menu a {
    color: var(--color-mountain);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
}

#nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-leaf);
    transition: width var(--transition-medium);
}

#nav-menu a:hover {
    color: var(--color-leaf);
}

#nav-menu a:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(44, 93, 45, 0.7), rgba(0, 119, 182, 0.7)), url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    z-index: 0;
}

/* Forest and mountain parallax effect */
.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%232c5d2d' fill-opacity='0.4' d='M0,160L48,154.7C96,149,192,139,288,154.7C384,171,480,213,576,213.3C672,213,768,171,864,170.7C960,171,1056,213,1152,218.7C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.8;
    animation: forestParallax 30s linear infinite alternate;
}

@keyframes forestParallax {
    0% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Floating clouds animation */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.5' d='M0,192L48,197.3C96,203,192,213,288,192C384,171,480,117,576,117.3C672,117,768,171,864,197.3C960,224,1056,224,1152,218.7C1248,213,1344,203,1392,197.3L1440,192L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.7;
    animation: cloudFloat 40s linear infinite alternate;
}

@keyframes cloudFloat {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 0%;
    }
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: var(--font-accent);
    animation: scaleBounce 0.5s ease-in-out;
}

@keyframes scaleBounce {
    0% {
        transform: scale(0.8);
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    animation: fadeInUp 0.5s ease-out 0.2s backwards;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.5s ease-out 0.4s backwards;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: fadeInUp 0.5s ease-out 0.6s backwards;
}

.btn-primary {
    background-color: var(--color-leaf);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--color-forest);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary:active {
    transform: translateY(1px);
}

/* Nature-inspired button hover effect */
.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    z-index: -1;
    transition: all 0.6s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

/* ===== DESTINATIONS SECTION ===== */
.destinations-section {
    background-color: var(--color-white);
    position: relative;
}

/* Leaf floating animation */
.destinations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%2355a63010' d='M10,1.375c-3.17,0-5.75,2.548-5.75,5.682c0,6.685,5.259,11.276,5.483,11.469c0.152,0.132,0.382,0.132,0.534,0c0.224-0.193,5.481-4.784,5.483-11.469C15.75,3.923,13.171,1.375,10,1.375 M10,17.653c-1.064-1.024-4.929-5.127-4.929-10.596c0-2.68,2.212-4.861,4.929-4.861s4.929,2.181,4.929,4.861C14.927,12.518,11.063,16.627,10,17.653 M10,3.839c-1.815,0-3.286,1.47-3.286,3.286s1.47,3.286,3.286,3.286s3.286-1.47,3.286-3.286S11.815,3.839,10,3.839 M10,9.589c-1.359,0-2.464-1.105-2.464-2.464S8.641,4.661,10,4.661s2.464,1.105,2.464,2.464S11.359,9.589,10,9.589'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
    animation: leafFloat 30s linear infinite both;
}

@keyframes leafFloat {
    0%, 100% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 25%;
    }
    50% {
        background-position: 50% 50%;
    }
    75% {
        background-position: 25% 100%;
    }
}

.destinations-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.destination-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    position: relative;
    z-index: 1;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* Mountain peak card decoration */
.destination-card::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%232c5d2d30' d='M3.55 19.09L12 13.16l8.45 5.93-1.45-8.45 6.14-6.8-8.63-.84L12 1.06 7.49 2.99l-8.63.84 6.14 6.8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    transform: rotate(15deg);
    transition: transform 0.3s ease;
}

.destination-card:hover::before {
    transform: rotate(30deg) scale(1.2);
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.destination-info {
    padding: 1.5rem;
    position: relative;
}

.destination-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-mountain);
}

.destination-info p {
    color: var(--color-night);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    color: var(--color-earth);
}

.destination-meta span {
    display: flex;
    align-items: center;
}

.destination-meta i {
    margin-right: 0.3rem;
    color: var(--color-leaf);
}

.btn-view-details {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: var(--color-ocean);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-view-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.6s;
}

.btn-view-details:hover {
    background-color: var(--color-deep-sea);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-view-details:hover::before {
    left: 100%;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-more {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--color-forest);
    border: 2px solid var(--color-forest);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(44, 93, 45, 0.2),
        transparent
    );
    transition: all 0.6s;
}

.btn-more:hover {
    background-color: var(--color-forest);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-more:hover::before {
    left: 100%;
}

/* ===== PACKAGES SECTION ===== */
.packages-section {
    background-color: var(--color-cloud);
    position: relative;
    overflow: hidden;
}

/* Rock pattern background */
.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23606c3810' fill-opacity='0.1'%3E%3Cpath d='M0 0h80v80H0V0zm20 20v40h40V20H20zm20 35a15 15 0 1 1 0-30 15 15 0 0 1 0 30z' opacity='.5'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.package-card {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-medium);
    z-index: 1;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.package-tag {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background-color: var(--color-sunset);
    color: white;
    padding: 0.4rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover img {
    transform: scale(1.05);
}

.package-info {
    padding: 1.5rem;
}

.package-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-mountain);
}

.package-info p {
    color: var(--color-night);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.package-features {
    margin-bottom: 1.5rem;
}

.package-features li {
    margin-bottom: 0.5rem;
    color: var(--color-earth);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.package-features li i {
    color: var(--color-moss);
    margin-right: 0.5rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.25rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-forest);
}

.duration {
    font-size: 0.9rem;
    color: var(--color-night);
    margin-left: 0.5rem;
}

.btn-book-now {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: var(--color-moss);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-book-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.6s;
}

.btn-book-now:hover {
    background-color: var(--color-forest);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-book-now:hover::before {
    left: 100%;
}

/* Floating leaves animation */
.package-card::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2355a63020' d='M17,8C8,10,5.9,16.17,3.82,21.34L5.71,22l1-2.3C9,14,14,8.47,22,3.7L17,8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.5;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.package-card:hover::after {
    transform: rotate(15deg) scale(1.2);
    opacity: 0.8;
}



/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    background-color: var(--color-cloud);
    position: relative;
    overflow: hidden;
}

/* Mountain silhouette in background */
.testimonial-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%232c5d2d10' d='M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,234.7C960,235,1056,181,1152,170.7C1248,160,1344,192,1392,208L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.7;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin: 1rem;
    position: relative;
}

/* Nature-inspired quote marks */
.testimonial-item::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2355a63040' d='M7.17 17c.51 0 .98-.29 1.2-.74l1.42-2.84c.14-.28.21-.58.21-.89V8c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2l-1.03 2.06c-.45.89.2 1.94 1.2 1.94zm10 0c.51 0 .98-.29 1.2-.74l1.42-2.84c.14-.28.21-.58.21-.89V8c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2l-1.03 2.06c-.45.89.2 1.94 1.2 1.94z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    transform: rotate(180deg);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-night);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-round);
    object-fit: cover;
    border: 3px solid var(--color-leaf);
    margin-right: 1rem;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--color-mountain);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--color-earth);
    margin-bottom: 0.3rem;
}

.rating {
    color: var(--color-sunset);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    background-color: var(--color-leaf);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    margin: 0 1rem;
    transition: all var(--transition-medium);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--color-forest);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-round);
    background-color: var(--color-leaf);
    margin: 0 0.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: all var(--transition-medium);
}

.dot:hover, .dot.active {
    opacity: 1;
    transform: scale(1.3);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: var(--color-white);
    position: relative;
}

/* Tree pattern overlay */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24'%3E%3Cpath fill='%2355a63010' d='M17,12h3.5c-1.82-3.11-5.73-5-10.5-5C4.11,7,0,9.89,0,13.5S4.11,20,10,20c4.77,0,8.68-1.89,10.5-5H17V12z M10,18 c-2.49,0-4.5-2.01-4.5-4.5S7.51,9,10,9s4.5,2.01,4.5,4.5S12.49,18,10,18z'/%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Nature frame effect */
.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--color-leaf);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
    transform: scale(0.95);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.about-image:hover::before {
    transform: scale(1);
    opacity: 0.6;
}

.about-content {
    padding: 1rem;
}

.about-content h3 {
    color: var(--color-forest);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--color-moss);
    border-radius: var(--radius-sm);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--color-night);
}

.about-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

.about-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    list-style-type: none;
}

.about-content ul li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--color-moss);
    border-radius: var(--radius-round);
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: rgba(248, 249, 250, 0.8);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: rgba(248, 249, 250, 1);
}

.value-item i {
    font-size: 2rem;
    color: var(--color-forest);
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-mountain);
}

.value-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--color-earth);
}

.team-section {
    margin-top: 4rem;
}

.team-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--color-forest);
    position: relative;
}

.team-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-moss);
    border-radius: var(--radius-sm);
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    transition: all var(--transition-medium);
}

.team-member:hover {
    transform: translateY(-8px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-round);
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--color-leaf);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
}

.team-member:hover img {
    border-color: var(--color-forest);
    transform: scale(1.05);
}

.team-member h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--color-mountain);
}

.team-member p {
    font-size: 0.9rem;
    color: var(--color-earth);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-round);
    background-color: var(--color-leaf);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
}

.social-icons a:hover {
    background-color: var(--color-forest);
    transform: translateY(-3px);
}

/* ===== BLOG SECTION ===== */
.blog-section {
    background-color: var(--color-cloud);
    position: relative;
}

/* Subtle leaf pattern */
.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 80 80'%3E%3Cg fill='%2380b91810' fill-opacity='0.1'%3E%3Cpath d='M20 20L0 20L0 0L20 0L20 20ZM50 0L40 10L30 0L50 0ZM0 50L10 40L0 30L0 50ZM80 30L70 40L80 50L80 30ZM50 80L40 70L30 80L50 80ZM80 80L80 60L60 80L80 80ZM20 60L20 80L0 80L0 60L20 60ZM80 0L80 20L60 0L80 0ZM20 30L20 50L0 50L0 30L20 30Z' /%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
    opacity: 0.5;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.blog-post {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--color-moss);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--color-earth);
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 0.3rem;
    color: var(--color-moss);
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--color-mountain);
    line-height: 1.4;
}

.blog-content p {
    color: var(--color-night);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.read-more {
    display: inline-block;
    color: var(--color-forest);
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-forest);
    transition: width var(--transition-medium);
}

.read-more:hover {
    color: var(--color-forest);
}

.read-more:hover::after {
    width: 100%;
}

/* Natural leaf decoration continued */
.blog-post::before {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2355a63020' d='M6.05 8.05a7.001 7.001 0 0 0-.02 9.88c1.47-3.4 4.09-6.24 7.36-7.93A15.952 15.952 0 0 0 8 19.32c2.6 1.23 5.8.78 7.95-1.37C19.43 14.47 20 4 20 4S9.53 4.57 6.05 8.05z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.5;
    transform: rotate(15deg);
    transition: all 0.3s ease;
}

.blog-post:hover::before {
    transform: rotate(30deg) scale(1.2);
    opacity: 0.8;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 5rem 1.5rem;
    background-image: url('/api/placeholder/1920/800');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(44, 93, 45, 0.8),
        rgba(2, 62, 138, 0.8)
    );
    z-index: 0;
}

/* Mountain silhouette overlay */
.cta-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.2' d='M0,224L60,240C120,256,240,288,360,277.3C480,267,600,213,720,181.3C840,149,960,139,1080,149.3C1200,160,1320,192,1380,208L1440,224L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.cta-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: var(--color-white);
    position: relative;
}

/* Subtle topographic background */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%2355a63005' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'%3E%3C/path%3E%3C/svg%3E");
    z-index: 0;
    opacity: 0.5;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 1rem;
}

.info-item {
    display: flex;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--color-forest);
    margin-right: 1.5rem;
    margin-top: 0.3rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-mountain);
}

.info-item p {
    font-size: 0.95rem;
    color: var(--color-earth);
    margin-bottom: 0.3rem;
}

.social-media h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-mountain);
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-mountain);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
    color: var(--color-mountain);
    font-weight: 500;
}

input, textarea, select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    background-color: #f8f9fa;
    transition: all var(--transition-medium);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--color-leaf);
    box-shadow: 0 0 0 2px rgba(85, 166, 48, 0.2);
    background-color: white;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

input[type="checkbox"], input[type="radio"] {
    width: auto;
    margin-right: 0.5rem;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--color-forest);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.6s;
}

.btn-submit:hover {
    background-color: var(--color-leaf);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-submit:hover::before {
    left: 100%;
}

.map-container {
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.map-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-mountain);
    text-align: center;
}

.map {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
    background-color: black;
    color: rgb(35, 4, 194);
    position: relative;
    overflow: hidden;
}

/* Mountain silhouette background */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,224L60,240C120,256,240,288,360,277.3C480,267,600,213,720,181.3C840,149,960,139,1080,149.3C1200,160,1320,192,1380,208L1440,224L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scaleY(-1);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding: 5rem 1.5rem 3rem;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-about {
    grid-column: span 1;
}

.footer-about img {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-about p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-about .social-icons {
    justify-content: flex-start;
}

.footer-about .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-medium);
}

.footer-about .social-icons a:hover {
    background-color: var(--color-leaf);
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-leaf);
}

.footer-links ul {
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: var(--radius-round);
    background-color: var(--color-leaf);
    opacity: 0.6;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-leaf);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: scale(1.3);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact p i {
    margin-right: 1rem;
    color: var(--color-leaf);
}

.newsletter h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 0 1.5rem;
    background-color: var(--color-leaf);
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: white;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.newsletter-form button:hover {
    background-color: var(--color-forest);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-left: 1.5rem;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-leaf);
}

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: var(--z-modal);
    overflow-y: auto;
    padding: 2rem 1rem;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.modal.active {
    display: block;
    opacity: 1;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content {
    background-color: white;
    border-radius: var(--radius-lg);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--color-night);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
}

.close-modal:hover {
    color: var(--color-sunset);
    transform: rotate(90deg);
}

.modal-header {
    padding: 2rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    position: relative;
}

/* Nature-inspired modal decoration */
.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%2355a63010' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4z'%3E%3C/path%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-mountain);
    position: relative;
    z-index: 1;
}

.modal-header p {
    font-size: 1rem;
    color: var(--color-earth);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.destination-meta, .package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-earth);
    position: relative;
    z-index: 1;
}

.destination-meta span, .package-meta span {
    display: flex;
    align-items: center;
}

.destination-meta i, .package-meta i {
    margin-right: 0.3rem;
    color: var(--color-leaf);
}

.modal-body {
    padding: 2rem;
}

.modal-image-gallery {
    margin-bottom: 2rem;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.thumbnail-images img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    opacity: 0.7;
}

.thumbnail-images img:hover, .thumbnail-images img.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.modal-description h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-forest);
}

.modal-description p {
    margin-bottom: 1.5rem;
    color: var(--color-night);
}

.modal-description ul {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

.modal-description ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.modal-description ul li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--color-moss);
    border-radius: var(--radius-round);
}

.difficulty-meter {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.difficult {
    width: 20px;
    height: 10px;
    background-color: #ddd;
    border-radius: var(--radius-sm);
}

.difficult.active {
    background-color: var(--color-forest);
}

.mountain-list {
    margin-bottom: 1.5rem;
}

.mountain-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.mountain-name {
    font-weight: 600;
    color: var(--color-mountain);
}

.mountain-location, .mountain-height {
    font-size: 0.9rem;
    color: var(--color-earth);
}

.mountain-location {
    flex: 1;
    text-align: center;
}

.package-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--color-moss);
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--color-mountain);
}

.feature-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--color-earth);
}

.itinerary {
    margin: 1.5rem 0;
}

.itinerary-day {
    margin-bottom: 1.5rem;
    border-left: 2px solid var(--color-moss);
    padding-left: 1.5rem;
    position: relative;
}

.itinerary-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 18px;
    height: 18px;
    background-color: var(--color-moss);
    border-radius: var(--radius-round);
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.day-header {
    margin-bottom: 0.8rem;
}

.day-header h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--color-forest);
}

.day-header p {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--color-earth);
}

.day-content ul {
    padding-left: 0;
}

.day-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.day-content li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--color-moss);
    border-radius: var(--radius-round);
}

.modal-footer {
    padding: 2rem;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.available-packages h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--color-mountain);
}

.package-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.package-card-mini {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 1.2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-medium);
}

.package-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.package-card-mini h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-mountain);
}

.package-card-mini p {
    font-size: 0.9rem;
    color: var(--color-earth);
    margin-bottom: 0.8rem;
}

.package-card-mini .price {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-forest);
    margin-bottom: 1rem;
}

.btn-view-package {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--color-ocean);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-view-package:hover {
    background-color: var(--color-deep-sea);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.btn-contact {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--color-forest);
    border: 2px solid var(--color-forest);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-contact:hover {
    background-color: var(--color-forest);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.price-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-mountain);
}

.price-details .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-forest);
}

.per-person {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-earth);
}

.price-note {
    font-size: 0.9rem;
    color: var(--color-earth);
    margin-top: 0.3rem;
}

.price-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-note-footer {
    font-size: 0.9rem;
    color: var(--color-earth);
    text-align: center;
}

.price-note-footer p {
    margin-bottom: 0.3rem;
}

.terms-conditions {
    display: flex;
    align-items: flex-start;
}

.terms-conditions label {
    margin-left: 0.5rem;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.terms-conditions a {
    color: var(--color-ocean);
    text-decoration: underline;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-group label {
    margin-left: 0.5rem;
    margin-bottom: 0;
    font-weight: 400;
}

.checkbox-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.checkbox-group label {
    margin-left: 0.3rem;
    margin-bottom: 0;
    font-weight: 400;
}

.terms-content, .cancellation-content {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.terms-content h3, .cancellation-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-forest);
}

.terms-content p, .cancellation-content p {
    margin-bottom: 1rem;
    color: var(--color-night);
    font-size: 0.95rem;
}

.terms-content ul, .cancellation-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

.terms-content li, .cancellation-content li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.terms-content li::before, .cancellation-content li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--color-moss);
    border-radius: var(--radius-round);
}

.newsletter-modal .modal-content {
    display: flex;
    max-width: 800px;
}

.newsletter-content {
    padding: 3rem 2rem;
    flex: 1;
}

.newsletter-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-forest);
}

.newsletter-content p {
    margin-bottom: 1.5rem;
    color: var(--color-night);
}

.newsletter-content .newsletter-form {
    margin-bottom: 2rem;
}

.newsletter-content .newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    background-color: white;
    color: var(--color-night);
}

.newsletter-content .newsletter-form button {
    padding: 0 1.5rem;
    background-color: var(--color-leaf);
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-medium);
}

.newsletter-content .newsletter-form button:hover {
    background-color: var(--color-forest);
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
}

.benefit-item i {
    font-size: 1.2rem;
    color: var(--color-leaf);
    margin-right: 1rem;
}

.benefit-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--color-earth);
}

.newsletter-privacy {
    font-size: 0.8rem;
    color: var(--color-earth);
}

.newsletter-image {
    flex: 1;
    overflow: hidden;
    display: none;
}

.newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== NOTIFICATION POPUP ===== */
.notification-popup {
    position: fixed;
    bottom: 20px;
    right: -400px;
    width: 350px;
    background-color: rgb(0, 0, 0);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: var(--z-popup);
    transition: right var(--transition-medium);
}

.notification-popup.show {
    right: 20px;
    animation: notificationSlideIn 0.5s ease-out;
}

@keyframes notificationSlideIn {
    from {
        right: -400px;
        opacity: 0;
    }
    to {
        right: 20px;
        opacity: 1;
    }
}

.notification-content {
    padding: 1.5rem;
    position: relative;
}

.close-notification {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.5rem;
    color: var(--color-night);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.close-notification:hover {
    color: var(--color-sunset);
    transform: rotate(90deg);
}

.notification-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--color-sunset);
}

.notification-content p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    color: var(--color-night);
}

.btn-view-offer {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: var(--color-sunset);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-view-offer:hover {
    background-color: var(--color-sunset-dark);
    transform: translateY(-3px);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: -60px;
    right: 35px;
    width: 50px;
    height: 50px;
    background-color: var(--color-forest);
    color: white;
    border: none;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 99;
    transition: all var(--transition-medium);
}

.back-to-top.show {
    bottom: 90px;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .back-to-top {
        width: 40px; /* Smaller size for mobile */
        height: 40px;
        right: 20px; /* Closer to edge on mobile */
    }

    .back-to-top.show {
        bottom: 70px; /* Lower position on mobile */
    }

    .back-to-top i {
        font-size: 1rem; /* Smaller icon for mobile */
    }
}

/* Extra small devices */
@media screen and (max-width: 480px) {
    .back-to-top {
        width: 50px; /* Even smaller for very small devices */
        height: 50px;
        right: 15px;
    }

    .back-to-top.show {
        bottom: 80px;
    }
}

.back-to-top:hover {
    background-color: var(--color-leaf);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.back-to-top i {
    font-size: 1.2rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (min-width: 992px) {
    .newsletter-image {
        display: block;
    }
}

@media (max-width: 1200px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 991px) {
    section {
        padding: 4rem 1rem;
    }
    
    .section-title {
        margin-bottom: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.7rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .modal-content {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
        z-index: 1000;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    
    .hamburger span {
        width: 30px;
        height: 3px;
        background-color: var(--color-mountain);
        border-radius: var(--radius-sm);
        transition: all var(--transition-medium);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }
    
    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50%; /* Reduced width from 70% to 50% */
        height: 100%;
        background-color: rgba(9, 136, 64, 0.85); /* Added transparency */
        backdrop-filter: blur(10px); /* Adds blur effect for better readability */
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-medium);
        padding: 4rem 1.5rem 1.5rem; /* Reduced padding */
        z-index: 999;
    }
    #nav-menu.active {
        right: 0;
        background-color: rgba(9, 136, 64, 0.85); /* Maintain background color */
        backdrop-filter: blur(10px);
        height: 100vh; /* Full height */
        position: fixed; /* Keep fixed position */
        z-index: 999; /* Keep high z-index */
        overflow-y: auto; /* Allow scrolling if menu is long */
    }
    
    #nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    #nav-menu li {
        margin: 1rem 0;
        width: 100%;
    }
    
    #nav-menu a {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.1rem;
        color: white; /* Make text white for better visibility */
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .price-cta {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .footer-bottom-links a {
        margin: 0 0.75rem;
    }
    
    .notification-popup {
        width: 300px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 1rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .gallery-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    
    .modal-content {
        max-width: 95%;
    }
    
    .main-image {
        height: 300px;
    }
    
    .package-features {
        grid-template-columns: 1fr;
    }
    
    .notification-popup {
        width: calc(100% - 40px);
        bottom: 10px;
        right: -100%;
    }
    
    .notification-popup.show {
        right: 20px;
    }
}

/* ===== ANIMATIONS & SPECIAL EFFECTS ===== */
/* Animated Background Gradient - Sky Day-Night Cycle */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cta-section .cta-overlay {
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

/* Floating Elements Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Add floating animation to certain elements */
.hero-content h1, .destination-card:nth-child(odd), .package-card:nth-child(even), .testimonial-author img {
    animation: floating 3s ease-in-out infinite;
}

.destination-card:nth-child(even), .package-card:nth-child(odd), .gallery-item:nth-child(odd), .team-member img {
    animation: floating 4s ease-in-out infinite;
}

/* Pulse Animation for CTA Buttons */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(85, 166, 48, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(85, 166, 48, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(85, 166, 48, 0);
    }
}

.btn-book-now, .btn-primary {
    animation: pulse 2s infinite;
}

/* Shimmer Effect for Category Tags */
@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.package-tag, .blog-category {
    background: linear-gradient(
        90deg,
        var(--color-sunset) 0%,
        var(--color-sunset-dark) 50%,
        var(--color-sunset) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

/* Falling Leaves Effect */
.falling-leaves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2355a63040' d='M17,8C8,10,5.9,16.17,3.82,21.34L5.71,22l1-2.3C9,14,14,8.47,22,3.7L17,8z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    animation: falling linear infinite;
}

@keyframes falling {
    0% {
        transform: translateY(-5vh) translateX(0) rotate(0deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) translateX(20px) rotate(360deg);
        opacity: 0;
    }
}

/* Create 15 random falling leaves with different speeds and delays */
.falling-leaves .leaf:nth-child(1) {
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.falling-leaves .leaf:nth-child(2) {
    left: 20%;
    animation-duration: 18s;
    animation-delay: 1s;
}

.falling-leaves .leaf:nth-child(3) {
    left: 30%;
    animation-duration: 13s;
    animation-delay: 2s;
}

.falling-leaves .leaf:nth-child(4) {
    left: 40%;
    animation-duration: 16s;
    animation-delay: 0.5s;
}

.falling-leaves .leaf:nth-child(5) {
    left: 50%;
    animation-duration: 14s;
    animation-delay: 3s;
}

.falling-leaves .leaf:nth-child(6) {
    left: 60%;
    animation-duration: 17s;
    animation-delay: 1.5s;
}

.falling-leaves .leaf:nth-child(7) {
    left: 70%;
    animation-duration: 12s;
    animation-delay: 0.2s;
}

.falling-leaves .leaf:nth-child(8) {
    left: 80%;
    animation-duration: 19s;
    animation-delay: 2.5s;
}

.falling-leaves .leaf:nth-child(9) {
    left: 90%;
    animation-duration: 15s;
    animation-delay: 1s;
}

.falling-leaves .leaf:nth-child(10) {
    left: 15%;
    animation-duration: 14s;
    animation-delay: 3.5s;
}

.falling-leaves .leaf:nth-child(11) {
    left: 25%;
    animation-duration: 16s;
    animation-delay: 0.7s;
}

.falling-leaves .leaf:nth-child(12) {
    left: 35%;
    animation-duration: 13s;
    animation-delay: 2.3s;
}

.falling-leaves .leaf:nth-child(13) {
    left: 55%;
    animation-duration: 18s;
    animation-delay: 1.8s;
}

.falling-leaves .leaf:nth-child(14) {
    left: 65%;
    animation-duration: 12s;
    animation-delay: 0.3s;
}

.falling-leaves .leaf:nth-child(15) {
    left: 85%;
    animation-duration: 17s;
    animation-delay: 2.8s;
}


/* Reveal Animation on Scroll */
.reveal {
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s ease;
}

.reveal.active {
    transform: translateY(0px);
    opacity: 1;
}


/* Text Animation for Hero Section */
.hero-content h1 {
    animation-name: textReveal;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 0.5s;
}

@keyframes textReveal {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Water Ripple Effect for CTA */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    opacity: 0;
    z-index: 1;
    animation: ripple 5s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    50% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 2.5rem; padding-bottom: 2.5rem; }

.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }
.px-5 { padding-left: 2.5rem; padding-right: 2.5rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

.flex-column { flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --color-forest: #1d3a1f;
        --color-leaf: #307a12;
        --color-moss: #4d6b0d;
        --color-night: #000000;
    }
    
    body {
        background-color: white;
        background-image: none;
    }
    
    .btn-primary, .btn-secondary, .btn-book-now, .btn-submit {
        border: 2px solid black;
    }
    
    .destination-card, .package-card, .blog-post, .gallery-item {
        border: 1px solid #000;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .falling-leaves {
        display: none;
    }
}

/* Print styles continued */
@media print {
    a {
        color: black;
        text-decoration: underline;
    }
    
    .destination-card, .package-card, .blog-post, .gallery-item {
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #ddd;
    }
    
    .section-title::before, .section-title::after,
    .destination-card::before, .destination-card::after,
    .package-card::after, .blog-post::before {
        display: none;
    }
    
    .about-container, .contact-container {
        display: block;
    }
    
    .about-image, .contact-info, .contact-form {
        width: 100%;
        margin-bottom: 2cm;
    }
    
    .package-features, .values-container, .team-container, .gallery-container {
        display: block;
    }
    
    .package-features .feature-item, .values-container .value-item,
    .team-container .team-member, .gallery-container .gallery-item {
        width: 45%;
        display: inline-block;
        vertical-align: top;
        margin: 0 2% 2cm;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --color-white: #121212;
        --color-cloud: #1e1e1e;
        --color-night: #f0f0f0;
        --color-mountain: #e0e0e0;
        --color-earth: #c0c0c0;
    }
    
    body {
        background-color: #121212;
        background-image: linear-gradient(to bottom, #1a1a2e, #121212);
        color: #f0f0f0;
    }
    
    header.sticky {
        background-color: rgba(30, 30, 30, 0.92);
    }
    
    .destination-card, .package-card, .blog-post, .testimonial-item, .contact-form, .modal-content {
        background-color: #1e1e1e;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }
    
    .destination-info p, .package-info p, .blog-content p, .testimonial-content p {
        color: #e0e0e0;
    }
    
    .about-content p, .modal-description p {
        color: #e0e0e0;
    }
    
    input, textarea, select {
        background-color: #333;
        border-color: #444;
        color: #212020;
    }
    
    input::placeholder, textarea::placeholder {
        color: #999;
    }
    
    .modal-header, .modal-footer {
        background-color: #2a2a2a;
    }
    
    .team-member, .value-item, .package-card-mini {
        background-color: #262626;
    }
    
    /* Invert specific SVG and pattern colors for dark mode */
    .about-section::before, .packages-section::before, .blog-section::before, .contact-section::before {
        filter: invert(1) opacity(0.1);
    }
    
    .gallery-item img, .destination-card img, .package-card img, .blog-post .blog-image img {
        filter: brightness(0.85);
    }
    
    .value-item {
        background-color: rgba(30, 30, 30, 0.8);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-cloud);
}

::-webkit-scrollbar-thumb {
    background: var(--color-leaf);
    border-radius: 6px;
    border: 3px solid var(--color-cloud);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-forest);
}

/* ===== ADDITIONAL DECORATIVE ELEMENTS ===== */
/* Mountain parallax decoration for footer */
.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff10' d='M0,224L48,213.3C96,203,192,181,288,154.7C384,128,480,96,576,85.3C672,75,768,85,864,96C960,107,1056,117,1152,117.3C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

/* Sun/Moon animation for day/night cycle */
.hero-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(255, 165, 0, 0.4) 60%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    animation: sunMovement 20s linear infinite;
    opacity: 0.7;
    z-index: 0;
}

@keyframes sunMovement {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(255, 165, 0, 0.4) 60%, transparent 70%);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    }
    50% {
        transform: translate(-50vw, 30vh) scale(0.6);
        opacity: 0.3;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(200, 200, 255, 0.4) 60%, transparent 70%);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(255, 165, 0, 0.4) 60%, transparent 70%);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    }
}

/* Birds flying animation */
.hero-section .birds {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.bird {
    position: absolute;
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath fill='%23ffffff' d='M15,5c-0.553,0-1-0.448-1-1s0.447-1,1-1s1,0.448,1,1S15.553,5,15,5z M9,7c-0.553,0-1-0.448-1-1s0.447-1,1-1 s1,0.448,1,1S9.553,7,9,7z M21,7c-0.553,0-1-0.448-1-1s0.447-1,1-1s1,0.448,1,1S21.553,7,21,7z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.bird:nth-child(1) {
    top: 20%;
    left: 20%;
    animation: bird-fly 15s linear infinite;
}

.bird:nth-child(2) {
    top: 15%;
    left: 35%;
    animation: bird-fly 18s linear 2s infinite reverse;
}

.bird:nth-child(3) {
    top: 25%;
    left: 50%;
    animation: bird-fly 12s linear 1s infinite;
}

.bird:nth-child(4) {
    top: 10%;
    left: 65%;
    animation: bird-fly 20s linear 3s infinite reverse;
}

.bird:nth-child(5) {
    top: 30%;
    left: 80%;
    animation: bird-fly 16s linear 4s infinite;
}

@keyframes bird-fly {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -30px) scale(1.2);
    }
    50% {
        transform: translate(100px, 0) scale(1);
    }
    75% {
        transform: translate(50px, 30px) scale(0.8);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}



/* Fireflies effect for night mode */
@media (prefers-color-scheme: dark) {
    .firefly {
        position: absolute;
        width: 5px;
        height: 5px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
        border-radius: 50%;
        opacity: 0;
        animation: firefly-float 5s ease-in-out infinite, firefly-glow 2s ease-in-out infinite alternate;
    }
    
    @keyframes firefly-float {
        0%, 100% {
            transform: translate(0, 0);
        }
        33% {
            transform: translate(20px, -30px);
        }
        66% {
            transform: translate(-20px, 20px);
        }
    }
    
    @keyframes firefly-glow {
        0% {
            opacity: 0.1;
            box-shadow: 0 0 3px rgba(255, 255, 255, 0.1);
        }
        100% {
            opacity: 0.6;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 20px rgba(200, 255, 200, 0.2);
        }
    }
    
   

/* Wind effect for plants */
.plant-animation {
    animation: wind-sway 8s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes wind-sway {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(2deg);
    }
    75% {
        transform: rotate(-2deg);
    }
}

/* Apply wind animation to specific elements */
.destination-card:hover img, .gallery-item:hover img, .about-image:hover img {
    animation: wind-sway 5s ease-in-out infinite;
}

/* Forest parallax lighting effect */
.forest-light {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    animation: forest-light 10s ease-in-out infinite alternate;
    pointer-events: none;
    opacity: 0.5;
    z-index: 2;
}

@keyframes forest-light {
    0% {
        opacity: 0.2;
        background-position: -200% -200%;
    }
    100% {
        opacity: 0.4;
        background-position: 300% 300%;
    }
}



/* Weather Effects */
/* Rain animation */
.rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    display: none; /* Hidden by default, enable via JS for weather effects */
}

.rain-drop {
    position: absolute;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5));
    border-radius: 0 0 5px 5px;
    transform: translateY(-100vh);
    animation: rain-fall linear infinite;
}

@keyframes rain-fall {
    0% {
        transform: translateY(-100vh);
    }
    100% {
        transform: translateY(100vh);
    }
}

/* Fog animation */
.fog {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    animation: fog-move 20s ease-in-out infinite alternate;
    display: none; /* Hidden by default, enable via JS for weather effects */
}

@keyframes fog-move {
    0% {
        opacity: 0;
        transform: translateX(-5%) translateY(0%);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translateX(5%) translateY(5%);
    }
}

/* Snow animation */
.snow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    display: none; /* Hidden by default, enable via JS for weather effects */
}

.snowflake {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: snow-fall linear infinite, snow-shake 3s ease-in-out infinite alternate;
}

@keyframes snow-fall {
    0% {
        transform: translateY(-100vh);
    }
    100% {
        transform: translateY(100vh);
    }
}

@keyframes snow-shake {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
}
}

/* ===== ADDITIONAL STYLES FOR JAVASCRIPT FEATURES ===== */
/* Styles for components that are dynamically added through JavaScript */

/* ===== SOCIAL AND INTERACTION BUTTONS ===== */
/* Favorite Button */
.favorite-button {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background-color: rgba(5, 76, 153, 0.8);
    color: var(--color-night);
    border: none;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-md);
}

.favorite-button:hover {
    background-color: white;
    transform: scale(1.1);
}

.favorite-button.active {
    color: #e74c3c;
    transform: scale(1.1);
}

.favorite-button.active i {
    animation: heartBeat 0.5s ease-in-out;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

/* Share Button */
.share-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background-color: rgba(5, 76, 153, 0.8);
    color: var(--color-night);
    border: none;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-md);
}

.share-button:hover {
    background-color: white;
    transform: scale(1.1);
}

/* Share Options */
.share-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-medium);
    cursor: pointer;
    border: none;
    background-color: #f8f9fa;
}

.share-option i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.share-option.facebook {
    color: #3b5998;
}

.share-option.twitter {
    color: #1da1f2;
}

.share-option.whatsapp {
    color: #25d366;
}

.share-option.telegram {
    color: #0088cc;
}

.share-option.email {
    color: #e74c3c;
}

.share-option:hover {
    transform: translateY(-5px);
    background-color: white;
    box-shadow: var(--shadow-md);
}

.copy-link {
    display: flex;
    margin-top: 1.5rem;
    border: 1px solid #eee;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.copy-link input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    background-color: #f8f9fa;
}

.btn-copy {
    padding: 0.8rem 1.5rem;
    background-color: var(--color-ocean);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-copy:hover {
    background-color: var(--color-deep-sea);
}

/* Favorites Modal */
.favorites-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-mountain);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.favorites-icon:hover {
    color: #e74c3c;
}

.favorites-icon .count {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background-color: #e74c3c;
    color: white;
    border-radius: var(--radius-round);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    display: none;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.favorite-item {
    background-color: rgb(35, 34, 34);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.favorite-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.favorite-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.favorite-info {
    padding: 1rem;
}

.favorite-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--color-mountain);
}

.favorite-info p {
    font-size: 0.9rem;
    color: var(--color-earth);
    margin-bottom: 1rem;
}

.btn-remove-favorite {
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    color: #e74c3c;
    border: 1px solid #e74c3c;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-remove-favorite:hover {
    background-color: #e74c3c;
    color: white;
}

.no-favorites {
    text-align: center;
    padding: 3rem 2rem;
}

.no-favorites i {
    font-size: 3rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.no-favorites h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-mountain);
}

.no-favorites p {
    color: var(--color-earth);
}

.favorite-item.removing {
    animation: fadeOutUp 0.3s ease-out forwards;
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* ===== COMPARE PACKAGES ===== */
.compare-checkbox {
    position: absolute;
    bottom: 0.01rem;
    left: 8rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--color-earth);
    z-index: 10;
}

.compare-checkbox input {
    margin-right: 0.5rem;
}

.compare-packages-button {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.8rem 1.5rem;
    background-color: var(--color-forest);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    z-index: 80;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-medium);
}

.compare-packages-button:hover {
    background-color: var(--color-leaf);
    transform: translateX(-50%) translateY(-5px);
}

.compare-packages-button span {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: white;
    color: var(--color-forest);
    border-radius: var(--radius-round);
    font-weight: 700;
    margin-left: 0.5rem;
    line-height: 24px;
    text-align: center;
}

.comparison-table-container {
    overflow-x: auto;
    margin: 1rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.comparison-table th, 
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    background-color: #1d1f1e;
    position: sticky;
    left: 0;
}

.comparison-table th {
    background-color: #1d1f1e;
    font-weight: 700;
    color: var(--color-mountain);
}

.comparison-images img {
    max-width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin: 0 auto;
}

.text-success {
    color: var(--color-leaf);
}

.text-danger {
    color: #e74c3c;
}

.btn-clear-selection {
    padding: 0.8rem 1.5rem;
    background-color: #f8f9fa;
    color: var(--color-night);
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-clear-selection:hover {
    background-color: #e9ecef;
}

/* ===== FILTER AND SEARCH ===== */
.search-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-mountain);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-icon:hover {
    color: var(--color-forest);
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    margin-bottom: 2rem;
}

.search-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #eee;
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-size: 1.1rem;
    transition: all var(--transition-medium);
}

.search-form input:focus {
    border-color: var(--color-leaf);
    box-shadow: 0 0 0 2px rgba(85, 166, 48, 0.1);
}

.search-form button {
    padding: 0 1.5rem;
    background-color: var(--color-leaf);
    color: white;
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.search-form button:hover {
    background-color: var(--color-forest);
}

.popular-searches h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-mountain);
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.popular-tags .tag {
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    color: var(--color-earth);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: all var(--transition-medium);
}

.popular-tags .tag:hover {
    background-color: var(--color-leaf);
    color: white;
    transform: translateY(-2px);
}

.search-results {
    margin-top: 2rem;
}

.loading {
    text-align: center;
    padding: 3rem 0;
    color: var(--color-earth);
}

.loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-leaf);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.result-item {
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.result-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.result-info {
    padding: 1.2rem;
}

.result-type {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #303132;
    color: var(--color-earth);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.result-item.destination .result-type {
    background-color: rgba(85, 166, 48, 0.1);
    color: var(--color-leaf);
}

.result-item.package .result-type {
    background-color: rgba(0, 119, 182, 0.1);
    color: var(--color-ocean);
}

.result-item.blog .result-type {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.result-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-mountain);
}

.result-info p {
    font-size: 0.95rem;
    color: var(--color-earth);
    margin-bottom: 1rem;
}

.result-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--color-earth);
    margin-bottom: 1rem;
}

.no-results {
    text-align: center;
    padding: 3rem 2rem;
}

.no-results i {
    font-size: 3rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-mountain);
}

.no-results p {
    color: var(--color-earth);
    margin-bottom: 1.5rem;
}

.advanced-search-button {
    display: block;
    width: 100%;
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background-color: #383839;
    color: var(--color-mountain);
    border: 1px solid #085918;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.advanced-search-button:hover {
    background-color: #087508;
}

.advanced-search-button i {
    margin-left: 0.5rem;
}

.sort-options {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.sort-options label {
    margin-right: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-earth);
}

.sort-options select {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--color-mountain);
    background-color: rgb(38, 36, 36);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.sort-options select:focus {
    border-color: var(--color-leaf);
    outline: none;
}

.price-filter-container {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.price-filter {
    background-color: rgb(44, 42, 42);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.price-filter h4 {
    margin-bottom: 1.5rem;
    color: var(--color-mountain);
    text-align: center;
}

.range-slider {
    position: relative;
    width: 100%;
    height: 5px;
    background-color: #e9ecef;
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.range-slider input {
    position: absolute;
    top: -5px;
    width: 100%;
    height: 15px;
    background: none;
    -webkit-appearance: none;
    pointer-events: none;
}

.range-slider input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-leaf);
    cursor: pointer;
    pointer-events: auto;
    border: none;
    box-shadow: var(--shadow-sm);
}

.range-slider input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-leaf);
    cursor: pointer;
    pointer-events: auto;
    border: none;
    box-shadow: var(--shadow-sm);
}

.range-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-mountain);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.3rem;
    font-size: 0.9rem;
    color: var(--color-earth);
}

.btn-filter {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background-color: var(--color-leaf);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-filter:hover {
    background-color: var(--color-forest);
}

.destination-filter-button {
    margin-left: 1.5rem;
    padding: 0.5rem 1rem;
    background-color: white;
    color: var(--color-forest);
    border: 1px solid var(--color-forest);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.destination-filter-button:hover {
    background-color: var(--color-forest);
    color: white;
}

.destination-filter-button i {
    margin-right: 0.3rem;
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-section h3 {
    margin-bottom: 1rem;
    color: var(--color-mountain);
}

.filter-section .checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.8rem;
}

.filter-section .checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--color-night);
    font-weight: 400;
    margin-bottom: 0;
}

.filter-section .checkbox-group input {
    margin-right: 0.5rem;
}

.search-summary {
    margin-bottom: 1.5rem;
}

.search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.search-filter {
    display: flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    background-color: #2f2e2e;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--color-night);
}

.remove-filter {
    width: 20px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--color-night);
    border: none;
    border-radius: var(--radius-round);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.remove-filter:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.search-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.pagination-prev, 
.pagination-next {
    width: 40px;
    height: 40px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.pagination-prev:hover, 
.pagination-next:hover {
    background-color: var(--color-leaf);
    color: white;
    border-color: var(--color-leaf);
}

.pagination-prev.disabled, 
.pagination-next.disabled {
    background-color: #f8f9fa;
    color: #ccc;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    margin: 0 1rem;
}

.pagination-numbers span {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.3rem;
    border-radius: var(--radius-round);
    cursor: pointer;
    transition: all var(--transition-medium);
    font-size: 0.95rem;
}

.pagination-numbers span.active {
    background-color: var(--color-leaf);
    color: white;
}

.pagination-numbers span:not(.active):hover {
    background-color: #f8f9fa;
}

/* ===== LAZY LOADING ===== */
.lazy-loading-indicator {
    text-align: center;
    padding: 2rem 0;
    display: none;
}

.lazy-loading-indicator.active {
    display: block;
}

.lazy-loading-indicator i {
    font-size: 1.5rem;
    color: var(--color-leaf);
    margin-right: 0.5rem;
}

.lazy-loading-indicator span {
    color: var(--color-earth);
}

.sorted {
    animation: sortAnimation 0.5s ease-out;
}

@keyframes sortAnimation {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== LANGUAGE & CURRENCY SELECTORS ===== */
.language-selector,
.currency-selector {
    position: relative;
    margin-left: 1rem;
}

.current-language,
.current-currency {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.current-language:hover,
.current-currency:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.current-language i,
.current-currency i {
    margin-left: 0.5rem;
    transition: transform var(--transition-medium);
}

.language-dropdown,
.currency-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 100;
    display: none;
    animation: fadeInUp 0.3s ease-out;
}

.language-dropdown.show,
.currency-dropdown.show {
    display: block;
}

.language-option,
.currency-option {
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.language-option:hover,
.currency-option:hover {
    background-color: #f8f9fa;
}

/* ===== THEME SWITCHER ===== */
.theme-switcher {
    position: relative;
    margin-left: 1rem;
}

.current-theme {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-round);
    border: none;
    font-size: 1.1rem;
    color: var(--color-mountain);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.current-theme:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.theme-options {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    margin-top: 0.5rem;
    z-index: 100;
    display: none;
    animation: fadeInUp 0.3s ease-out;
}

.theme-options.show {
    display: flex;
}

.theme-option {
    width: 36px;
    height: 36px;
    margin: 0.3rem;
    border-radius: var(--radius-round);
    border: none;
    background-color: #f8f9fa;
    color: var(--color-mountain);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.theme-option:hover {
    background-color: #e9ecef;
    transform: scale(1.1);
}

.theme-option[data-theme="dark"] {
    background-color: #343a40;
    color: white;
}

.theme-option[data-theme="nature"] {
    background-color: var(--color-leaf);
    color: white;
}

.theme-option[data-theme="ocean"] {
    background-color: var(--color-ocean);
    color: white;
}

/* ===== THEME STYLES ===== */
/* Dark Theme */
body.theme-dark {
    background-color: #121212;
    background-image: linear-gradient(to bottom, #1a1a2e, #121212);
    color: white;
}

body.theme-dark header {
    background-color: rgba(26, 26, 46, 0.8);
}

body.theme-dark .destination-card,
body.theme-dark .package-card,
body.theme-dark .blog-post,
body.theme-dark .testimonial-item,
body.theme-dark .modal-content {
    background-color: #1e1e1e;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

body.theme-dark .destination-info p, 
body.theme-dark .package-info p, 
body.theme-dark .blog-content p, 
body.theme-dark .testimonial-content p {
    color: #e0e0e0;
}

body.theme-dark .about-content p, 
body.theme-dark .modal-description p {
    color: #e0e0e0;
}

body.theme-dark input, 
body.theme-dark textarea, 
body.theme-dark select {
    background-color: #333;
    border-color: #444;
    color: #f0f0f0;
}

body.theme-dark input::placeholder, 
body.theme-dark textarea::placeholder {
    color: #999;
}

body.theme-dark .modal-header, 
body.theme-dark .modal-footer {
    background-color: #2a2a2a;
}

body.theme-dark .team-member, 
body.theme-dark .value-item, 
body.theme-dark .package-card-mini {
    background-color: #262626;
}

body.theme-dark .footer {
    background-color: #0a0a0a;
}

body.theme-dark .footer-bottom {
    background-color: rgba(0, 0, 0, 0.4);
}

body.theme-dark .footer-links a,
body.theme-dark .footer-contact p,
body.theme-dark .footer-about p,
body.theme-dark .copyright {
    color: #c0c0c0;
}

body.theme-dark .filter-btn {
    background-color: transparent;
    border-color: #555;
    color: #c0c0c0;
}

body.theme-dark .filter-btn.active {
    background-color: #2c5d2d;
    color: white;
}

body.theme-dark .btn-more {
    border-color: #444;
    color: #c0c0c0;
}

body.theme-dark .btn-more:hover {
    background-color: #2c5d2d;
    border-color: #2c5d2d;
}

body.theme-dark .btn-contact {
    border-color: #444;
    color: #c0c0c0;
}

body.theme-dark .btn-contact:hover {
    background-color: #2c5d2d;
    border-color: #2c5d2d;
}

body.theme-dark .price {
    color: #55a630;
}

body.theme-dark .duration {
    color: #c0c0c0;
}

body.theme-dark .package-features li {
    color: #c0c0c0;
}

body.theme-dark .feature-item h4 {
    color: #e0e0e0;
}

body.theme-dark .feature-item p {
    color: #c0c0c0;
}

body.theme-dark .btn-view-details,
body.theme-dark .btn-book-now,
body.theme-dark .btn-submit {
    background-color: #2c5d2d;
}

body.theme-dark .btn-view-details:hover,
body.theme-dark .btn-book-now:hover,
body.theme-dark .btn-submit:hover {
    background-color: #55a630;
}

body.theme-dark #nav-menu a {
    color: #e0e0e0;
}

body.theme-dark #nav-menu a:hover {
    color: #55a630;
}

body.theme-dark .section-title h2 {
    color: #e0e0e0;
}

body.theme-dark .section-title p {
    color: #c0c0c0;
}

body.theme-dark .destination-meta,
body.theme-dark .package-meta,
body.theme-dark .blog-meta {
    color: #999;
}

body.theme-dark .social-icons a {
    background-color: #2a2a2a;
    color: #e0e0e0;
}

body.theme-dark .social-icons a:hover {
    background-color: #55a630;
}

body.theme-dark .form-group label {
    color: #e0e0e0;
}

body.theme-dark .custom-notification {
    background-color: #262626;
    color: #e0e0e0;
}

body.theme-dark .notification-header h4 {
    color: #e0e0e0;
}

body.theme-dark .notification-body p {
    color: #c0c0c0;
}

body.theme-dark .close-btn {
    color: #e0e0e0;
}

body.theme-dark .close-modal {
    color: #e0e0e0;
}

body.theme-dark .back-to-top {
    background-color: #2c5d2d;
}

body.theme-dark .back-to-top:hover {
    background-color: #55a630;
}

body.theme-dark .search-form input {
    background-color: #333;
    border-color: #444;
    color: #f0f0f0;
}

body.theme-dark .popular-tags .tag {
    background-color: #2a2a2a;
    color: #c0c0c0;
}

body.theme-dark .popular-tags .tag:hover {
    background-color: #55a630;
    color: white;
}

body.theme-dark .hamburger span {
    background-color: #e0e0e0;
}

body.theme-dark .gallery-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0)
    );
}

body.theme-dark .gallery-overlay h3 {
    color: white;
}

body.theme-dark .gallery-overlay p {
    color: #e0e0e0;
}

body.theme-dark .promo-banner {
    background: linear-gradient(
        to right,
        rgba(44, 93, 45, 0.9),
        rgba(2, 62, 138, 0.9)
    );
}

body.theme-dark .social-proof {
    background-color: #262626;
}

body.theme-dark .social-proof-content p {
    color: #e0e0e0;
}

body.theme-dark .social-proof-content span {
    color: #999;
}

body.theme-dark .tip-card {
    background-color: #262626;
}

body.theme-dark .tip-content h4 {
    color: #e0e0e0;
}

body.theme-dark .tip-content p {
    color: #c0c0c0;
}

body.theme-dark .chat-window {
    background-color: #1e1e1e;
}

body.theme-dark .chat-input {
    border-top-color: #444;
}

body.theme-dark .message-system {
    background-color: #2a2a2a;
    color: #c0c0c0;
}

body.theme-dark .message-agent .message-bubble {
    background-color: #2a2a2a;
    color: #e0e0e0;
}

body.theme-dark .message-name {
    color: #999;
}

body.theme-dark .message-time {
    color: #999;
}

body.theme-dark .typing-indicator {
    background-color: #2a2a2a;
}

body.theme-dark .typing-indicator span {
    background-color: #999;
}

body.theme-dark .accessibility-menu {
    background-color: #262626;
}

body.theme-dark .accessibility-menu h3 {
    color: #e0e0e0;
}

body.theme-dark .accessibility-option label {
    color: #e0e0e0;
}

body.theme-dark .option-buttons button {
    background-color: #333;
    border-color: #444;
}

body.theme-dark .toggle-button {
    background-color: #444;
}

body.theme-dark .close-accessibility {
    background-color: #333;
    border-color: #444;
    color: #e0e0e0;
}

body.theme-dark .weather-widget {
    background-color: rgba(30, 30, 30, 0.8);
}

body.theme-dark .weather-widget h3 {
    color: #e0e0e0;
}

body.theme-dark .weather-temp {
    color: #e0e0e0;
}

body.theme-dark .weather-update {
    color: #999;
}

body.theme-dark .price-calculation {
    background-color: #2a2a2a;
}

body.theme-dark .price-item {
    border-bottom-color: #444;
}

body.theme-dark .price-item.total {
    border-top-color: #444;
}

body.theme-dark .tooltip {
    background-color: rgba(40, 40, 40, 0.9);
}

body.theme-dark .tooltip::after {
    border-color: rgba(40, 40, 40, 0.9) transparent transparent;
}

body.theme-dark .testimonial-dots .dot {
    background-color: #555;
    opacity: 0.5;
}

body.theme-dark .testimonial-dots .dot.active,
body.theme-dark .testimonial-dots .dot:hover {
    background-color: #55a630;
    opacity: 1;
}

body.theme-dark .prev-btn, 
body.theme-dark .next-btn {
    background-color: #2c5d2d;
}

body.theme-dark .prev-btn:hover, 
body.theme-dark .next-btn:hover {
    background-color: #55a630;
}

body.theme-dark .itinerary-day {
    border-left-color: #444;
}

body.theme-dark .itinerary-day::before {
    background-color: #55a630;
    border-color: #1e1e1e;
}

body.theme-dark .day-header h4 {
    color: #e0e0e0;
}

body.theme-dark .day-header p {
    color: #999;
}

body.theme-dark .day-content li::before {
    background-color: #55a630;
}

body.theme-dark .difficulty-meter .difficult {
    background-color: #444;
}

body.theme-dark .difficulty-meter .difficult.active {
    background-color: #55a630;
}

body.theme-dark .modal-description ul li::before {
    background-color: #55a630;
}

body.theme-dark .newsletter-form input {
    background-color: #333;
    border-color: #444;
    color: #f0f0f0;
}

body.theme-dark .newsletter-privacy {
    color: #999;
}

body.theme-dark .newsletter-benefits .benefit-item i {
    color: #55a630;
}

body.theme-dark .newsletter-benefits .benefit-item p {
    color: #c0c0c0;
}

body.theme-dark .exit-popup-content h2 {
    color: #e74c3c;
}

body.theme-dark .exit-popup-content h3 {
    color: #e0e0e0;
}

body.theme-dark .exit-popup-content p {
    color: #c0c0c0;
}

body.theme-dark .form-footer {
    color: #999;
}

body.theme-dark .subscription-success i {
    color: #55a630;
}

body.theme-dark .subscription-success h3 {
    color: #e0e0e0;
}

body.theme-dark .subscription-success p {
    color: #c0c0c0;
}

body.theme-dark .terms-content h3, 
body.theme-dark .cancellation-content h3 {
    color: #e0e0e0;
}

body.theme-dark .terms-content p, 
body.theme-dark .cancellation-content p {
    color: #c0c0c0;
}

body.theme-dark .mobile-filter-dropdown .filter-selected {
    background-color: #2a2a2a;
    border-color: #444;
    color: #e0e0e0;
}

body.theme-dark .filter-options {
    background-color: #2a2a2a;
    border-color: #444;
}

body.theme-dark .filter-option {
    color: #e0e0e0;
}

body.theme-dark .filter-option:hover {
    background-color: #333;
}

body.theme-dark .tour-info {
    background-color: rgba(30, 30, 30, 0.8);
}

body.theme-dark .tour-info h2 {
    color: #e0e0e0;
}

body.theme-dark .tour-info p {
    color: #c0c0c0;
}

body.theme-dark .tour-controls .tour-control {
    background-color: rgba(30, 30, 30, 0.8);
    color: #e0e0e0;
}

body.theme-dark .tour-thumbnail-strip {
    background-color: rgba(30, 30, 30, 0.8);
}

/* Invert specific SVG and pattern colors for dark mode */
body.theme-dark .about-section::before, 
body.theme-dark .packages-section::before, 
body.theme-dark .blog-section::before, 
body.theme-dark .contact-section::before {
    filter: invert(1) opacity(0.1);
}

body.theme-dark .gallery-item img, 
body.theme-dark .destination-card img, 
body.theme-dark .package-card img, 
body.theme-dark .blog-post .blog-image img {
    filter: brightness(0.85);
}

body.theme-dark .value-item {
    background-color: rgba(30, 30, 30, 0.8);
}

/* Theme Nature */
body.theme-nature {
    background-color: #f5f7e6;
    background-image: linear-gradient(to bottom, #e8f3d6, #f5f7e6);
    color: #2c5d2d;
}

body.theme-nature .btn-primary,
body.theme-nature .btn-book-now,
body.theme-nature .btn-submit {
    background-color: #639a67;
}

body.theme-nature .btn-primary:hover,
body.theme-nature .btn-book-now:hover,
body.theme-nature .btn-submit:hover {
    background-color: #2c5d2d;
}

body.theme-nature .logo h1 {
    color: #2c5d2d;
}

body.theme-nature header.sticky {
    background-color: rgba(245, 247, 230, 0.9);
}

body.theme-nature .section-title h2 {
    color: #2c5d2d;
}

body.theme-nature .section-title h2::after {
    background-color: #639a67;
}

body.theme-nature .filter-btn {
    border-color: #639a67;
    color: #639a67;
}

body.theme-nature .filter-btn.active,
body.theme-nature .filter-btn:hover {
    background-color: #639a67;
}

body.theme-nature .price {
    color: #639a67;
}

body.theme-nature .package-features li i,
body.theme-nature .destination-meta i,
body.theme-nature .blog-meta i {
    color: #639a67;
}

body.theme-nature .btn-view-details {
    background-color: #639a67;
}

body.theme-nature .btn-view-details:hover {
    background-color: #2c5d2d;
}

body.theme-nature .social-icons a:hover {
    background-color: #639a67;
}

body.theme-nature .favorite-button.active {
    color: #639a67;
}

body.theme-nature .dot.active {
    opacity: 1;
    background-color: #639a67;
}

body.theme-nature .back-to-top {
    background-color: #639a67;
}

body.theme-nature .back-to-top:hover {
    background-color: #2c5d2d;
}

body.theme-nature .footer {
    background-color: #2c5d2d;
}

body.theme-nature .footer-links h3::after,
body.theme-nature .footer-contact h3::after {
    background-color: #639a67;
}

/* Theme Ocean */
body.theme-ocean {
    background-color: #e3f6f5;
    background-image: linear-gradient(to bottom, #bae8e8, #e3f6f5);
    color: #272643;
}

body.theme-ocean .btn-primary,
body.theme-ocean .btn-book-now,
body.theme-ocean .btn-submit {
    background-color: #2c698d;
}

body.theme-ocean .btn-primary:hover,
body.theme-ocean .btn-book-now:hover,
body.theme-ocean .btn-submit:hover {
    background-color: #1c4966;
}

body.theme-ocean .logo h1 {
    color: #2c698d;
}

body.theme-ocean header.sticky {
    background-color: rgba(227, 246, 245, 0.9);
}

body.theme-ocean .section-title h2 {
    color: #272643;
}

body.theme-ocean .section-title h2::after {
    background-color: #2c698d;
}

body.theme-ocean .filter-btn {
    border-color: #2c698d;
    color: #2c698d;
}

body.theme-ocean .filter-btn.active,
body.theme-ocean .filter-btn:hover {
    background-color: #2c698d;
}

body.theme-ocean .price {
    color: #2c698d;
}

body.theme-ocean .package-features li i,
body.theme-ocean .destination-meta i,
body.theme-ocean .blog-meta i {
    color: #2c698d;
}

body.theme-ocean .btn-view-details {
    background-color: #2c698d;
}

body.theme-ocean .btn-view-details:hover {
    background-color: #1c4966;
}

body.theme-ocean .social-icons a:hover {
    background-color: #2c698d;
}

body.theme-ocean .favorite-button.active {
    color: #2c698d;
}

body.theme-ocean .dot.active {
    opacity: 1;
    background-color: #2c698d;
}

body.theme-ocean .back-to-top {
    background-color: #2c698d;
}

body.theme-ocean .back-to-top:hover {
    background-color: #1c4966;
}

body.theme-ocean .footer {
    background-color: #272643;
}

body.theme-ocean .footer-links h3::after,
body.theme-ocean .footer-contact h3::after {
    background-color: #2c698d;
}

body.theme-ocean .cta-overlay {
    background: linear-gradient(
        to right,
        rgba(44, 105, 141, 0.8),
        rgba(39, 38, 67, 0.8)
    );
}

/* Gallery Responsive Styles */

/* Base styles for gallery containers */
.gallery-section {
    padding: 5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
}

/* Filter buttons */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

/* Gallery grid layout */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Gallery items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    aspect-ratio: 1/1;
    display: none; /* Hide all items by default */
}

.gallery-item.visible {
    display: block; /* Show only visible items */
}



.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    padding: 1.5rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Load more button */
.section-footer {
    text-align: center;
    margin-top: 2rem;
}

.btn-more {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Lightbox styles */
.lightbox-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-gallery.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 90vh;
    display: flex;
    flex-direction: column;
}

.lightbox-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1rem;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.lightbox-content img.fade {
    opacity: 0;
}

.lightbox-details {
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}

.lightbox-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lightbox-thumbnails {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 0.5rem 0;
    margin-top: 1rem;
    justify-content: center;
}

.lightbox-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.lightbox-thumbnail.active {
    opacity: 1;
    box-shadow: 0 0 0 2px #fff;
}

.lightbox-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 1rem;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

body.lightbox-open {
    overflow: hidden;
}

/* Responsive styles */
@media screen and (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        flex-shrink: 0;
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .lightbox-thumbnails {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .lightbox-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-content img {
        max-height: 50vh;
    }
}

@media screen and (max-width: 480px) {
    .gallery-container {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .gallery-section {
        padding: 3rem 1rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .lightbox-details h3 {
        font-size: 1.2rem;
    }
    
    .lightbox-details p {
        font-size: 0.9rem;
    }
    
    .lightbox-thumbnail {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 35px;
        height: 35px;
    }
    
    .lightbox-close {
        width: 35px;
        height: 35px;
        top: 0.5rem;
        right: 0.5rem;
    }
}