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

.hero-section {
    background: #F2F1EE !important;
    padding: 60px 0
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #2c3e50
}

.hero-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8
}

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

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #eee
}

.detail-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0
}

.detail-content {
    display: flex;
    flex-direction: column
}

.detail-label {
    font-size: .9rem;
    color: #888;
    margin-bottom: 2px
}

.detail-value {
    font-weight: 600;
    color: #333
}

.hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1)
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block
}

.section {
    padding: 80px 0;
    background: white;
}

.section-eyebrow {
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #7d8a98;
    border-left: 3px solid #9aa6b2;
    padding-left: 10px;
    margin-bottom: 14px
}

.section-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #2c3e50
}

.overview-content {
    display: block;
}

.overview-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px
}


/* Project Details Section */
.details-section {
    background: white;
    padding: 80px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.detail-category h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.detail-category ul {
    list-style: none;
}

.detail-category li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.detail-category li:last-child {
    border-bottom: none;
}

/* Testimonial Section */
.testimonial-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    border: 1px solid #eef2f6;
}

.testimonial-logo {
    margin-bottom: 18px;
}

.testimonial-quote p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-author {
    color: #2c3e50;
    font-weight: 600;
    margin-top: 10px;
}

.testimonial-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
}

.testimonial-footer .rule {
    flex: 1;
    height: 2px;
    background: #d7dee4;
}

.testimonial-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonial-image img {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-section {
    background: #1A3D50;
    padding: 80px 0;
    color: #f2f1ee
}

.gallery-section .section-title {
    color: #f2f1ee
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease
}

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

.gallery-item img {
    width: 100%;
    height: 300px !important;
    object-fit: cover;
    display: block
}

.lightbox {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox[style*="display: flex"] {
    display: flex !important;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-image-container {
	min-width: 300px;
    min-height: 300px;
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

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

.lightbox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #fff;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #fff;
    color: #fff;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10001;
}

.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.2rem;
    z-index: 10001;
}

.lightbox-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.similar-section {
    padding: 80px 0
}

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

.similar-item img {
    width: 100%;
    min-height: 300px;
    object-fit: cover
}

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

.similar-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50
}

.badge {
    display: inline-block;
    color: #4b5a67;
    border-radius: 22px;
    padding: 8px 14px;
    font-size: .85rem;
    border: 1px solid rgba(0, 0, 0, .2)
}

.similar-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    backdrop-filter: blur(2px);
}

@media(max-width:768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px
    }

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

    .overview-content {
        display: block;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px
    }

    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .testimonial-image {
        order: -1
    }

    .similar-grid {
        grid-template-columns: 1fr !important;
        gap: 20px
    }

    .hero-text h1 {
        font-size: 2rem
    }

    .section-title {
        font-size: 1.7rem
    }

    /* Lightbox mobile styles */
    .lightbox-content {
        max-width: 98vw;
        max-height: 98vh;
        padding: 10px;
    }

    .lightbox img {
        max-height: 90vh;
        border-radius: 8px;
    }

    .lightbox-close {
        top: 0px;
        right: 2px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-counter {
        bottom: -30px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

.elementor-9 .elementor-element.elementor-element-bfe43f0 .elementor-icon-list-items.elementor-inline-items {
    display : flex;
}

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

    .hero-section,
    .section,
    .details-section,
    .gallery-section,
    .similar-section {
        padding: 40px 0
    }

    .hero-text h1 {
        font-size: 1.8rem
    }

    .section-title {
        font-size: 1.5rem
    }
}