/* --- Variables & Reset --- */
:root {
    --bg: #F7F9F8;
    --bg-alt: #EFF3F2;
    --surface: #FFFFFF;
    --primary: #1A4D47; /* Deep Forest Teal */
    --accent: #4CAF50;  /* Vibrant Leaf Green */
    --text-main: #1F2927;
    --text-muted: #5C6B68;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.9);
    --shadow-sm: 0 4px 12px rgba(26, 77, 71, 0.05);
    --shadow-md: 0 12px 32px rgba(26, 77, 71, 0.08);
    --shadow-lg: 0 24px 48px rgba(26, 77, 71, 0.12);
    --font-heading: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;
    --radius: 24px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Organic Background Blobs --- */
.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}
.blob-1 {
    width: 600px; height: 600px;
    background: #DCE7E5;
    top: -10%; left: -10%;
}
.blob-2 {
    width: 500px; height: 500px;
    background: #E8F5E9;
    bottom: 10%; right: -10%;
}

/* --- Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.bg-alt { background-color: var(--bg-alt); }
.text-center { text-align: center; }

.overline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.section-head { margin-bottom: 60px; max-width: 700px; }
.section-head.text-center { margin-left: auto; margin-right: auto; }
.section-head h2 { font-family: var(--font-heading); font-size: 3rem; font-weight: 500; line-height: 1.1; margin-bottom: 16px; color: var(--primary); }
.section-head p { font-size: 1.15rem; color: var(--text-muted); }

/* --- Glassmorphism --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.glass-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.organic-btn {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(26, 77, 71, 0.25);
}
.organic-btn:hover {
    background: #133C37;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(26, 77, 71, 0.35);
}
.btn-ghost {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: #fff; }
.full-w { width: 100%; }

/* --- Navigation --- */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    top: 10px;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
}
.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}
.brand-logo span { color: var(--accent); }
.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}
.nav-menu a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}
.nav-menu a:hover { color: var(--accent); }
.nav-cta {
    background: var(--primary);
    color: #fff;
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
.mobile-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); transition: var(--transition); }

/* --- Hero Section --- */
.hero {
    padding: 160px 0 100px;
    position: relative;
}
.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 175, 80, 0.1);
    color: #2E7D32;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}
.badge-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } 100% { opacity: 1; transform: scale(1); } }

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 500;
}
.hero-intro { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 550px; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 48px; }
.trust-row { display: flex; gap: 24px; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }
.trust-item { color: var(--accent); }

.hero-visual {
    position: relative;
    height: 500px;
}
.topo-card {
    position: absolute;
    top: 0; right: 0;
    width: 300px; height: 350px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.topo-graphic {
    width: 100%; height: 250px;
    border-radius: 16px;
    background: #E8F5E9;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(26, 77, 71, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(76, 175, 80, 0.15) 0%, transparent 40%),
        repeating-radial-gradient(circle at 50% 50%, transparent 0px, transparent 12px, rgba(26, 77, 71, 0.1) 12px, rgba(26, 77, 71, 0.1) 13px);
}
.topo-label { font-weight: 600; color: var(--primary); font-size: 0.9rem; }

.stat-card {
    position: absolute;
    padding: 20px;
    width: 180px;
    text-align: center;
}
.stat-card:nth-child(2) { bottom: 100px; left: -20px; }
.stat-card:nth-child(3) { bottom: 0; right: 40px; }
.stat-num { font-family: var(--font-heading); font-size: 2.5rem; color: var(--primary); font-weight: 700; }
.stat-text { font-size: 0.85rem; color: var(--text-muted); }

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.service-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
}
.service-icon { font-size: 2.5rem; margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--primary); margin-bottom: 12px; font-weight: 600; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; flex-grow: 1; }
.card-features { list-style: none; margin-bottom: 24px; }
.card-features li { font-size: 0.85rem; color: var(--text-main); margin-bottom: 6px; padding-left: 20px; position: relative; }
.card-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }
.card-link { color: var(--primary); text-decoration: none; font-weight: 600; font-size: 0.95rem; margin-top: auto; }

