@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --primary-green: #1a4f32;
    --light-green: #eef7f1;
    --accent-green: #2e8b57;
    --white: #ffffff;
    --text-dark: #12261a;
    --text-light: #5f7a68;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h1 span {
    font-style: italic;
    color: var(--accent-green);
}

h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.logo i {
    color: var(--accent-green);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-green);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(26, 79, 50, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-green);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(46, 139, 87, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-only {
    display: none !important;
}

.no-scroll {
    overflow: hidden;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-green);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Full Width Banner Section */
.banner-section {
    padding-top: 85px; /* header offset */
    width: 100%;
    background-color: var(--white);
}

.banner-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Intro Content Section */
.intro-section {
    padding: 6rem 5%;
    display: flex;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, var(--light-green) 0%, var(--white) 80%);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--accent-green);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.04;
    filter: blur(60px);
    z-index: 0;
}

.intro-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: var(--primary-green);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.04;
    filter: blur(50px);
    z-index: 0;
}

.intro-content {
    max-width: 800px;
    z-index: 1;
}

.tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(46, 139, 87, 0.1);
    color: var(--accent-green);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
}

.stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.2rem;
}

.stat-item p {
    font-size: 1rem;
    margin: 0;
    color: var(--text-light);
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: #dbeae0;
}

/* Features Section */
.features {
    padding: 5rem 5% 7rem;
    background-color: var(--white);
    position: relative;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    padding: 3rem 2.5rem;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid #eef2ef;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-green) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(26, 79, 50, 0.08);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 75px;
    height: 75px;
    background: var(--light-green);
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-green);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.05) rotate(5deg);
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 { font-size: 3.8rem; }
    h2 { font-size: 2.8rem; }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 850px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.4s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
    }
    
    .nav-links .btn {
        margin-top: 1rem;
        max-width: 250px;
    }

    .intro-section {
        padding: 5rem 5% 4rem;
    }
    
    h1 { font-size: 3.2rem; }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 400px;
    }
    
    .stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    
    .banner-section {
        padding-top: 75px;
    }
    
    .intro-section {
        padding: 4rem 5% 3rem;
    }
    
    .stats {
        gap: 1.5rem;
    }
    
    .stat-item h4 {
        font-size: 2rem;
    }
    
    .stat-divider {
        height: 40px;
    }
    
    .feature-card {
        padding: 2.5rem 1.8rem;
    }
}

@media (max-width: 400px) {
    h1 { font-size: 2.4rem; }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Footer */
footer {
    padding: 6rem 5% 3rem;
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--light-green), var(--accent-green));
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.footer-logo i {
    color: var(--accent-green);
    filter: drop-shadow(0 0 10px rgba(46, 139, 87, 0.5));
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 4rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(46, 139, 87, 0.3);
    border-color: var(--accent-green);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    footer {
        padding: 4rem 5% 2rem;
    }
    
    .footer-logo {
        font-size: 1.8rem;
    }
    
    footer p {
        font-size: 1rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}
