:root {
    --primary-color: #444848;
    --accent-color: #aabb84;
    --bg-color: #e4e0da;
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Open Sans', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--primary-color);
    overflow-x: hidden;
    background: var(--bg-color);
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--heading-font);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--body-font);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--body-font);
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background: #7c8b5a;
    border-color: #7c8b5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(228, 224, 218, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--accent-color);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #7CB342;
    margin-bottom: 0;
}

.nav-logo span {
    font-size: 0.8rem;
    color: #757575;
    display: block;
    margin-top: -5px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-family: var(--body-font);
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2E2E2E;
    margin: 3px 0;
    transition: 0.3s;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 100vw;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(68, 72, 72, 0.7) 0%, var(--bg-color) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: none;
    width: 100vw;
    padding: 0;
    margin: 0;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: var(--heading-font);
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--heading-font);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--body-font);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn,
.hero-content .btn {
    background: transparent;
    color: #fff !important;
    border-color: #fff !important;
}

.hero-buttons .btn.btn-primary,
.hero-content .btn.btn-primary {
    background: #fff;
    color: var(--primary-color) !important;
    border-color: #fff !important;
}

.hero-buttons .btn.btn-primary:hover,
.hero-content .btn.btn-primary:hover {
    background: var(--primary-color);
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

.hero-buttons .btn.btn-secondary,
.hero-content .btn.btn-secondary {
    background: transparent;
    color: #fff !important;
    border-color: #fff !important;
}

.hero-buttons .btn.btn-secondary:hover,
.hero-content .btn.btn-secondary:hover {
    background: #fff;
    color: var(--primary-color) !important;
    border-color: #fff !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-color);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 2rem auto 0 auto;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2rem auto;
}
.service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid rgba(68, 72, 72, 0.1);
}
.service-card:hover {
    box-shadow: 0 8px 20px rgba(170, 187, 132, 0.15);
    transform: translateY(-3px);
    border-color: var(--accent-color);
}
.service-icon {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
}
.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

.service-description {
    color: #757575;
    line-height: 1.6;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}
@media (max-width: 600px) {
    .services-list {
        grid-template-columns: 1fr;
    }
}
.service-item {
    display: flex;
    align-items: flex-start;
    font-size: 1.15rem;
    color: #2E2E2E;
}
.service-icon {
    color: #7CB342;
    font-size: 1.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    line-height: 1;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-section {
    margin-bottom: 2.5rem;
}

.about-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: #7CB342;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: var(--bg-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-category {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    background: #7a8d5a;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--heading-font);
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--body-font);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.cta-buttons .btn-primary:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.cta-buttons .btn-secondary {
    color: #fff;
    border-color: #fff;
}

/* Footer */
.footer {
    background: rgba(228, 224, 218, 0.95);
    color: var(--primary-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #444848;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-logo span {
    font-size: 0.9rem;
    color: #757575;
    display: block;
    margin-top: -5px;
}

.footer-description {
    margin-top: 1rem;
    color: #757575;
    line-height: 1.6;
    font-family: var(--body-font);
}

.footer-title {
    color: #7a8d5a;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info a {
    color: #757575;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--body-font);
}

.contact-info a:hover {
    color: #7CB342;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #757575;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #7CB342;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #757575;
    padding-top: 2rem;
    text-align: center;
    color: #757575;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

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

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

/* Commercial Section */
.commercial {
    padding: 100px 0;
    background: #fff;
}

.commercial-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.commercial-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--heading-font);
}

.commercial-intro {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-family: var(--body-font);
}

.commercial-description {
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--body-font);
}

.commercial-services,
.commercial-why {
    margin-bottom: 4rem;
}

.services-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

.why-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

.services-intro,
.why-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 500;
    font-family: var(--body-font);
}

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

.why-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.trusted-by {
    font-size: 1.1rem;
    color: #7a8d5a;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: var(--body-font);
}

.commercial-cta {
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.7;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-family: var(--body-font);
}

.welcome-message {
    font-family: var(--body-font) !important;
}

/* Residential Section */
.residential {
    padding: 100px 0;
    background: var(--bg-color);
}

.residential-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.residential-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--heading-font);
}

.residential-intro {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-family: var(--heading-font);
}

.residential-description,
.residential-vision {
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    font-family: var(--body-font);
}

.residential-services {
    margin-bottom: 4rem;
}

.residential-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.7;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--body-font);
}

