* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2E5C3F;
    --secondary-color: #7CB342;
    --accent-color: #66BB6A;
    --earth-accent: #D2691E;
    --golden-accent: #E8A44C;
    --text-dark: #3E4E3A;
    --text-light: #6B7B67;
    --bg-light: #F5F8F5;
    --white: #FFFFFF;
    --transition: all 0.4s ease;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    overflow-x: hidden;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    background: rgba(230, 235, 230, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: var(--transition);
    border-radius: 20px;
    padding: 0.8rem 1rem;
    bottom: auto;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.nav-left, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center {
    flex: 0 0 auto;
    text-align: center;
    margin: 0 2rem;
}

.nav-logo {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.btn-primary {
    background: var(--text-dark);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 0.75rem 1.8rem;
    border: 1.5px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    display: inline-block;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    background: linear-gradient(to bottom, 
                    rgba(0, 0, 0, 0) 0%, 
                    rgba(0, 0, 0, 0.1) 40%,
                    rgba(30, 40, 30, 0.7) 100%), 
                url('https://lh3.googleusercontent.com/gps-cs-s/AG0ilSzOBwq_QijuXunqL_EG5jsdJ3frkhOZ4ybJ8_vY3oIdiGcEP2cCzYL1ccvlED2ty5eZLWvePwYW-g1AR4XJ72aEcKcefc9datasGyOwIDvZIZCNx4QC2mnuJxK0SalTLnIAZE76mw=w1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 1;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: var(--golden-accent);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.98;
    font-weight: 300;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-hero:hover {
    background: rgba(232, 164, 76, 0.25);
    border-color: var(--golden-accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(232, 164, 76, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    animation: bounce 2s infinite;
}

.hero-scroll span {
    font-size: 0.85rem;
    opacity: 0.85;
    font-weight: 300;
    letter-spacing: 1px;
}

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 80px;
}

.wave-bottom .shape-fill {
    fill: var(--white);
}

.wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-top svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 80px;
}

.wave-top .shape-fill {
    fill: var(--white);
}

.wave-top-reverse {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-top-reverse svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 80px;
}

.wave-top-reverse .shape-fill {
    fill: var(--bg-light);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.page-header {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, rgba(46, 92, 63, 0.9) 0%, rgba(62, 78, 58, 0.85) 100%);
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 300;
}

.intro-section {
    padding: 100px 20px 80px;
    background: var(--white);
    text-align: center;
    position: relative;
    z-index: 2;
}

.decorative-leaf {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.title-separator {
    width: 80px;
    height: 4px;
    background: var(--golden-accent);
    margin: 1.5rem auto;
    border-radius: 2px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.intro-content p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-light);
    font-weight: 300;
}

.quick-links-section {
    padding: 120px 20px 120px;
    background: var(--bg-light);
    position: relative;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.quick-link-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: none;
    position: relative;
    overflow: hidden;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--golden-accent));
    transition: var(--transition);
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quick-link-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    width: 90px;
    height: 90px;
    background: var(--bg-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.quick-link-card:hover .quick-link-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.quick-link-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.quick-link-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

.vehicles-section {
    padding: 120px 20px;
    background: var(--bg-light);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3.5rem;
    margin-bottom: 5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.vehicle-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.vehicle-image {
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.vehicle-content {
    padding: 2.5rem;
}

.vehicle-content h3 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Lora', serif;
}

.vehicle-features {
    list-style: none;
    margin-bottom: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.vehicle-features li {
    background: var(--bg-light);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 300;
}

.vehicle-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 2;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

.visitor-info-section {
    padding: 140px 20px 100px;
    background: var(--white);
    position: relative;
}

.visitor-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    border-left: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.info-content p {
    margin-bottom: 1.8rem;
    color: var(--text-dark);
    line-height: 2;
    font-weight: 300;
}

.info-content strong {
    color: var(--primary-color);
    font-weight: 500;
}

.event-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.event-item:last-child {
    border-bottom: none;
}

.event-date {
    font-size: 0.85rem;
    color: var(--earth-accent);
    font-weight: 500;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-item p {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.experiences-section {
    padding: 120px 20px;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Lora', serif;
    letter-spacing: 0.5px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.08rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 2;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.experience-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.experience-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-overlay {
    font-size: 4rem;
    filter: brightness(1.2);
}

.experience-content {
    padding: 2.5rem;
}

.experience-content h3 {
    font-size: 1.45rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Lora', serif;
}

.experience-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 2;
    font-weight: 300;
}

.link-arrow {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.link-arrow:hover {
    color: #689F38;
    transform: translateX(5px);
    display: inline-block;
}

.wildlife-section {
    padding: 120px 20px;
    background: var(--bg-light);
}

.wildlife-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.wildlife-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Lora', serif;
    letter-spacing: 0.5px;
}

.wildlife-content > p {
    color: var(--text-light);
    font-size: 1.08rem;
    line-height: 2;
    margin-bottom: 4rem;
    font-weight: 300;
}

.wildlife-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3.5rem;
    margin-bottom: 4rem;
}

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

.wildlife-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.wildlife-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Lora', serif;
}

.wildlife-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.9;
    font-weight: 300;
}

.testimonials-section {
    padding: 120px 20px;
    background: #f5f5f5;
}

.testimonials-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Lora', serif;
    letter-spacing: 0.5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    font-weight: 400;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.about-section {
    padding: 120px 20px;
    background: var(--white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Lora', serif;
    letter-spacing: 0.5px;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.08rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(46, 92, 63, 0.03), rgba(124, 179, 66, 0.03));
    border-radius: 12px;
    border: 1px solid rgba(46, 92, 63, 0.1);
    max-width: fit-content;
}

.rating-score {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
    font-family: 'Lora', serif;
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rating-stars {
    color: #FFA500;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Lora', serif;
    letter-spacing: 0.5px;
}

.about-content p {
    color: var(--text-light);
    font-size: 1.08rem;
    line-height: 2.1;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.about-video {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(46, 92, 63, 0.1);
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 6px;
    border: 1px solid rgba(46, 92, 63, 0.1);
    position: sticky;
    top: 100px;
}

.about-video video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
    border-radius: 10px;
    outline: none;
}

.gallery-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 92, 63, 0.2);
}

.gallery-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 92, 63, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.gallery-icon {
    font-size: 1.2rem;
}

.about-video video::-webkit-media-controls-panel {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.8));
}

.about-video video::-webkit-media-controls-play-button,
.about-video video::-webkit-media-controls-current-time-display,
.about-video video::-webkit-media-controls-time-remaining-display,
.about-video video::-webkit-media-controls-timeline,
.about-video video::-webkit-media-controls-volume-slider,
.about-video video::-webkit-media-controls-mute-button {
    filter: brightness(1.2);
}

@media (max-width: 968px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-video {
        max-width: 500px;
        margin: 0 auto;
        position: relative;
        top: 0;
    }
    
    .about-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-video {
        max-width: 100%;
        padding: 6px;
    }
}

.features-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Lora', serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(46, 92, 63, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(46, 92, 63, 0.15);
    border-color: var(--accent-color);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Lora', serif;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.conservation-section {
    padding: 100px 20px;
    background: var(--white);
}

.conservation-content {
    max-width: 1000px;
    margin: 0 auto;
}

.conservation-content h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Lora', serif;
}

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

