body {
    font-family: 'Inter', sans-serif;
    background-color: #F9FAFB;
    color: #1F2937;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* Header & Navigation */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #166534;
    text-decoration: none;
}

.desktop-nav {
    display: none; /* hidden */
    align-items: center;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .desktop-nav { display: flex; }
    .mobile-menu-toggle { display: none; }
}

.nav-link {
    color: #4B5563;
    text-decoration: none;
    transition: color 0.3s;
}
.nav-link:hover {
    color: #15803d;
}

.mobile-menu-toggle {
    padding: 0.5rem;
    border-radius: 0.375rem;
    color: #4B5563;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-menu-toggle:hover {
    background-color: #F3F4F6;
}
.icon-menu {
    height: 1.5rem;
    width: 1.5rem;
}

.mobile-nav {
    display: none;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 1rem;
}
.mobile-nav.active {
    display: block;
}
@media (min-width: 1024px) {
    .mobile-nav { display: none !important; }
}


.nav-link-mobile {
    display: block;
    padding: 0.75rem 0;
    color: #4B5563;
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s;
    text-align: center;
    font-weight: 600;
}
.btn-primary {
    background-color: #16a34a;
}
.btn-primary:hover {
    background-color: #15803d;
}
.btn-primary-mobile {
    display: block;
    margin-top: 0.5rem;
    background-color: #16a34a;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    text-align: center;
    text-decoration: none;
}
.btn-hero {
    background-color: #16a34a;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
}
.btn-hero:hover {
    background-color: #15803d;
}
.btn-cta {
    background-color: #ffffff;
    color: #15803d;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
}
.btn-cta:hover {
    background-color: #F3F4F6;
}


/* Hero Section */
.hero {
    position: relative;
    background-image: url('images/background.jpg'); 
    background-size: cover;
    background-position: center;
    color: #ffffff;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.hero-content {
    position: relative;
    text-align: center;
    padding-top: 8rem;
    padding-bottom: 8rem;
}
@media (min-width: 768px) {
    .hero-content {
        padding-top: 12rem;
        padding-bottom: 12rem;
    }
}
.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .hero-title { font-size: 3.75rem; }
}
.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .hero-subtitle { font-size: 1.25rem; }
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1F2937;
}
@media (min-width: 768px) {
    .section-title { font-size: 2.25rem; }
}
.section-subtitle {
    color: #4B5563;
    margin-top: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}
.services-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
    background-color: #F9FAFB;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.3s;
}
.service-card:hover {
    transform: translateY(-0.5rem);
}
.service-card-img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
}
.service-card-content {
    padding: 1.5rem;
}
.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.service-card-text {
    color: #374151;
}

/* Service Title Colors */
.service-card-title.tree-removal { color: #228B22; }
.service-card-title.landscaping { color: #3CB371; }
.service-card-title.stump-grinding { color: #8FBC8F; }
.service-card-title.tree-pruning { color: #6B8E23; }
.service-card-title.snow-removal { color: #4682B4; }
.service-card-title.masonry { color: #708090; }

/* Before/After Image Toggle */
.image-toggle-container {
    position: relative;
    width: 100%;
    height: 18rem;
    overflow: hidden;
}
.toggle-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out;
}
.after-image {
    opacity: 0;
}
.image-toggle-container.show-after .after-image {
    opacity: 1;
}
.image-toggle-button {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #E5E7EB;
    border-radius: 9999px;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 10;
}
.image-toggle-button:hover {
    background-color: white;
}
.toggle-text {
    padding: 0.25rem 1rem;
    color: #4B5563;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s;
}
.toggle-text.active {
    background-color: #16a34a;
    color: white;
}


/* About Section */
.about-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
@media (min-width: 1024px) {
    .about-content { flex-direction: row; }
}
.about-image-wrapper {
    width: 100%;
}
@media (min-width: 1024px) {
    .about-image-wrapper { width: 50%; }
}
.about-image {
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    width: 100%;
    height: 50rem
}
.about-text-wrapper {
    width: 100%;
}
@media (min-width: 1024px) {
    .about-text-wrapper { width: 50%; }
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.feature-item {
    display: flex;
    align-items: flex-start;
}
.feature-icon-wrapper {
    flex-shrink: 0;
    background-color: #16a34a;
    color: white;
    border-radius: 9999px;
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.2rem;
}
.feature-icon {
    height: 1.5rem;
    width: 1.5rem;
}
.feature-text {
    margin-left: 1rem;
}
.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
}
.feature-description {
    color: #4B5563;
}

/* Project Showcase Section Styles */
.project-showcase-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #F9FAFB;
}
.project-showcase-container {
    display: grid;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .project-showcase-container {
        grid-template-columns: 2fr 1fr;
    }
}
.project-image-wrapper {
    background-color: #E5E7EB;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.project-details-wrapper {
    text-align: center;
}
@media (min-width: 1024px) {
    .project-details-wrapper {
        text-align: left;
    }
}
#project-step-description {
    color: #374151;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    min-height: 100px; 
}
.step-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
@media (min-width: 1024px) {
    .step-nav-buttons {
        justify-content: flex-start;
    }
}
.step-btn {
    background-color: #E5E7EB;
    color: #4B5563;
    border: none;
    border-radius: 9999px;
    width: 2.5rem;
    height: 2.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.step-btn:hover {
    background-color: #D1D5DB;
}
.step-btn.active {
    background-color: #16a34a;
    color: white;
}


/* CTA Section */
.cta-section {
    background-color: #15803d;
    color: white;
}
.cta-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
    text-align: center;
}
.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-subtitle {
    color: #D1FAE5;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}
.cta-phone-number {
    margin-top: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
}

/* Footer */
.site-footer-bottom {
    background-color: #1F2937;
    color: white;
}
.footer-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
}
.footer-credit {
    color: #9CA3AF;
    margin-top: 0.5rem;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