.cta-action {
    font-size: 1.2rem;
    color: #5a6b3a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

@media (max-width: 768px) {
    .commercial-title,
    .residential-title {
        font-size: 2rem;
    }
    
    .services-list,
    .why-features {
        grid-template-columns: 1fr;
    }
}

/* Landing Page */
.landing {
    min-height: 100vh;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
}

.landing-container {
    max-width: 800px;
    padding: 2rem;
}

.landing-logo {
    margin-bottom: 3rem;
    padding: 0;
    overflow: visible;
}

.landing-logo-img {
    max-height: 200px;
    width: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    padding: 10px 0;
}

.landing-tagline {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: #7a8d5a;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-top: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.landing-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: var(--heading-font);
}

.landing-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--heading-font);
}

.landing-description {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    opacity: 0.8;
    font-family: var(--body-font);
}

.landing-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.landing-option {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.landing-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(170, 187, 132, 0.2);
    border-color: var(--accent-color);
}

.option-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.option-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--heading-font);
}

.option-description {
    font-size: 1.1rem;
    color: var(--primary-color);
    opacity: 0.8;
    line-height: 1.5;
    font-family: var(--body-font);
}

/* Page Sections */
.page {
    display: none;
}

.page.active {
    display: block;
}

@media (max-width: 768px) {
    .landing-container {
        padding: 1rem;
        max-width: 100%;
    }
    
    .landing-logo-img {
        max-height: 120px;
    }
    
    .landing-tagline {
        font-size: 1.2rem;
        letter-spacing: 0.15em;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .landing-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .landing-subtitle {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .landing-description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .landing-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .landing-option {
        padding: 2rem 1.5rem;
    }
    
    .option-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .option-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .option-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .landing {
        padding: 10px 0;
    }
    
    .landing-container {
        padding: 0.5rem;
    }
    
    .landing-logo-img {
        max-height: 100px;
    }
    
    .landing-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .landing-subtitle {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .landing-tagline {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }
    
    .landing-option {
        padding: 1.5rem 1rem;
    }
    
    .option-title {
        font-size: 1.3rem;
    }
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
@media (max-width: 900px) {
    .services-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .services-cards {
        grid-template-columns: 1fr;
    }
}
.services-cards .service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid rgba(68, 72, 72, 0.1);
}
.services-cards .service-card:hover {
    box-shadow: 0 8px 20px rgba(170, 187, 132, 0.15);
    transform: translateY(-3px);
    border-color: var(--accent-color);
}
.services-cards .service-icon {
    color: var(--accent-color);
    font-size: 2.2rem;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
}
.services-cards .service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--body-font);
}
@media (max-width: 600px) {
    .services-cards {
        grid-template-columns: 1fr;
    }
}

.process-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin: 2.5rem 0 2rem 0;
    position: relative;
}
.process-bar::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    height: 4px;
    background: #7a8d5a;
    z-index: 0;
    border-radius: 2px;
}
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 0;
    position: relative;
    z-index: 1;
}
.process-icon {
    background: #fff;
    color: #7a8d5a;
    border: 2px solid #7a8d5a;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.process-label {
    font-size: 1rem;
    color: var(--primary-color);
    text-align: center;
    font-family: var(--body-font);
    font-weight: 600;
    margin-top: 0.2rem;
}
@media (max-width: 900px) {
    .process-bar {
        flex-direction: column;
        gap: 2.5rem;
    }
    .process-bar::before {
        top: 0;
        left: 24px;
        right: auto;
        width: 4px;
        height: 100%;
    }
    .process-step {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }
    .process-icon {
        margin-bottom: 0;
        margin-right: 1rem;
    }
    .process-label {
        text-align: left;
        margin-top: 0;
    }
}

/* Project Carousel Styles */
.project-carousel {
    padding: 80px 0;
    background: var(--bg-color);
}

.carousel-header {
    text-align: center;
    margin-bottom: 3rem;
}

.carousel-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.carousel-subtitle {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.carousel-nav {
    background: var(--accent-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.carousel-nav:hover {
    background: #7c8b5a;
    transform: scale(1.1);
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.project-info {
    text-align: center;
    max-width: 600px;
}

.project-title {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.project-description {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.6;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-image {
    width: 100%;
    max-width: 500px;
    height: 320px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.image-container:hover .project-image {
    transform: scale(1.02);
}

.image-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.image-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.image-indicators {
    display: flex;
    gap: 0.5rem;
}

.image-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-indicator.active {
    background: white;
    transform: scale(1.2);
}

.project-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.project-indicator {
    background: white;
    border: 2px solid var(--accent-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--body-font);
    font-weight: 500;
}

.project-indicator:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.project-indicator.active {
    background: var(--accent-color);
    color: white;
}

.indicator-title {
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .carousel-container {
        flex-direction: column;
        gap: 1rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .project-image {
        max-width: 100%;
        height: 180px;
    }

    .image-nav {
        bottom: 10px;
        padding: 0.25rem 0.75rem;
    }

    .project-indicators {
        flex-direction: column;
        align-items: center;
    }

    .project-indicator {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

