:root {
    --primary-green: #1b5e20;
    --secondary-green: #2e7d32;
    --light-green: #e8f5e9;
    --accent-green: #4caf50;
    --yellow-accent: #ffc107;
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --border-radius: 10px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.15);
    --footer-dark: #0d3e1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Header & Navigation */
.main-header {
    background-color: transparent;
    backdrop-filter: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.3s ease;
    border-bottom: none;
}

.main-header.scrolled {
    background-color: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2.5px solid white;
    clip-path: polygon(50% 5%, 10% 90%, 90% 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.3s;
}

.main-header.scrolled .logo-placeholder {
    border-color: var(--primary-green);
}

.logo-placeholder::before {
    content: '🌲';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    z-index: 1;
}

.logo-text h1 {
    font-size: 22px;
    color: white;
    margin-bottom: 4px;
    font-weight: 700;
    transition: color 0.3s;
}

.main-header.scrolled .logo-text h1 {
    color: var(--primary-green);
}

.logo-text p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.main-header.scrolled .logo-text p {
    color: var(--text-muted);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.main-nav {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    padding: 10px 18px;
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s;
}

.main-header.scrolled .main-nav a {
    color: var(--text-dark);
}

.main-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.main-header.scrolled .main-nav a:hover {
    background-color: var(--light-green);
    color: var(--primary-green);
}

.nav-btn {
    padding: 10px 25px;
    background-color: var(--secondary-green);
    color: white;
    border-radius: 5px;
    font-weight: 600;
}

.nav-btn:hover {
    background-color: var(--primary-green);
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
        url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
    padding: 180px 20px 100px;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero h2 {
    font-size: 64px;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero h2 .highlight {
    color: var(--yellow-accent);
    display: block;
    margin-top: 5px;
}

.hero p {
    font-size: 19px;
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 45px;
    background-color: var(--secondary-green);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    padding: 16px 45px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-green);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
}

.scroll-indicator-circle {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator-line {
    width: 2px;
    height: 20px;
    background-color: white;
    margin-top: 5px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Quick Stats Strip */
.stats-section {
    background-color: transparent;
    padding: 0 20px;
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: #e0e0e0;
}

.stat-icon {
    width: 65px;
    height: 65px;
    background-color: var(--light-green);
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-green);
    stroke-width: 2.5;
    fill: none;
    color: var(--primary-green);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 8px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 12px;
    color: #6b6b6b;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* Preserving Nature Section */
.preserving-section {
    padding: 120px 20px 80px;
    background-color: var(--bg-white);
}

.preserving-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.preserving-content h2 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 700;
}

.preserving-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Major Eco Attractions Section */
.eco-tourism-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.attraction-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.attraction-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(180deg, #a5d6a7 0%, #66bb6a 50%, #2e7d32 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    overflow: hidden;
}

.attraction-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
    pointer-events: none;
}

.attraction-image > * {
    position: relative;
    z-index: 2;
}

.attraction-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-green);
}

.attraction-location {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 6px 12px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 5px;
    font-size: 12px;
}

.attraction-content {
    padding: 25px;
}

.attraction-content h4 {
    color: var(--primary-green);
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
}

.attraction-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-view-details {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.btn-view-details:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

/* Things to Do Section */
.things-to-do-section {
    background-color: var(--primary-green);
    color: white;
    padding: 80px 20px;
}

.things-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.things-header h2 {
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.things-header h3 {
    font-size: 36px;
    font-weight: 700;
}

.things-header p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
}

.view-all-btn {
    padding: 12px 30px;
    background-color: white;
    color: var(--primary-green);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.activity-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.activity-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.activity-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.activity-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.activity-card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Rest House Section */
.resthouse-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.resthouse-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .resthouse-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .resthouse-cards {
        grid-template-columns: 1fr;
    }
}

.resthouse-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    width: 100%;
    max-width: 100%;
}

.resthouse-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.resthouse-location {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-green);
}

.resthouse-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--light-green), var(--accent-green));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.resthouse-content {
    padding: 25px;
}

.resthouse-content h4 {
    color: var(--primary-green);
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 700;
}

.resthouse-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.resthouse-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.resthouse-feature-icon {
    width: 20px;
    height: 20px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.resthouse-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin: 20px 0;
}

.btn-book-now {
    padding: 12px 30px;
    background-color: var(--secondary-green);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
}

.btn-book-now:hover {
    background-color: var(--primary-green);
}

/* Visual Journey Section */
.visual-journey-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    z-index: 2;
    white-space: nowrap;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: var(--text-dark);
    transition: all 0.3s;
    z-index: 10;
    user-select: none;
}

.carousel-nav:hover {
    background-color: white;
    box-shadow: var(--shadow);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background-color: white;
}

/* Footer */
.footer {
    background-color: var(--footer-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.footer-logo-text h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.footer-logo-text p {
    font-size: 12px;
    opacity: 0.8;
}

.footer-logo-section > p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--secondary-green);
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }

    .header-right {
        width: 100%;
        justify-content: center;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .stats-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 30px 25px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item:nth-child(2)::after {
        display: block;
        right: -12.5px;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .resthouse-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .things-header {
        flex-direction: column;
        text-align: center;
    }

    .view-all-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 15px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .preserving-content h2 {
        font-size: 28px;
    }

    .stats-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 20px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }
}