.conservation-item {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(46, 92, 63, 0.03), rgba(124, 179, 66, 0.03));
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.conservation-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.conservation-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.coming-soon-section {
    padding: 120px 20px;
    background: var(--white);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.coming-soon-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Lora', serif;
    font-weight: 400;
}

.coming-soon-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 92, 63, 0.2);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(46, 92, 63, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.tours-intro {
    padding: 80px 20px;
    background: var(--white);
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Lora', serif;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

.tours-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(46, 92, 63, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(46, 92, 63, 0.15);
}

.tour-image {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    text-align: center;
    position: relative;
}

.tour-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-icon {
    font-size: 4rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

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

.tour-content h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Lora', serif;
}

.tour-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tour-duration,
.tour-difficulty {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.tour-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.tour-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.tour-highlights li {
    color: var(--text-light);
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(46, 92, 63, 0.1);
}

.tour-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    font-family: 'Lora', serif;
}

.tour-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 92, 63, 0.2);
}

.tour-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 92, 63, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.tour-info-section {
    padding: 80px 20px;
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-box {
    background: linear-gradient(135deg, rgba(46, 92, 63, 0.03), rgba(124, 179, 66, 0.03));
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.info-box h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.info-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.info-note {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.seasons-section {
    padding: 120px 20px;
    background: var(--bg-light);
}

.seasons-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Lora', serif;
    letter-spacing: 0.5px;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.08rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.season-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    border-top: 3px solid var(--secondary-color);
    transition: var(--transition);
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.season-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Lora', serif;
}

.season-card p {
    color: var(--text-light);
    line-height: 2;
    font-weight: 300;
}

.contact-section {
    padding: 120px 20px;
    background: var(--white);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Lora', serif;
    letter-spacing: 0.5px;
}

.acknowledgement-box {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    border-left: 6px solid var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.acknowledgement-box p {
    color: var(--text-dark);
    line-height: 1.9;
    font-weight: 300;
    font-style: italic;
    margin: 0;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    transition: var(--transition);
    font-weight: 300;
    background: var(--bg-light);
}

.form-group select {
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--golden-accent);
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form button {
    align-self: center;
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.under-construction {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.construction-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.under-construction h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Lora', serif;
}

.under-construction p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.email-link {
    display: inline-block;
    font-size: 1.3rem;
    color: var(--accent-color);
    text-decoration: none;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(46, 92, 63, 0.05), rgba(124, 179, 66, 0.05));
    border-radius: 8px;
    border: 2px solid var(--accent-color);
    margin: 1rem 0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.email-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 92, 63, 0.2);
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 30px;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.15rem;
    font-weight: 400;
    font-family: 'Lora', serif;
}

.footer-col p {
    opacity: 0.85;
    line-height: 1.8;
    font-weight: 300;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom > p {
    opacity: 0.7;
    margin-bottom: 2rem;
}

.legal-disclaimers {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: left;
}

.legal-disclaimers p {
    font-size: 0.85rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.legal-disclaimers p:last-child {
    margin-bottom: 0;
}

.legal-disclaimers strong {
    color: var(--secondary-color);
    font-weight: 500;
}

@media (max-width: 960px) {
    .nav-container {
        justify-content: space-between;
    }

    .nav-left, .nav-right ul {
        display: none;
    }

    .nav-center {
        margin: 0;
        text-align: left;
        flex: 1;
    }

    .nav-right {
        flex: 0;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .nav-toggle span {
        width: 24px;
        height: 2px;
        background: var(--text-dark);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        margin-top: 10px;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-left .nav-menu, .nav-right .nav-menu {
        display: none; 
    }
    
    .nav-menu.active .nav-item {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        align-items: flex-start;
    }

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

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
    }

    .vehicles-grid,
    .experiences-grid,
    .testimonials-grid,
    .journal-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-section {
    padding: 120px 20px;
    background: linear-gradient(to bottom, var(--bg-light), var(--white));
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(46, 92, 63, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 350px;
    position: relative;
    cursor: pointer;
    background: var(--white);
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(46, 92, 63, 0.15);
    border-color: var(--accent-color);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 92, 63, 0.92), rgba(124, 179, 66, 0.88));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.expand-icon {
    font-size: 3.5rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: pulse 2s ease-in-out infinite;
}

.expand-text {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.media-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    color: white;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#lightbox-img {
    display: none;
}

#lightbox-video {
    display: none;
}

.gallery-note {
    font-style: italic;
    color: var(--text-light);
    margin-top: 3rem;
    font-size: 1rem;
    padding: 1.5rem;
    background: rgba(46, 92, 63, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.stagger-delay-4 { transition-delay: 0.4s; }

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.scale-in.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Video Loading Placeholder */
.video-loading-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 92, 63, 0.1), rgba(124, 179, 66, 0.1));
    z-index: 1;
    pointer-events: none;
}

/* Video Placeholder Message for unavailable videos */
.video-placeholder-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 92, 63, 0.05), rgba(124, 179, 66, 0.05));
}

.video-placeholder-message .video-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.video-placeholder-message h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Lora', serif;
}

