:root {
    /* Olive, grounded theme */
    --color-bg: #f4f4f4;
    --color-surface: #FFFFFF;
    --color-text: #333333;
    --color-muted: #555555;
    --color-primary: #135b21;      /* deep olive */
    --color-primary-600: #0f461a;  /* hover */
    --color-accent: #457d1f;       /* lighter green */
    --shadow-1: 0 8px 24px rgba(17, 17, 26, 0.08);
    --shadow-2: 0 16px 40px rgba(17, 17, 26, 0.06);
    --radius: 14px;
}

/* General Body Styles */
body {
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.65;
    margin: 0;
    padding: 0;
    background-color: var(--color-bg);
    color: var(--color-text);
    /* Prevent accidental horizontal scroll on mobile */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings use a friendly display font */
h1, h2, h3, h4 {
    font-family: 'Poppins', 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header and Navigation */
header {
    background: var(--color-surface);
    color: var(--color-text);
    padding: 0.75rem 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

nav .logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: var(--color-primary);
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--color-muted);
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 999px;
    transition: color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--color-primary);
    background-color: rgba(19, 91, 33, 0.12);
    box-shadow: 0 2px 6px rgba(19, 91, 33, 0.18);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.menu-toggle:focus {
    outline: 3px solid rgba(19, 91, 33, 0.4);
    outline-offset: 3px;
}

.menu-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background-color: var(--color-text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Main Content */
main {
    width: 90%;
    margin: 2rem auto;
}

/* Hero Section */
.hero {
    /* Friendly gradient with olive tones */
    background:
        radial-gradient(1200px 600px at -10% -20%, rgba(69, 125, 31, 0.18), transparent 60%),
        radial-gradient(1000px 500px at 110% -10%, rgba(19, 91, 33, 0.14), transparent 60%),
        linear-gradient(135deg, #F6FFF7 0%, #EBF7EE 100%);
    color: var(--color-text);
    text-align: center;
    padding: 90px 20px;
    border-radius: calc(var(--radius) + 2px);
    box-shadow: var(--shadow-2);

    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/office.avif');
    background-size: cover;
    background-position: center;
    color:#9bbe83;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--color-muted);
    color:white;
}

.cta-button {
    background: var(--color-primary);
    color: #fff;
    padding: 14px 26px;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.2px;
    box-shadow: 0 8px 20px rgba(19, 91, 33, 0.28);
    transition: background-color 0.25s ease, transform 0.1s ease, box-shadow 0.25s ease;
}

.cta-button:hover {
    background: var(--color-primary-600);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(19, 91, 33, 0.32);
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--color-surface);
    margin-top: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-1);
}

.intro h2 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Services Overview Section */
.services-overview {
    padding: 2rem 0;
}

.services-overview h2 {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.service-card {
    background: var(--color-surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-1);
    overflow: hidden;
    width: 30%;
    min-width: 280px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    color: var(--color-primary);
    margin: 1rem 0;
}

.service-card p {
    padding: 0 1rem;
    font-size: 0.9rem;
}

.service-card a {
    display: inline-block;
    margin: 1rem 0 1.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 800;
}

.service-card a:hover {
    text-decoration: underline;
}

.text-center {
    text-align: center;
    margin-top: 2rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    background: #2B2F3A;
    color: #fff;
    margin-top: 2rem;
}

/* Content Pages */
.content-page {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-1);
}

.content-page h1, .content-page h2 {
    color: var(--color-primary);
}

.content-page .page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.content-page .page-header img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.content-section {
    margin-bottom: 2rem;
}

.content-section h3 {
    color: var(--color-primary);
    border-bottom: 2px solid rgba(19, 91, 33, 0.25);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.content-section h4 {
    margin: 0.75rem 0 0.25rem;
    color: var(--color-text);
    font-weight: 800;
}

/* CTA panel */
.cta-panel {
    background: #f6fbf7;
    border: 1px solid rgba(19, 91, 33, 0.12);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-1);
}
.cta-panel h2 {
    margin-top: 0;
}
.cta-panel .cta-button {
    margin-top: 0.5rem;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.pricing-table th, .pricing-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.pricing-table th {
    background-color: var(--color-primary);
    color: white;
}

.pricing-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* How it works steps */
.step-by-step {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.step-by-step li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.step-by-step li::before {
    content: counter(step-counter);
    margin-right: 1.5rem;
    background: var(--color-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--color-primary);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    background: #FFFFFF;
    color: var(--color-text);
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    padding: 12px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
    color: #9AA3B2;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(19, 91, 33, 0.15);
}

/* Accessibility focus outlines */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(19, 91, 33, 0.35);
    outline-offset: 3px;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    nav {
        flex-wrap: wrap;
    }

    nav .logo {
        font-size: 1.4rem;
    }

    /* Only hide menu when JS is available to toggle it */
    body.js nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 0.5rem;
        background: var(--color-surface);
        border-radius: var(--radius);
        box-shadow: var(--shadow-1);
    }

    body.js nav ul.open {
        display: flex;
    }

    nav ul li {
        margin: 0;
        border-top: 1px solid #eee;
    }

    nav ul li a {
        display: block;
        padding: 12px 10px;
    }

    .menu-toggle {
        display: inline-block;
    }

    .hero {
        padding: 70px 16px;
        border-radius: 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .service-card {
        width: 100%;
        min-width: 0;
    }
}
