/* Global Styles - Nature Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #2d3436;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #27ae60;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: #636e72;
    max-width: 700px;
    margin: 0 auto;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #27ae60, #00b894);
    margin: 25px auto;
    border-radius: 2px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-list li a {
    text-decoration: none;
    color: #2d3436;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-list li a:hover {
    color: #27ae60;
    transform: translateY(-2px);
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #27ae60, #00b894);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-list li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #2d3436;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #00b894 0%, #27ae60 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-primary {
    background: #ff6b6b;
    color: white;
}

.cta-primary:hover {
    background: #e55656;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,107,107,0.4);
}

.cta-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: #27ae60;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(39,174,96,0.3);
}

.about-text h3 {
    font-size: 2rem;
    color: #2d3436;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-list {
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-item i {
    color: #27ae60;
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
    color: #2d3436;
}

.btn-nature {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #27ae60, #00b894);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(39,174,96,0.3);
}

.btn-nature:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(39,174,96,0.4);
}

/* Why Us Section */
.why-us {
    background: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card.nature {
    text-align: center;
    padding: 45px 35px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card.nature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #27ae60, #00b894);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card.nature:hover::before {
    transform: scaleX(1);
}

.feature-card.nature:hover {
    background: white;
    border-color: #27ae60;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: translateY(-10px);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #27ae60, #00b894);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.feature-card.nature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 2.2rem;
    color: white;
}

.feature-card.nature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 20px;
}

.feature-card.nature p {
    color: #636e72;
    line-height: 1.7;
}

/* Tours Section */
.tours {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
}

.adventure-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.adventure-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: #27ae60;
}

.card-header {
    position: relative;
    overflow: hidden;
}

.card-header img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.adventure-card:hover .card-header img {
    transform: scale(1.1);
}

.difficulty-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.difficulty-badge:contains("ASAN") {
    background: #00b894;
    color: white;
}

/* CSS doesn't support :contains, so we'll use classes in JS or define specific styles */
.difficulty-badge {
    background: #ff6b6b;
    color: white;
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.card-content {
    padding: 30px;
}

.tour-category {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #27ae60;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 15px;
    line-height: 1.3;
}

.tour-description {
    color: #636e72;
    margin-bottom: 25px;
    line-height: 1.6;
}

.tour-details {
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #636e72;
    font-size: 0.95rem;
}

.detail-item i {
    color: #27ae60;
    width: 16px;
}

.adventure-btn {
    width: 100%;
    background: #27ae60;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.adventure-btn:hover {
    background: #219a52;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(39,174,96,0.3);
}

/* Contact Form Section */
.contact-form {
    background: white;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.nature-form {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #27ae60;
}

.required {
    color: #ff6b6b;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39,174,96,0.1);
}

.nature-submit-btn {
    background: linear-gradient(135deg, #27ae60, #00b894);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 350px;
    margin: 30px auto 0;
    box-shadow: 0 10px 30px rgba(39,174,96,0.3);
}

.nature-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(39,174,96,0.4);
}

/* Gallery Section */
.gallery {
    background: #f8f9fa;
}

.nature-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 200px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39,174,96,0.9), rgba(0,184,148,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.overlay-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-nature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-nature {
    display: grid;
    gap: 30px;
}

.contact-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    background: white;
    border-color: #27ae60;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #27ae60, #00b894);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.card-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 10px;
}

.card-content p {
    color: #636e72;
    margin-bottom: 5px;
    font-weight: 500;
}

.card-content small {
    color: #27ae60;
    font-weight: 600;
    font-size: 0.85rem;
}

.social-nature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-nature h4 i {
    color: #27ae60;
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #e1306c, #c13584);
    color: white;
}

.social-btn.tiktok {
    background: #000;
    color: white;
}

.social-btn.whatsapp {
    background: #25d366;
    color: white;
}

.social-btn.youtube {
    background: #ff0000;
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.map-container-nature {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.map-header {
    background: linear-gradient(135deg, #27ae60, #00b894);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* Footer */
.footer-nature {
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: white;
    padding: 80px 0 30px;
}

.footer-content-nature {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 25px;
}

.eco-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(39,174,96,0.2);
    color: #27ae60;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(39,174,96,0.3);
}

.footer-links-nature h4,
.footer-adventures h4,
.footer-contact-nature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.footer-links-nature ul,
.footer-adventures ul {
    list-style: none;
}

.footer-links-nature ul li,
.footer-adventures ul li {
    margin-bottom: 12px;
}

.footer-links-nature ul li a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-nature ul li a:hover {
    color: #27ae60;
    transform: translateX(5px);
}

.footer-adventures ul li {
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-adventures ul li i {
    color: #27ae60;
    width: 16px;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #ddd;
}

.contact-item-footer i {
    color: #27ae60;
    width: 20px;
}

.footer-bottom-nature {
    border-top: 1px solid #636e72;
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    color: #ddd;
}

.footer-links-bottom {
    display: flex;
    gap: 25px;
}

.footer-links-bottom a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #27ae60;
}

/* WhatsApp Float Button */
.whatsapp-nature-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-nature-float a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    animation: natureFloat 3s ease-in-out infinite;
}

.whatsapp-nature-float a:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37,211,102,0.6);
}

.whatsapp-text {
    font-size: 0.9rem;
}

@keyframes natureFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-list {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .about-badge {
        position: static;
        margin: 20px auto;
        display: inline-flex;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .nature-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .nature-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 200px);
    }

    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-nature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .social-buttons {
        grid-template-columns: 1fr;
    }

    .footer-content-nature {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-nature-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-nature-float a {
        padding: 12px 16px;
    }

    .whatsapp-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .feature-card.nature {
        padding: 30px 20px;
    }

    .adventure-card {
        margin: 0 10px;
    }

    .nature-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 200px);
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scroll Offset for Fixed Header */
section {
    scroll-margin-top: 80px;
}

/* Additional Nature Theme Elements */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #27ae60, transparent);
}

.section:nth-child(even) {
    position: relative;
}

/* Leaf decoration for section headers */
.section-header::before {
    content: '🌿';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    opacity: 0.7;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #27ae60, #00b894);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #219a52, #009e8a);
}