.video-placeholder-message p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 300px;
}

.video-unavailable {
    cursor: default;
    pointer-events: none;
}

.video-unavailable .gallery-overlay {
    display: none;
}

.video-loading-placeholder p {
    margin-top: 1rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.video-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(46, 92, 63, 0.2);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gallery-item video,
.about-video video,
.gallery-item iframe {
    position: relative;
    z-index: 2;
}

.gallery-item iframe {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.gallery-item video[poster],
.about-video video[poster] {
    background: transparent;
}

/* Hide placeholder when video is loaded */
video:not([poster]) ~ .video-loading-placeholder {
    display: none;
}

/* iPhone and iOS Specific Optimizations */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari specific styles */
    video {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Prevent iOS zoom on input focus */
    input[type="text"],
    input[type="email"],
    textarea,
    select {
        font-size: 16px !important;
    }
    
    /* Smooth scrolling for iOS */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better tap highlighting */
    a, button, .gallery-item {
        -webkit-tap-highlight-color: rgba(124, 179, 66, 0.2);
    }
    
    /* Fix iOS video playback */
    video::-webkit-media-controls-start-playback-button {
        display: none !important;
        -webkit-appearance: none;
    }
}

/* iPhone X and newer - Safe area support */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    
    .navbar {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .footer {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }
}

/* Enhanced Mobile Compatibility */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .btn-hero {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .intro-content p {
        font-size: 1rem;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-link-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-disclaimers {
        padding: 1.5rem;
        font-size: 0.8rem;
    }
    
    .legal-disclaimers p {
        font-size: 0.8rem;
    }
    
    /* Gallery mobile improvements */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    /* Trails mobile improvements */
    .trails-grid {
        grid-template-columns: 1fr;
    }
    
    .trail-card {
        padding: 1.5rem;
    }
    
    /* Activities mobile improvements */
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-card {
        padding: 1.5rem;
    }
    
    /* Better touch targets */
    .nav-link,
    .btn-primary,
    .btn-hero {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improved spacing for mobile */
    section {
        padding: 60px 20px;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .intro-content h2 {
        font-size: 1.75rem;
    }
    
    .quick-link-card h3 {
        font-size: 1.3rem;
    }
    
    .quick-link-card p {
        font-size: 0.95rem;
    }
    
    .legal-disclaimers {
        padding: 1rem;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 40px;
        width: 50px;
        height: 50px;
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}
