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

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

:root {
    --primary-brown: #6B4423;
    --secondary-brown: #8B6F47;
    --beige: #D4C5B9;
    --light-beige: #F5F1ED;
    --olive-green: #6B7C59;
    --dark-olive: #4A5D3F;
    --white: #FFFFFF;
    --text-dark: #2C2416;
    --text-light: #5C5347;
}

body {
    font-family: 'Heebo', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #E8DDD0;
    background-image: 
        repeating-linear-gradient(90deg, rgba(139, 111, 71, 0.03) 0px, rgba(139, 111, 71, 0.03) 1px, transparent 1px, transparent 50px),
        repeating-linear-gradient(0deg, rgba(139, 111, 71, 0.03) 0px, rgba(139, 111, 71, 0.03) 1px, transparent 1px, transparent 50px);
}

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

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-brown);
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 42px;
}

.nav {
    display: flex;
    gap: 30px;
}

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

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

.btn {
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: var(--dark-olive);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 124, 89, 0.3);
}

.btn-mobile-call {
    display: none;
    background-color: var(--olive-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-mobile-call:hover {
    background-color: var(--dark-olive);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-brown);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    z-index: 999;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    padding: 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--beige);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 36, 22, 0.6), rgba(44, 36, 22, 0.6)), 
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&h=800&fit=crop') center/cover;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    transition: background-image 0.5s ease-in-out;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 68, 35, 0.3), rgba(107, 124, 89, 0.3));
    pointer-events: none;
}

.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-nav-btn {
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-nav-btn:hover {
    background-color: var(--olive-green);
    transform: scale(1.1);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    background-color: var(--olive-green);
    color: var(--white);
    font-size: 18px;
    padding: 18px 45px;
    box-shadow: 0 8px 25px rgba(107, 124, 89, 0.4);
    border: 2px solid transparent;
}

.btn-hero:hover {
    background-color: var(--white);
    color: var(--olive-green);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-beige) 0%, var(--white) 100%);
    border-top: 8px solid var(--olive-green);
    border-bottom: 8px solid var(--olive-green);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-brown);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--olive-green), var(--primary-brown));
    border-radius: 2px;
}

.about-text {
    font-size: 19px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: justify;
    margin-top: 50px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(107, 124, 89, 0.15);
    border-color: var(--olive-green);
}

.feature-icon {
    font-size: 24px;
    color: var(--white);
    background-color: var(--olive-green);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
    text-align: right;
}

/* About Rating */
.about-rating {
    margin-top: 30px;
    padding: 15px 25px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    border: 2px solid var(--beige);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-beige) 100%);
    border-bottom: 8px solid var(--primary-brown);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background-size: cover;
    background-position: center;
    padding: 0;
    border-radius: 20px;
    transition: all 0.4s;
    border: 8px solid var(--olive-green);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.service-card::before {
    display: none;
}

.service-content {
    padding: 40px;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--white);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(107, 124, 89, 0.4);
    border-color: var(--primary-brown);
}

.service-icon {
    display: none;
}

.service-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.service-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--white);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: var(--light-beige);
    border-bottom: 8px solid var(--olive-green);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(transparent, rgba(44, 36, 22, 0.95));
    padding: 25px;
    color: var(--white);
    font-size: 19px;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.4s;
}

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

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
    border-bottom: 8px solid var(--primary-brown);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background-color: var(--light-beige);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stars {
    font-size: 20px;
    margin-bottom: 20px;
    color: #FFB800;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--primary-brown);
    font-size: 18px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: var(--white);
}

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

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    font-size: 18px;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

.btn-call {
    background-color: var(--white);
    color: var(--primary-brown);
    font-size: 18px;
    padding: 18px 40px;
}

.btn-call:hover {
    background-color: var(--light-beige);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-cta {
    background-color: var(--white);
    color: var(--primary-brown);
    font-size: 18px;
    padding: 16px 45px;
}

.btn-cta:hover {
    background-color: var(--light-beige);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light-beige);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 28px;
    color: var(--primary-brown);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background-color: var(--white);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s;
}

.contact-method:hover {
    background-color: var(--olive-green);
    color: var(--white);
    transform: translateX(-5px);
}

.contact-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--beige);
    border-radius: 8px;
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--olive-green);
}

.btn-submit {
    width: 100%;
    background-color: var(--olive-green);
    color: var(--white);
    padding: 15px;
    font-size: 18px;
}

.btn-submit:hover {
    background-color: var(--dark-olive);
}

