:root {
    /* Palette derived from logo */
    --primary-main: #194937;
    /* Dark Green */
    --primary-light: #599546;
    /* Medium Green */
    --secondary: #F3F4F6;
    /* Light Gray for backgrounds */
    --text-main: #1F2937;
    /* Dark Grey for text */
    --text-light: #6B7280;
    /* Lighter Grey */
    --white: #FFFFFF;
    --accent-gold: #D4AF37;
    /* Added for elegance */

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius: 12px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

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

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

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-main);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 48px auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-main);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-main);
    color: var(--primary-main);
    margin-left: 16px;
}

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

.btn-white {
    background-color: var(--white);
    color: var(--primary-main);
}

.btn-white:hover {
    background-color: var(--text-main);
    color: var(--white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.2s;
}

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

.btn-nav {
    background-color: var(--primary-main);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 6px;
}

.btn-nav:hover {
    background-color: var(--primary-light) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-main);
    transition: 0.3s;
}

/* Hero */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FDFDFD 0%, #F3F8F5 100%);
    overflow: hidden;
}

.hero::before {
    /* Abstract shape background */
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(89, 149, 70, 0.05) 0%, rgba(25, 73, 55, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-main);
}

.highlight {
    color: var(--primary-main);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(89, 149, 70, 0.2);
    z-index: -1;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 600px;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--secondary);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    /* Optional: If we don't have a real photo, we make this a nice CSS pattern */
    background-image: repeating-linear-gradient(45deg, var(--secondary) 25%, transparent 25%, transparent 75%, var(--secondary) 75%, var(--secondary)), repeating-linear-gradient(45deg, var(--secondary) 25%, var(--white) 25%, var(--white) 75%, var(--secondary) 75%, var(--secondary));
    background-position: 0 0, 10px 10px;
    background-size: 20px 20px;
}

.decoration-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-main);
    opacity: 0.1;
    border-radius: 50%;
    top: -50px;
    left: -50px;
}

/* Services */
.services {
    background-color: #FAFAFA;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary-main);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(25, 73, 55, 0.1);
    color: var(--primary-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

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

/* CTA */
.cta-section {
    background-color: var(--primary-main);
    color: var(--white);
    padding: 80px 0;
}

.cta-section h2 {
    margin-bottom: 16px;
    font-size: 2.5rem;
}

.cta-section p {
    margin-bottom: 32px;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #111827;
    color: #9CA3AF;
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.25rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer a {
    color: #9CA3AF;
    text-decoration: none;
    transition: 0.2s;
}

.footer a:hover {
    color: var(--white);
}

.copyright {
    border-top: 1px solid #374151;
    padding-top: 24px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transform: translateX(100%);
        transition: 0.3s;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    /* Start Fix: Center buttons on mobile */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hero-buttons .btn {
        margin-left: 0;
        /* Reset global margin if any */
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* End Fix */

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Highlight Section */
.contact-highlight {
    background-color: var(--secondary);
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.contact-card {
    background: var(--white);
    padding: 32px 48px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    min-width: 250px;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-box-small {
    width: 48px;
    height: 48px;
    background-color: rgba(25, 73, 55, 0.1);
    color: var(--primary-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.contact-card h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: var(--text-main);
}

.contact-card p,
.contact-card a {
    color: var(--primary-main);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
}