:root {
    --primary: #006837;
    /* Logo Green */
    --primary-dark: #004d29;
    --accent: #88c542;
    /* Lighter vivid green */
    --light-bg: #e0f2f1;
    /* Very light teal/mint */
    --text: #1f2937;
    --text-light: #4b5563;
    --white: #ffffff;
    --border: #d1d5db;
    --container: 1200px;
}

body {
    font-family: 'Roboto', system-ui, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--light-bg);
    color: var(--text);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-top: 0;
}

/* Header */
header {
    background: var(--white);
    border-bottom: 4px solid var(--primary);
    padding: 1rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

header .inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.25rem;
    gap: 1rem;
}

header .logo img {
    height: 60px;
    width: auto;
}

nav a {
    color: var(--text);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

nav a:hover,
nav a.active {
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
}

/* Hero */
.hero {
    background: #0f172a;
    /* Fallback */
    color: white;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-image: url('/images/hero-bg.png');
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 104, 55, 0.8), rgba(0, 0, 0, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(136, 197, 66, 0.3);
    /* Green border */
    backdrop-filter: blur(5px);
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Courier New', monospace;
    /* Tech feel */
}

.hero p {
    font-size: 1.25rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: #004d29;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.2s;
}

.btn:hover {
    background: #a3d95d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(136, 197, 66, 0.4);
}

/* Container */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards (Services) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 5px solid var(--primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: #9ca3af;
    text-align: center;
    padding: 3rem;
    margin-top: 4rem;
    border-top: 5px solid var(--accent);
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    header .inner {
        position: relative;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 3px solid var(--primary);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 1rem 0;
        z-index: 200;
    }

    nav.open {
        display: flex;
    }

    nav a {
        margin-left: 0;
        padding: 0.75rem 2rem;
        border-bottom: none;
    }

    .hero {
        padding: 4rem 1.25rem;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        overflow-wrap: break-word;
    }

    .hero-content {
        padding: 1.75rem 1.25rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: clamp(1.6rem, 8vw, 2rem);
    }

    .container {
        padding: 3rem 1.25rem;
    }

    footer {
        padding: 2.5rem 1.25rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(1.5rem, 12vw, 1.75rem);
    }

    header .logo img {
        height: 40px;
    }
}