/* apartment-construction.css - Final Meticulous Design */

:root {
    --font-primary: 'Roboto', sans-serif;
    --color-text: #4a4a4a;
    --color-heading: #2c3e50;
    --color-primary: #003366;
    --color-cta-primary: #d35400;
    --color-cta-secondary: #fff;
    --color-background-light: #f8f9fa;
    --color-shadow: rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: #fff;
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-page {
    padding-top: 40px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-primary);
}


/* HERO GALLERY */
.hero-gallery {
    padding-bottom: 40px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}

.hero-large {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 600px;
}

.hero-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-stack {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
}

.stack-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* VIDEO HIGHLIGHT */
.video-highlight {
    background-color: var(--color-background-light);
    padding: 60px 0;
}
.video-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
}
.video-left {
    flex: 1;
}
.video-left h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.video-left h2::after {
    left: 0;
    transform: none;
}
.video-left .lead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}
.key-points {
    list-style: none;
    padding: 0;
}
.key-points li {
    font-size: 1rem;
    margin-bottom: 10px;
}
.key-points li::before {
    content: "✓";
    color: var(--color-cta-primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.video-right {
    flex: 1;
}
.video-placeholder {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    transition: background-color 0.3s;
}
.play-btn:hover {
    background-color: rgba(211, 84, 0, 0.9);
}


/* GALLERY SECTION */
.gallery-section {
    padding: 60px 0;
}
.gallery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 10px var(--color-shadow);
    height: 250px;
    transition: transform 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-5px);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: #fff;
    padding: 25px 15px 15px;
    font-weight: 500;
}

/* CONTENT SECTION */
.content-section {
    background-color: var(--color-background-light);
    padding: 60px 0;
}
.content-section p {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
.two-col .col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--color-heading);
    margin-bottom: 15px;
    text-align: center;
}
.two-col .col ul {
    list-style: none;
    padding: 0;
}
.two-col .col ul li::before {
    content: "•";
    color: var(--color-primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* PROCESS SECTION */
.process-section {
    padding: 60px 0;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.process-item {
    text-align: center;
}
.process-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto 15px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
}
.process-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--color-heading);
    margin-bottom: 10px;
}

/* FAQ SECTION */
.faq-section {
    background-color: var(--color-background-light);
    padding: 60px 0;
}
.faq-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.faq-item {
    padding: 20px;
    background-color: #fff;
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 2px 10px var(--color-shadow);
}
.faq-item h4 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* CTA SECTION */
.cta-section {
    padding: 60px 0;
    text-align: center;
}
.cta-card {
    background-color: var(--color-primary);
    color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
}
.cta-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}
.cta-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--color-cta-primary);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}
.btn-primary:hover {
    background-color: #e67e22;
}

/* REVIEWS SECTION */
.reviews-section {
    padding: 60px 0;
    background-color: var(--color-background-light);
}
.reviews-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 10px var(--color-shadow);
    height: 250px;
}
.review-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    font-weight: 500;
    text-align: center;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-grid, .video-wrap, .two-col, .process-grid, .faq-list, .reviews-row {
        grid-template-columns: 1fr;
    }
    .hero-large {
        height: 400px;
    }
    .video-wrap {
        flex-direction: column;
    }
    .video-left h2, .video-left .lead {
        text-align: center;
    }
    .key-points {
        margin: 0 auto 20px;
        max-width: 400px;
    }
    .gallery-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-list, .reviews-row {
        gap: 20px;
    }
    .two-col .col {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .page-title, h2 {
        font-size: 1.8rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-large {
        height: 250px;
    }
    .hero-stack {
        grid-template-columns: 1fr;
    }
    .gallery-row {
        grid-template-columns: 1fr;
    }
    .cta-card h3 {
        font-size: 1.5rem;
    }
}