/* --- Stats Section --- */
.stats-section { padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stat-box { padding: 40px; text-align: center; }
.stat-box h3 { font-family: var(--font-heading); font-size: 3.5rem; color: var(--primary); margin-bottom: 8px; }
.stat-box p { color: var(--text-muted); font-weight: 500; }

/* --- Timeline --- */
.timeline-container { position: relative; max-width: 800px; margin: 0 auto; }
.timeline-line {
    position: absolute;
    left: 24px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
}
.timeline-node {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
    align-items: center;
}
.node-marker {
    width: 50px; height: 50px;
    background: var(--surface);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}
.node-content { padding: 24px; flex: 1; }
.node-content h3 { font-family: var(--font-heading); color: var(--primary); margin-bottom: 8px; font-size: 1.3rem; }
.node-content p { color: var(--text-muted); font-size: 0.95rem; }

/* --- Portfolio (CSS Art) --- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.portfolio-item { height: 350px; overflow: hidden; position: relative; }
.css-art { width: 100%; height: 100%; transition: transform 0.6s ease; }
.portfolio-item:hover .css-art { transform: scale(1.05); }
.topo-art {
    background: #E0F2F1;
    background-image: repeating-radial-gradient(circle at 50% 50%, transparent 0px, transparent 20px, rgba(26, 77, 71, 0.08) 20px, rgba(26, 77, 71, 0.08) 22px);
}
.water-art {
    background: linear-gradient(135deg, #B2EBF2 0%, #80DEEA 100%);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.2) 30px, rgba(255,255,255,0.2) 60px);
}
.soil-art {
    background: #D7CCC8;
    background-image: radial-gradient(circle at 30% 70%, #A1887F 0%, transparent 40%), radial-gradient(circle at 80% 20%, #8D6E63 0%, transparent 30%);
}
.portfolio-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(255,255,255,0.95), transparent);
    transform: translateY(20px); opacity: 0;
    transition: var(--transition);
}
.portfolio-item:hover .portfolio-info { transform: translateY(0); opacity: 1; }
.portfolio-info h4 { font-family: var(--font-heading); color: var(--primary); margin-bottom: 4px; }

/* --- Editorial Article --- */
.article-wrapper { max-width: 900px; margin: 0 auto; }
.article-meta-bar {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; padding: 16px; margin-bottom: 40px;
    border-radius: 100px; font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
}
.meta-tag { background: var(--primary); color: #fff; padding: 4px 12px; border-radius: 100px; font-size: 0.8rem; }
.meta-divider { color: #ddd; }

.editorial-content { padding: 60px; }
.article-title { font-family: var(--font-heading); font-size: 3rem; line-height: 1.1; color: var(--primary); margin-bottom: 32px; font-weight: 500; }
.lead-paragraph { font-size: 1.25rem; color: var(--text-main); line-height: 1.7; margin-bottom: 40px; }
.dropcap { float: left; font-family: var(--font-heading); font-size: 5rem; line-height: 0.8; padding-right: 12px; color: var(--accent); font-weight: 700; }

.editorial-content h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--primary); margin-top: 48px; margin-bottom: 20px; font-weight: 500; }
.editorial-content h3 { font-size: 1.4rem; color: var(--primary); margin-top: 32px; margin-bottom: 12px; font-weight: 600; }
.editorial-content p { font-size: 1.1rem; color: var(--text-main); line-height: 1.8; margin-bottom: 24px; }
.editorial-content ol, .editorial-content ul { margin-bottom: 24px; padding-left: 24px; }
.editorial-content li { font-size: 1.05rem; margin-bottom: 12px; color: var(--text-main); }
.editorial-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; font-weight: 600; }

