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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    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;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4a7c59;
}

.nav-logo h2 {
    color: #2c5530;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4a7c59;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #4a7c59;
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 85, 48, 0.7);
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 3;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 124, 89, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #4a7c59;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.btn-secondary:hover {
    background: white;
    color: #4a7c59;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

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

.service-card {
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 1.5rem;
    position: relative;
    z-index: 2;
    border: 4px solid white;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
    padding: 0 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    padding: 0 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0 1.5rem 1.5rem;
}

.service-card li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
}

/* Before & After Section */
.before-after-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.before-after-gallery {
    max-width: 1400px;
    margin: 0 auto;
}

/* Work Section */
.work {
    padding: 100px 0;
    background: white;
}

.work-gallery {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #4a7c59;
    background: transparent;
    color: #4a7c59;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #4a7c59;
    color: white;
}

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

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item h3 {
    padding: 1.5rem;
    margin: 0;
    color: #2c5530;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* Before/After specific styles */
.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}

.before,
.after {
    position: relative;
    overflow: hidden;
}

.before img,
.after img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.before:hover img,
.after:hover img {
    transform: scale(1.05);
}

.label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(44, 85, 48, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.before .label {
    background: rgba(220, 53, 69, 0.9);
}

.after .label {
    background: rgba(40, 167, 69, 0.9);
}

/* Work Gallery specific styles */
.work .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work .gallery-item:hover img {
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

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

.feature i {
    color: #4a7c59;
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: #333;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #4a7c59;
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    line-height: 1.5;
}

.contact-item a {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}



/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #4a7c59;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: #2c5530;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4a7c59;
    flex-shrink: 0;
}

.footer-logo h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    text-align: left;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4a7c59;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        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;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    /* Improved Hero Section */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 0 80px;
        min-height: 80vh;
        background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    }

    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        opacity: 0.95;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 32px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .hero-video {
        object-position: center;
    }

    /* Improved Section Headers */
    .section-header {
        padding: 3rem 0 2rem;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
        color: #2c5530;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Improved Services Section */
    .services {
        padding: 4rem 0;
        background: #f8f9fa;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }

    .service-card {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: none;
        transition: all 0.3s ease;
        margin-bottom: 0;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .service-image {
        border-radius: 15px;
        overflow: hidden;
        margin-bottom: 1.5rem;
    }

    .service-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: -35px auto 1.5rem;
        position: relative;
        z-index: 2;
        box-shadow: 0 8px 20px rgba(74, 124, 89, 0.3);
    }

    .service-icon i {
        font-size: 1.8rem;
        color: white;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #2c5530;
        font-weight: 600;
        text-align: center;
    }

    .service-card p {
        font-size: 1rem;
        line-height: 1.6;
        color: #666;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .service-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .service-card li {
        padding: 0.5rem 0;
        color: #555;
        font-size: 0.95rem;
        position: relative;
        padding-left: 1.5rem;
    }

    .service-card li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #4a7c59;
        font-weight: bold;
        font-size: 1.1rem;
    }

    /* Improved About Section */
    .about {
        padding: 4rem 0;
        background: white;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 20px;
    }

    .about-text h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: #2c5530;
        font-weight: 700;
    }

    .about-text p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #666;
        margin-bottom: 2rem;
    }

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

    .feature {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 500;
    }

    .feature i {
        color: #4a7c59;
        font-size: 1.2rem;
    }

    .about-img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    /* Improved Contact Section */
    .contact {
        padding: 4rem 0;
        background: #f8f9fa;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 20px;
    }

    .contact-info {
        background: white;
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .contact-info h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        color: #2c5530;
        font-weight: 600;
        text-align: center;
    }

    .contact-item {
        text-align: center;
        margin-bottom: 2rem;
        padding: 1.5rem;
        border-radius: 15px;
        background: #f8f9fa;
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        background: #e9ecef;
        transform: translateY(-2px);
    }

    .contact-item i {
        font-size: 2rem;
        color: #4a7c59;
        margin-bottom: 1rem;
        display: block;
    }

    .contact-item h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: #2c5530;
        font-weight: 600;
    }

    .contact-item p {
        font-size: 1rem;
        color: #666;
        margin: 0;
    }

    .contact-item a {
        color: #4a7c59;
        text-decoration: none;
        font-weight: 500;
    }



    /* Improved Gallery Sections */
    .before-after-section,
    .work {
        padding: 4rem 0;
        background: white;
    }

    .gallery-filters {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 2rem;
        padding: 0 20px;
    }

    .filter-btn {
        padding: 12px 24px;
        font-size: 1rem;
        min-width: 140px;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 2px solid #e9ecef;
        background: white;
        color: #666;
    }

    .filter-btn.active,
    .filter-btn:hover {
        background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
        color: white;
        border-color: #4a7c59;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(74, 124, 89, 0.3);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }

    .gallery-item {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .gallery-item h3 {
        font-size: 1.3rem;
        padding: 1.5rem;
        margin: 0;
        color: #2c5530;
        font-weight: 600;
        text-align: center;
        background: white;
    }

    .before-after {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .before img,
    .after img {
        height: 250px;
        object-fit: cover;
        border-radius: 15px;
    }

    .label {
        font-size: 0.9rem;
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: 600;
    }

    .before .label {
        background: #dc3545;
        color: white;
    }

    .after .label {
        background: #28a745;
        color: white;
    }

    /* Improved FAQ Section */
    .faq {
        padding: 4rem 0;
        background: #f8f9fa;
    }

    .faq-list {
        padding: 0 20px;
    }

    .faq-item {
        background: white;
        border-radius: 15px;
        margin-bottom: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .faq-question {
        padding: 1.5rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        min-height: 60px;
    }

    .faq-question:hover {
        background: #f8f9fa;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        margin: 0;
        color: #2c5530;
        font-weight: 600;
        padding-right: 2rem;
    }

    .faq-question i {
        color: #4a7c59;
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #f8f9fa;
    }

    .faq-item.active .faq-answer {
        max-height: 200px;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
        margin: 0;
        font-size: 1rem;
        line-height: 1.6;
        color: #666;
    }

    /* Improved Footer */
    .footer {
        background: #2c5530;
        color: white;
        padding: 3rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 20px;
    }

    .footer-logo {
        justify-content: center;
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-logo h3 {
        font-size: 1.3rem;
        margin: 0;
        color: white;
        text-align: center;
        line-height: 1.3;
    }

    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #4a7c59;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 1rem;
        color: #ccc;
        line-height: 1.6;
    }

    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background: #4a7c59;
        transform: translateY(-3px);
    }

    .view-more-container {
        text-align: center;
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .view-more-container .btn {
        padding: 16px 40px;
        font-size: 1.1rem;
        border-radius: 50px;
        box-shadow: 0 8px 25px rgba(74, 124, 89, 0.3);
    }
}

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

    .nav-container {
        padding: 0 15px;
    }

    /* Enhanced Hero Section for Small Screens */
    .hero {
        padding: 100px 0 60px;
        min-height: 70vh;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
    }

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

    .hero-buttons {
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
        padding: 14px 28px;
        font-size: 1rem;
        font-weight: 600;
    }

    /* Enhanced Section Headers */
    .section-header {
        padding: 2.5rem 0 1.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Enhanced Services Section */
    .services {
        padding: 3rem 0;
    }

    .services-grid {
        gap: 1.5rem;
        padding: 0 15px;
    }

    .service-card {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .service-image {
        margin-bottom: 1.2rem;
    }

    .service-image img {
        height: 180px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin: -30px auto 1.2rem;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .service-card li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
        padding-left: 1.3rem;
    }

    /* Enhanced About Section */
    .about {
        padding: 3rem 0;
    }

    .about-content {
        gap: 2rem;
        padding: 0 15px;
    }

    .about-text h2 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .about-features {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .feature {
        padding: 0.8rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .feature i {
        font-size: 1.1rem;
    }

    /* Enhanced Contact Section */
    .contact {
        padding: 3rem 0;
    }

    .contact-content {
        gap: 2rem;
        padding: 0 15px;
    }

    .contact-info {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .contact-info h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }

    .contact-item i {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .contact-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .contact-item p {
        font-size: 0.95rem;
    }



    /* Enhanced Gallery Sections */
    .before-after-section,
    .work {
        padding: 3rem 0;
    }

    .gallery-filters {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 120px;
        border-radius: 20px;
    }

    .gallery-grid {
        gap: 1.5rem;
        padding: 0 15px;
    }

    .gallery-item {
        border-radius: 18px;
    }

    .gallery-item h3 {
        font-size: 1.2rem;
        padding: 1.2rem;
    }

    .before img,
    .after img {
        height: 200px;
        border-radius: 12px;
    }

    .label {
        font-size: 0.8rem;
        padding: 6px 12px;
        border-radius: 15px;
    }

    /* Enhanced FAQ Section */
    .faq {
        padding: 3rem 0;
    }

    .faq-list {
        padding: 0 15px;
    }

    .faq-item {
        border-radius: 12px;
        margin-bottom: 0.8rem;
    }

    .faq-question {
        padding: 1.2rem;
        min-height: 55px;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1.5rem;
    }

    .faq-question i {
        font-size: 1.1rem;
    }

    .faq-answer p {
        padding: 0 1.2rem 1.2rem;
        font-size: 0.95rem;
    }

    /* Enhanced Footer */
    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
        padding: 0 15px;
    }

    .footer-logo {
        justify-content: center;
        text-align: center;
    }

    .footer-logo h3 {
        font-size: 1.2rem;
        margin: 0;
        text-align: center;
        line-height: 1.3;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 0.95rem;
    }

    .social-links {
        margin-top: 1.2rem;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .view-more-container {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }

    .view-more-container .btn {
        padding: 14px 35px;
        font-size: 1rem;
        border-radius: 25px;
    }
}

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

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

    .gallery-item h3 {
        font-size: 0.95rem;
    }



    .about-text h2 {
        font-size: 1.6rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-link {
        padding: 10px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .filter-btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    .btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    .faq-question {
        min-height: 44px;
        touch-action: manipulation;
    }

    .gallery-item {
        touch-action: manipulation;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 60vh;
        padding: 80px 0 40px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-menu {
        max-height: calc(100vh - 60px);
        top: 60px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.service-card,
.about-content,
.contact-content,
.gallery-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Success Message Styles */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid #f5c6cb;
}

/* Gallery Filter Animation */
.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    display: none !important;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.view-more-container .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    color: white;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.view-more-container .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 124, 89, 0.4);
} 

/* Additional Mobile Improvements */
@media (max-width: 768px) {
    /* Improve mobile navigation */
    .nav-menu .nav-item {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        padding: 15px 20px;
        display: block;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    

    
    /* Improve mobile gallery experience */
    .gallery-item {
        margin-bottom: 1.5rem;
    }
    
    .gallery-item img {
        border-radius: 8px;
    }
    
    /* Better mobile button spacing */
    .hero-buttons .btn {
        margin-bottom: 0.5rem;
    }
    
    /* Improve mobile service cards */
    .service-card {
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    /* Better mobile contact info */
    .contact-item {
        padding: 1rem;
        border-radius: 8px;
        background: #f8f9fa;
        margin-bottom: 1rem;
    }
    
    /* Improve mobile FAQ */
    .faq-question {
        padding: 1rem;
        border-radius: 8px;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Stack buttons vertically on very small screens */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin-bottom: 0.75rem;
    }
    
    /* Improve mobile gallery filters */
    .gallery-filters {
        margin-bottom: 1.5rem;
    }
    
    .filter-btn {
        margin-bottom: 0.5rem;
        border-radius: 25px;
    }
    
    /* Better mobile image display */
    .before img,
    .after img {
        border-radius: 8px;
    }
    
    /* Improve mobile service icons */
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Better mobile footer */
    .footer-content {
        padding: 2rem 0;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Enhanced touch interactions for mobile */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .nav-link,
    .filter-btn,
    .btn,
    .faq-question {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better touch feedback */
    .nav-link:active,
    .filter-btn:active,
    .btn:active,
    .faq-question:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Improve mobile scrolling */
    .gallery-grid,
    .services-grid {
        -webkit-overflow-scrolling: touch;
    }
    

}

/* Landscape mobile optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 50vh;
        padding: 60px 0 30px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        margin-bottom: 0;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .nav-menu {
        max-height: 60vh;
        overflow-y: auto;
    }
} 