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

:root {
    --primary-color: #4B533A;
    --secondary-color: #4B533A;
    --text-color: #1f2937;
    --light-bg: #f9fafb;
    --white: #ffffff;
    --gray: #6b7280;
    --olive-green: #4B533A;
    --action-red: #A65D57;
    --card-text: #4B533A;
    --footer-bg: #3B4A26;
    --footer-text: #ffffff;
    --footer-muted: #d1d1d1;
    --font-main: 'Montserrat', 'Inter', sans-serif;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

/* Main Content */
main {
    margin-top: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    background: var(--white);
    color: var(--text-color);
    padding: 80px 2rem 40px 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--olive-green);
    letter-spacing: -1px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.cta-button {
    display: inline-block;
    background-color: var(--olive-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(75, 83, 58, 0.3);
    background-color: var(--action-red);
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background-color: var(--light-bg);
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about p {
    font-size: 1.2rem;
    text-align: center;
    color: var(--gray);
}

/* Services Section */
.services {
    padding: 80px 2rem 6rem 2rem;
    background-color: var(--olive-green);
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--white);
}

/* Contact Section */
.contact {
    padding: 2.25rem 2rem;
    background-color: var(--light-bg);
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--olive-green);
}

.contact > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 1.75rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.9rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--olive-green);
    box-shadow: 0 0 0 3px rgba(75, 83, 58, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background-color: var(--action-red);
    color: var(--white);
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(166, 93, 87, 0.3);
}

.contact-form button:hover {
    background-color: #8f4e49;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(166, 93, 87, 0.4);
}

.contact-form button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(166, 93, 87, 0.3);
}

#form-status {
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
}

#form-status p {
    margin: 0;
    padding: 0.75rem;
    border-radius: 8px;
    background-color: rgba(75, 83, 58, 0.05);
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    font-family: var(--font-main);
    padding: 20px 20px 10px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Brand */
.footer-brand {
    text-align: center;
    padding-bottom: 6px;
}

.footer-brand h2 {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin: 0;
    color: var(--footer-text);
    text-transform: lowercase;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto 0.4rem auto;
    max-width: 1200px;
}

/* Footer Middle Section - Three Columns */
    /* Update to 1 column since we hid email and social media */
.footer-middle {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.6rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Email Column */
.footer-email {
    justify-content: flex-start;
    gap: 0.75rem;
}

.email-icon {
    color: var(--footer-text);
    flex-shrink: 0;
}

.footer-email a {
    color: var(--footer-text);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

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

/* Copyright Column */
.footer-copyright {
    justify-content: center;
}

.footer-copyright p {
    margin: 0;
    color: var(--footer-muted);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Social Media Icons */
.footer-social {
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--footer-text);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-social a:hover {
    color: var(--footer-muted);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Footer Disclaimer */
.footer-disclaimer {
    text-align: center;
    padding: 0 2rem;
}

.footer-disclaimer p {
    margin: 0;
    font-size: 10px;
    line-height: 1.6;
    color: var(--footer-muted);
    font-weight: 400;
    letter-spacing: 0.01em;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    footer {
        padding: 28px 1.5rem 24px 1.5rem;
    }

    .footer-brand h2 {
        font-size: 2rem;
    }

    .footer-middle {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-column {
        justify-content: center !important;
        flex-direction: column;
    }

    .footer-email {
        gap: 0.5rem;
    }

    .footer-social {
        gap: 2rem;
    }

    .footer-disclaimer {
        padding: 0 1rem;
    }

    .footer-disclaimer p {
        font-size: 0.5rem;
    }
}

/* Services Grid Container */
.services-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* 3-column grid on desktop */
@media (min-width: 768px) {
    .services-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service Card Styling */
.service-card {
    background: var(--white);
    border: 1px solid #eaeaea;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(166, 93, 87, 0.2);
    transform: translateY(-8px);
    border-color: var(--action-red);
}

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

.service-card .teaser {
    color: var(--gray);
    margin-bottom: 1rem;
}

/* Toggle Details Section */
.more-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    font-size: 0.95rem;
    color: var(--gray);
}

.more-details.active {
    max-height: 300px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eaeaea;
}

/* Discover More Button */
.discover-btn {
    background: var(--action-red);
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    cursor: pointer;
    margin-top: auto;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(166, 93, 87, 0.3);
}

.discover-btn:hover {
    background: #8f4e49;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(166, 93, 87, 0.4);
}

.discover-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(166, 93, 87, 0.35);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    /* Hero Section */
    .hero {
        padding: 60px 1.5rem 30px 1.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
        margin-top: 0;
        letter-spacing: -0.5px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-top: 0;
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    /* About Section */
    .about {
        padding: 4rem 1.5rem;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about p {
        font-size: 1rem;
    }

    /* Services Section */
    .services {
        padding: 60px 1.5rem 4rem 1.5rem;
        margin-top: 0;
    }

    .services h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .services-container {
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .service-card .teaser {
        font-size: 0.95rem;
    }

    .discover-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Contact Section */
    .contact {
        padding: 2rem 1.5rem;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact > .container > p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .contact-form {
        gap: 0.85rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.85rem;
        font-size: 0.95rem;
    }

    .contact-form button {
        padding: 0.85rem 1.25rem;
        font-size: 1rem;
    }

    /* Container */
    .container {
        padding: 0 1.5rem;
    }
}