.callout-box {
    padding: 24px; border-radius: 16px; margin: 32px 0;
    border-left: 4px solid;
}
.tip-box { background: #F1F8E9; border-color: var(--accent); }
.tip-box h4 { color: #2E7D32; margin-bottom: 8px; }
.warning-box { background: #FFEBEE; border-color: #E53935; }
.warning-box h4 { color: #C62828; margin-bottom: 8px; }

.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
.benefit-item { background: #F5F5F5; padding: 24px; border-radius: 16px; }
.benefit-item h4 { color: var(--primary); margin-bottom: 8px; font-family: var(--font-heading); }
.benefit-item p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

.comparison-table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 0.95rem; }
.comparison-table th { background: var(--primary); color: #fff; padding: 16px; text-align: left; font-weight: 600; }
.comparison-table td { padding: 16px; border-bottom: 1px solid #eee; color: var(--text-main); }
.comparison-table tr:nth-child(even) { background: #f9f9f9; }

.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
.pros-box, .cons-box { padding: 24px; border-radius: 16px; }
.pros-box { background: #E8F5E9; border: 1px solid #C8E6C9; }
.cons-box { background: #FFEBEE; border: 1px solid #FFCDD2; }
.pros-box h4 { color: #2E7D32; margin-bottom: 16px; font-family: var(--font-heading); }
.cons-box h4 { color: #C62828; margin-bottom: 16px; font-family: var(--font-heading); }
.pros-box ul, .cons-box ul { list-style: none; padding: 0; }
.pros-box li, .cons-box li { font-size: 0.95rem; margin-bottom: 8px; padding-left: 24px; position: relative; }
.pros-box li::before { content: '✓'; position: absolute; left: 0; color: #2E7D32; font-weight: bold; }
.cons-box li::before { content: '✕'; position: absolute; left: 0; color: #C62828; font-weight: bold; }

/* --- FAQ --- */
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { padding: 0; overflow: hidden; border-radius: 16px; }
.faq-q {
    width: 100%; text-align: left; padding: 24px;
    background: transparent; border: none; cursor: pointer;
    font-size: 1.1rem; font-weight: 600; color: var(--primary);
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-body);
}
.faq-q::after { content: '+'; font-size: 1.5rem; color: var(--accent); transition: var(--transition); }
.faq-item.active .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 24px; }
.faq-item.active .faq-a { max-height: 200px; padding: 0 24px 24px; }
.faq-a p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-card { padding: 32px; }
.stars { color: #FFC107; margin-bottom: 16px; font-size: 1.2rem; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-main); font-style: italic; margin-bottom: 24px; font-size: 1rem; }
.client-meta { display: flex; align-items: center; gap: 16px; }
.avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-family: var(--font-heading);
}
.client-meta h4 { font-size: 1rem; color: var(--primary); margin-bottom: 2px; }
.client-meta span { font-size: 0.85rem; color: var(--text-muted); }

/* --- Contact Section --- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info { padding: 48px; }
.contact-info h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--primary); margin-bottom: 16px; font-weight: 500; }
.contact-info > p { color: var(--text-muted); margin-bottom: 40px; font-size: 1.1rem; }
.info-block { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.info-icon { font-size: 1.5rem; }
.info-block strong { display: block; color: var(--primary); margin-bottom: 4px; }
.info-block a, .info-block p { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; }
.info-block a:hover { color: var(--accent); }
.hours-box { background: #F5F5F5; padding: 24px; border-radius: 16px; margin-top: 32px; }
.hours-box h4 { color: var(--primary); margin-bottom: 12px; font-family: var(--font-heading); }
.hours-box ul { list-style: none; }
.hours-box li { display: flex; justify-content: space-between; font-size: 0.95rem; color: var(--text-main); }

.contact-form-wrapper { padding: 48px; }
.contact-form-wrapper h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--primary); margin-bottom: 32px; font-weight: 500; }
.modern-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: var(--text-main); }
.form-group input, .form-group select, .form-group textarea {
    padding: 14px; border: 1px solid #E0E0E0; border-radius: 12px;
    font-family: var(--font-body); font-size: 1rem; background: #fff;
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

/* --- Footer --- */
.site-footer { background: var(--primary); color: #fff; padding: 80px 0 30px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-col h3 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 16px; font-weight: 500; }
.footer-col h3 span { color: var(--accent); }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 20px; font-weight: 600; }
.footer-col p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.6; margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.95rem; transition: var(--transition); }
.footer-col a:hover { color: #fff; }
.social-icons { display: flex; gap: 16px; margin-top: 20px; }
.social-icons a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.8rem;
}
.social-icons a:hover { background: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* --- Animations --- */
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid, .testimonials-grid, .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-intro { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .trust-row { justify-content: center; flex-wrap: wrap; }
    .hero-visual { height: 400px; margin-top: 60px; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .editorial-content { padding: 40px 24px; }
    .article-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .glass-nav { width: 90%; }
    .nav-menu { 
        display: none; position: absolute; top: 70px; left: 0; width: 100%;
        background: #fff; flex-direction: column; padding: 24px;
        border-radius: 24px; box-shadow: var(--shadow-lg); gap: 20px;
    }
    .nav-menu.active { display: flex; }
    .nav-cta { display: none; }
    .mobile-toggle { display: flex; }
    
    .hero-title { font-size: 2.8rem; }
    .section-head h2 { font-size: 2.2rem; }
    
    .services-grid, .stats-grid, .testimonials-grid, .portfolio-grid { grid-template-columns: 1fr; }
    .benefits-grid, .pros-cons-grid, .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    
    .hero-visual { display: none; } /* Hide complex visual on mobile for cleaner layout */
    
    .comparison-table { display: block; overflow-x: auto; }
}