:root {
    --deep-forest: #1A2B1A;
    --moss-green: #3A5F3A;
    --soft-leaf: #8FBF7A;
    --pale-mist: #E8F2E3;
    --off-white: #FDFDFB;
    --vibrant-green: #4C9A52;
    
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;
    
    --section-padding: 80px 0;
    --container-width: 1200px;
    
    --soft-shadow: 0 4px 20px rgba(0,0,0,0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--off-white);
    color: var(--deep-forest);
    line-height: 1.7;
    overflow-x: hidden;
}

.eco-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--deep-forest);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

p {
    margin-bottom: 1.2rem;
    color: var(--moss-green);
}

a {
    color: var(--vibrant-green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--soft-leaf);
}

.nature-header {
    background: linear-gradient(180deg, var(--pale-mist) 0%, transparent 100%);
    padding: 25px 0;
    position: relative;
    z-index: 100;
    transition: var(--transition);
}

.nature-header.scrolled {
    background: rgba(232, 242, 227, 0.98);
    box-shadow: var(--soft-shadow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--deep-forest);
    letter-spacing: 0.5px;
}

@media (max-width: 320px) {
    .brand-logo {
        font-size: 1.1rem;
    }
    
    .nature-header {
        padding: 15px 0;
    }
    
    .header-inner {
        gap: 10px;
    }
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav a {
    color: var(--moss-green);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vibrant-green);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active-link::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.header-inner:has(.main-nav.active) .menu-toggle {
    display: none;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--moss-green);
    border-radius: 3px;
    transition: var(--transition);
}

.forest-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pale-mist) 0%, var(--soft-leaf) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(58, 95, 58, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(143, 191, 122, 0.15) 0%, transparent 50%);
    animation: parallaxFloat 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes parallaxFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    color: var(--deep-forest);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(255,255,255,0.3);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--moss-green);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.eco-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--vibrant-green);
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(76, 154, 82, 0.3);
}

.eco-btn:hover {
    background: var(--moss-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 154, 82, 0.4);
    color: white;
}

.eco-btn-outline {
    background: transparent;
    border: 2px solid var(--vibrant-green);
    color: var(--vibrant-green);
    box-shadow: none;
}

.eco-btn-outline:hover {
    background: var(--vibrant-green);
    color: white;
}

.nature-section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--deep-forest);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.15rem;
    color: var(--moss-green);
    max-width: 700px;
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: var(--soft-leaf);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pale-mist);
    border-radius: 50%;
    color: var(--vibrant-green);
    font-size: 2rem;
}

.service-card h3 {
    color: var(--deep-forest);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--moss-green);
    line-height: 1.8;
}

.eco-values {
    background: linear-gradient(135deg, var(--pale-mist) 0%, white 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    border-left: 4px solid var(--vibrant-green);
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.value-item h4 {
    color: var(--deep-forest);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.value-item p {
    color: var(--moss-green);
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--moss-green) 0%, var(--deep-forest) 100%);
    text-align: center;
    color: white;
}

.cta-section h2,
.cta-section p {
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: var(--pale-mist);
    padding: 40px;
    border-radius: var(--radius);
    height: fit-content;
}

.contact-info h3 {
    color: var(--deep-forest);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vibrant-green);
    font-size: 1.3rem;
}

.eco-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--soft-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-forest);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--pale-mist);
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--deep-forest);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vibrant-green);
    box-shadow: 0 0 0 3px rgba(76, 154, 82, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.consent-group {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.consent-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.consent-group label {
    font-size: 0.95rem;
    line-height: 1.6;
}

.consent-group a {
    text-decoration: underline;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--soft-shadow);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--vibrant-green);
}

.pricing-card.featured {
    border-color: var(--vibrant-green);
    background: linear-gradient(135deg, white 0%, var(--pale-mist) 100%);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vibrant-green);
    font-family: var(--heading-font);
    margin: 1rem 0;
}

.price-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.price-features li {
    padding: 10px 0;
    color: var(--moss-green);
    border-bottom: 1px solid var(--pale-mist);
}

.price-features li:before {
    content: "✓";
    color: var(--vibrant-green);
    font-weight: bold;
    margin-right: 10px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--pale-mist);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nature-footer {
    background: var(--deep-forest);
    color: var(--soft-leaf);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--soft-leaf);
    line-height: 1.8;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--soft-leaf);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(143, 191, 122, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--soft-leaf);
}

.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--pale-mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vibrant-green);
    font-size: 3rem;
}

.error-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-content h1 {
    font-size: 6rem;
    color: var(--vibrant-green);
    margin-bottom: 1rem;
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.privacy-popup.show {
    transform: translateY(0);
}

.popup-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.popup-content p {
    margin: 0;
    flex: 1;
}

.popup-actions {
    display: flex;
    gap: 15px;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .menu-close {
        display: none;
        position: absolute;
        top: 25px;
        right: 25px;
        width: 35px;
        height: 35px;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 1001;
        padding: 5px;
    }
    
    .menu-close span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--moss-green);
        border-radius: 3px;
        transition: var(--transition);
        position: absolute;
    }
    
    .menu-close span:first-child {
        transform: rotate(45deg);
    }
    
    .menu-close span:last-child {
        transform: rotate(-45deg);
    }
    
    .menu-close:hover span {
        background: var(--vibrant-green);
    }
    
    @media (max-width: 768px) {
        .menu-close {
            display: flex;
        }
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .menu-toggle.hidden {
        display: none !important;
    }
    
    .contact-wrapper,
    .about-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .service-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .popup-content {
        flex-direction: column;
        text-align: center;
    }
    
    .popup-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .popup-actions button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .eco-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