/* Footer */
.footer {
    background-color: var(--primary-brown);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
}

/* About Page Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 22px;
    opacity: 0.95;
}

.about-story {
    padding: 80px 0;
    background-color: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.story-content h2 {
    font-size: 38px;
    color: var(--primary-brown);
    margin-bottom: 25px;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

.values {
    padding: 80px 0;
    background-color: var(--light-beige);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary-brown);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.experience {
    padding: 80px 0;
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--olive-green), var(--dark-olive));
    border-radius: 15px;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(107, 124, 89, 0.3);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
}

.about-gallery {
    padding: 80px 0;
    background-color: var(--light-beige);
}

/* Floating Contact Button */
.floating-btn {
    position: fixed;
    left: 30px;
    bottom: 30px;
    background: linear-gradient(135deg, var(--olive-green), var(--dark-olive));
    color: var(--white);
    padding: 18px 25px;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(107, 124, 89, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 16px;
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
    cursor: pointer;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 35px rgba(107, 124, 89, 0.5);
}

.floating-icon {
    font-size: 24px;
    animation: ring 1.5s infinite;
}

.floating-text {
    white-space: nowrap;
}

/* Floating Contact Menu */
.floating-contact-menu {
    position: fixed;
    left: 30px;
    bottom: 100px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 10px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
}

.floating-contact-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.floating-menu-item:hover {
    background-color: var(--olive-green);
    color: var(--white);
    transform: translateX(-5px);
}

.menu-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon svg {
    width: 24px;
    height: 24px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(107, 124, 89, 0.4);
    }
    50% {
        box-shadow: 0 6px 35px rgba(107, 124, 89, 0.6);
    }
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav {
        display: none;
    }

    .btn-primary {
        display: none;
    }
    
    .btn-mobile-call {
        display: inline-block;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .about-image-wrapper {
        order: -1;
    }

    .about-main-image {
        height: 300px;
    }

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

    .feature {
        padding: 15px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .feature-text {
        font-size: 15px;
    }
    
    .about-rating {
        margin-top: 25px;
        padding: 12px 20px;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

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

    .service-card {
        min-height: 350px;
    }

    .service-content {
        padding: 30px 25px;
    }

    .service-title {
        font-size: 26px;
    }

    .service-description {
        font-size: 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-item {
        aspect-ratio: 1;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-text {
        font-size: 16px;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    #projectsContainer {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .modal-large {
        width: 95%;
    }

    .project-detail-main-image {
        height: 250px;
    }

    .floating-btn {
        left: 15px;
        bottom: 15px;
        padding: 15px 20px;
        font-size: 14px;
    }

    .floating-text {
        display: none;
    }

    .floating-icon {
        font-size: 28px;
    }
    
    .floating-contact-menu {
        left: 15px;
        bottom: 85px;
    }
    
    .floating-menu-item {
        padding: 12px 18px;
        font-size: 14px;
    }

    .floating-rating {
        right: 15px;
        bottom: 15px;
        padding: 12px 15px;
    }

    .rating-stars {
        font-size: 16px;
    }

    .rating-text {
        font-size: 22px;
    }

    .rating-label {
        font-size: 9px;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-item {
        padding: 20px;
    }

    .why-icon {
        font-size: 40px;
    }

    .why-text h3 {
        font-size: 18px;
    }

    .why-text p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature {
        padding: 15px 10px;
    }

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

    .service-card {
        min-height: 300px;
    }

    .service-content {
        padding: 25px 20px;
    }

    .service-title {
        font-size: 24px;
    }

    .service-description {
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        aspect-ratio: 1;
        border-radius: 8px;
    }

    .contact-form {
        padding: 25px;
    }

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

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

/* Projects Showcase Page */
.projects-showcase {
    padding: 80px 0;
    background-color: var(--light-beige);
}

#projectsContainer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

.project-showcase-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.project-showcase-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.project-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.project-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(44, 36, 22, 0.9));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-showcase-card:hover .project-showcase-overlay {
    opacity: 1;
}

.view-project {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.project-showcase-content {
    padding: 25px;
}

.project-showcase-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.project-type {
    background-color: var(--olive-green);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.project-location {
    background-color: var(--beige);
    color: var(--text-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
}

.project-showcase-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 12px;
}

.project-showcase-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.modal-large {
    max-width: 900px;
}

.project-detail {
    padding: 0;
}

.project-detail-header {
    width: 100%;
}

.project-detail-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.project-detail-info {
    padding: 30px;
}

.project-detail-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.project-type-badge {
    background-color: var(--olive-green);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.project-location-badge,
.project-date-badge {
    background-color: var(--beige);
    color: var(--text-dark);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
}

.project-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 20px;
}

.project-detail-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.project-detail-gallery {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--beige);
}

.project-detail-gallery h3 {
    font-size: 24px;
    color: var(--primary-brown);
    margin-bottom: 20px;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.project-gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.project-gallery-image:hover {
    transform: scale(1.05);
}

/* Project Single Page */
.project-single {
    padding: 80px 0;
    background-color: var(--light-beige);
    min-height: 60vh;
}

.back-link {
    display: inline-block;
    color: var(--olive-green);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--dark-olive);
}

.project-single-header {
    width: 100%;
    margin-bottom: 40px;
}

.project-single-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.project-single-info {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.project-single-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.project-single-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 25px;
}

.project-single-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.project-single-gallery {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--beige);
}

.project-single-gallery h2 {
    font-size: 28px;
    color: var(--primary-brown);
    margin-bottom: 25px;
}

/* Service Detail Page */
.service-detail-hero {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
}

.service-detail-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.5);
}

.service-detail-subtitle {
    font-size: 22px;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.5);
}

.service-detail-content {
    padding: 80px 0;
    background-color: var(--white);
}

.service-detail-description p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-gallery {
    margin-top: 50px;
}

.service-gallery h3 {
    font-size: 32px;
    color: var(--primary-brown);
    margin-bottom: 30px;
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s;
    cursor: pointer;
}

.service-gallery-image:hover {
    transform: scale(1.05);
}

.service-projects {
    padding: 80px 0;
    background-color: var(--light-beige);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background-color: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

.why-choose-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-item {
    background-color: var(--light-beige);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.why-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 10px;
}

.why-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.why-choose-image {
    display: none;
}

/* Before After Section */
.before-after {
    padding: 100px 0;
    background-color: var(--light-beige);
    border-bottom: 8px solid var(--olive-green);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-top: 10px;
    margin-bottom: 50px;
}

.before-after-slider {
    max-width: 900px;
    margin: 0 auto;
}

.before-after-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.after-image {
    width: 100%;
    display: block;
}

.before-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: width 0.1s ease-out;
}

.before-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 900px;
    max-width: none;
    height: 100%;
    object-fit: cover;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
}

.slider-button {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border: 4px solid var(--olive-green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.1s ease-out;
}

.slider-button::before,
.slider-button::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
}

.slider-button::before {
    left: 12px;
    transform: translateY(-50%);
    border-width: 10px 15px 10px 0;
    border-color: transparent var(--olive-green) transparent transparent;
}

.slider-button::after {
    right: 12px;
    transform: translateY(-50%);
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent var(--olive-green);
}

.label-before,
.label-after {
    position: absolute;
    top: 20px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    z-index: 3;
}

.label-before {
    left: 20px;
}

.label-after {
    right: 20px;
}

/* Quick Lead Form */
.quick-lead-form {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(107, 68, 35, 0.3);
    position: relative;
    overflow: hidden;
}

.quick-lead-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.quick-lead-content {
    position: relative;
    z-index: 1;
}

.quick-lead-content h3 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 18px;
    font-weight: 800;
}

.quick-lead-content p {
    font-size: 19px;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0.95;
}

.quick-lead-input {
    display: flex;
    gap: 15px;
    max-width: 550px;
    margin: 0 auto;
    justify-content: center;
}

.quick-lead-input input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 12px;
    font-family: 'Heebo', sans-serif;
    font-size: 17px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.quick-lead-input input:focus {
    outline: 3px solid rgba(255,255,255,0.4);
}

.quick-lead-input .btn {
    padding: 18px 40px;
    background-color: var(--white);
    color: var(--primary-brown);
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.quick-lead-input .btn:hover {
    background-color: var(--olive-green);
    color: var(--white);
    transform: scale(1.05);
}

/* Floating Rating Badge */
.floating-rating {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 998;
    text-align: center;
    border: 2px solid #E8E8E8;
    transition: all 0.3s;
    animation: floatRating 3s ease-in-out infinite;
}

.floating-rating:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.rating-logo {
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
}

.rating-logo svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.rating-stars {
    font-size: 18px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.rating-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-brown);
    line-height: 1;
    margin-bottom: 3px;
}

.rating-label {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes floatRating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--olive-green);
}

.project-single-image,
.project-gallery-image {
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
}

.project-single-image:hover,
.project-gallery-image:hover {
    opacity: 0.9;
}
