:root {
    --primary-green: #59a843;
    --dark-green: #0e2718;
    --light-bg: #f8f9fa;
    --card-bg: #ffffff;
    --text-dark: #111111;
    --text-muted: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-dark);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Navigatsioon */
.navbar {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--dark-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-call-nav {
    background: var(--primary-green);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
}

/* Hero */
.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?q=80&w=1600') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 15px;
}

.green-text { color: var(--primary-green); }

.hero-text p {
    max-width: 500px;
    margin-bottom: 25px;
    font-size: 1rem;
    color: #ddd;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-green { background: var(--primary-green); color: #fff; }
.btn-outline { border: 2px solid #fff; color: #fff; background: transparent; }

/* Features Bar */
.features-bar {
    background: var(--dark-green);
    color: #fff;
    padding: 20px 0;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-green);
}

.feature-item p { font-size: 0.8rem; color: #ccc; }

/* Section general */
.sub-title {
    display: block;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.sub-title.center { text-align: center; }
.sub-title.light { color: #82d866; }

.section-title { text-align: center; max-width: 800px; margin: 40px auto; }
.section-title h2 { font-size: 1.4rem; font-weight: 700; }

/* Services */
.services { padding: 50px 0; background: #fdfdfd; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.service-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { font-size: 0.85rem; color: var(--text-muted); }

/* Items grid */
.items-section { padding: 40px 0; background: #fff; }
.items-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.item-box {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    width: 120px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.item-box i { font-size: 1.8rem; color: var(--primary-green); }
.item-box span { font-size: 0.75rem; font-weight: 600; }

/* Process */
.process-section {
    padding: 50px 0;
    background: #f9f9f9;
    text-align: center;
}

.process-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
}

.step-num { font-size: 2.5rem; font-weight: 800; color: #ddd; }
.step-icon { font-size: 2rem; color: var(--primary-green); margin: 10px 0; }
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.8rem; color: var(--text-muted); }

/* Why Us */
.why-us { background: var(--dark-green); color: #fff; padding: 50px 0; }
.why-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.why-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
}

.why-item i { font-size: 2.2rem; color: var(--primary-green); margin-bottom: 15px; }
.why-item h3 { font-size: 1rem; margin-bottom: 8px; }
.why-item p { font-size: 0.8rem; color: #ccc; }

/* Footer */
.footer { background: #07150c; color: #fff; padding: 50px 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 30px;
    align-items: center;
}

.footer-info h2 { font-size: 1.5rem; margin-bottom: 10px; }
.handwriting { font-family: cursive; color: var(--primary-green); margin-top: 10px; font-size: 1.2rem; }

.footer-contacts p { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-contacts i { color: var(--primary-green); }

.lead-form { display: flex; flex-direction: column; gap: 10px; }
.lead-form input {
    padding: 12px;
    border-radius: 5px;
    border: none;
    outline: none;
}

.alert-success { background: var(--primary-green); padding: 15px; border-radius: 5px; text-align: center; }

/* Kohanduvus mobiilidele (Responsive) */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .features-grid, .services-grid, .process-grid, .why-grid, .footer-grid {
        flex-direction: column;
        align-items: center;
    }
    .hero-text h1 { font-size: 2rem; }
}
