/* =========================================================
   Construction Page Styles
   ========================================================= */

/* --- Hero --- */
#construction-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0a0a;
}

#construction-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(20, 15, 0, 0.80) 60%,
        rgba(255, 215, 0, 0.10) 100%
    );
    z-index: 1;
    pointer-events: none;
}

#construction-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 1.5rem;
    max-width: 900px;
}

#construction-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.85);
}

#construction-hero .hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: rgba(255, 215, 0, 0.9);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

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

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color, #ffd700);
}

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

.section-header.light h2 { color: #fff; }
.section-header.light p  { color: rgba(255,255,255,0.75); }

/* --- Services Section --- */
#construction-services {
    padding: 5rem 0;
    background-color: var(--bg-color, #fff);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.14);
}

.service-card .service-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.service-card .service-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    font-size: 2.5rem;
    color: #ffd700;
}

.service-card .service-body {
    padding: 1.25rem 1.5rem 1.75rem;
    flex: 1;
}

.service-card .service-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.service-card .service-body p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* --- Why BDCA Section --- */
#construction-why {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.why-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    transition: background 0.25s;
}

.why-item:hover {
    background: rgba(255, 215, 0, 0.08);
}

.why-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    display: block;
}

.why-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.why-item p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
}

/* --- Projects Section --- */
#construction-projects {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}

.project-card .project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.project-card .project-body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: #ffd700;
    background: #1a1a1a;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.6rem;
}

.project-card .project-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: #1a1a1a;
}

.project-card .project-body p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
    flex: 1;
}

.project-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffd700;
    text-decoration: none;
    transition: color 0.2s;
}

.project-link:hover { color: #e6c200; }

/* --- CTA Section --- */
#construction-cta {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--bg-color, #fff);
}

#construction-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

#construction-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: #ffd700;
    color: #1a1a1a;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    font-size: 1rem;
}

.cta-button:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

.cta-outline {
    background: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
}

.cta-outline:hover {
    background: #1a1a1a;
    color: #ffd700;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    #construction-hero .hero-content h1 { font-size: 2.2rem; }
    #construction-hero .hero-content p  { font-size: 1.1rem; }
    .services-grid, .why-grid, .projects-grid {
        grid-template-columns: 1fr;
    }
    .section-header h2 { font-size: 1.7rem; }
}
