/* =========================================
   CONSTRUCTION MANAGEMENT PAGE
========================================= */


/* =========================================
   HERO SECTION
========================================= */

.construction-hero {
    width: 100%;
    min-height: 520px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    background: #eef8fc;
}

.construction-hero-content {
    padding: 70px 8%;
}

.construction-hero-content h2 {
    color: #15577d;

    font-size: 42px;
    line-height: 1.2;

    margin-bottom: 22px;
}

.construction-hero-content p {
    max-width: 570px;

    color: #444;

    font-size: 17px;
    line-height: 1.7;

    margin-bottom: 30px;
}

.construction-hero-image {
    width: 100%;
    height: 100%;
}

.construction-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;

    display: block;

    object-fit: cover;
}


/* =========================================
   BUTTON
========================================= */

.construction-btn {
    display: inline-block;

    padding: 13px 30px;

    background: #15577d;
    color: #fff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: background 0.3s ease;
}

.construction-btn:hover {
    background: #0d405d;
}


/* =========================================
   SECTION HEADING
========================================= */

.construction-section-heading {
    max-width: 850px;

    margin: 0 auto 45px;

    text-align: center;
}

.construction-section-heading h2 {
    color: #15577d;

    font-size: 34px;
    line-height: 1.3;

    margin: 0;
}


/* =========================================
   FEATURES SECTION
========================================= */

.construction-features {
    padding: 80px 6%;

    background: #fff;
}

.construction-feature-grid {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px;
}


/* =========================================
   FEATURE CARD
========================================= */

.construction-feature-card {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    cursor: pointer;

    background: #302f2f;
}


/* Feature Image */

.construction-feature-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.45s ease;
}


/* Image Zoom */

.construction-feature-card:hover img {
    transform: scale(1.05);
}


/* =========================================
   BOTTOM → TOP HOVER OVERLAY
========================================= */

.construction-feature-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    padding: 30px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background: rgba(48, 47, 47, 0.68);

    transform: translateY(100%);

    transition: transform 0.45s ease;
}


/* Hover */

.construction-feature-card:hover .construction-feature-overlay {
    transform: translateY(0);
}


/* Feature Icon */

.construction-feature-overlay i {
    color: #fff;

    font-size: 30px;

    margin-bottom: 16px;
}


/* Feature Title */

.construction-feature-overlay h3 {
    color: #fff;

    font-size: 21px;
    line-height: 1.3;

    margin: 0 0 14px;
}


/* Feature Description */

.construction-feature-overlay p {
    color: #fff;

    font-size: 14px;
    line-height: 1.6;

    margin: 0;
}


/* =========================================
   BENEFITS SECTION
========================================= */

.construction-benefits {
    padding: 80px 6%;

    background: #eef8fc;
}

.construction-benefit-grid {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}


/* Benefit Card */

.construction-benefit-card {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 30px;

    background: #fff;

    border: 1px solid #dcecf3;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.construction-benefit-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);
}


/* Benefit Icon */

.construction-benefit-icon {
    min-width: 58px;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #15577d;

    color: #fff;

    font-size: 22px;
}


/* Benefit Title */

.construction-benefit-content h3 {
    color: #15577d;

    font-size: 19px;

    margin: 0 0 10px;
}


/* Benefit Description */

.construction-benefit-content p {
    color: #555;

    font-size: 14px;
    line-height: 1.6;

    margin: 0;
}


/* =========================================
   CONTACT SECTION
========================================= */

.construction-contact {
    padding: 80px 6%;

    background: #15577d;

    text-align: center;
}

.construction-contact-content {
    max-width: 850px;

    margin: 0 auto;
}

.construction-contact h2 {
    color: #fff;

    font-size: 34px;

    margin-bottom: 20px;
}

.construction-contact p {
    color: #fff;

    font-size: 16px;
    line-height: 1.7;

    margin-bottom: 30px;
}

.construction-contact .construction-btn {
    background: #fff;

    color: #15577d;
}

.construction-contact .construction-btn:hover {
    background: #eaf5f9;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 750px) {

    .construction-hero {
        grid-template-columns: 1fr;
    }

    .construction-hero-content {
        padding: 55px 7%;
    }

    .construction-hero-content h2 {
        font-size: 35px;
    }

    .construction-hero-image img {
        min-height: auto;
        height: auto;
    }

    .construction-feature-grid {
        grid-template-columns: 1fr;
    }

    .construction-benefit-grid {
        grid-template-columns: 1fr;
    }

    .construction-features,
    .construction-benefits,
    .construction-contact {
        padding: 60px 6%;
    }
}


@media (max-width: 480px) {

    .construction-feature-card {
        aspect-ratio: 16 / 10;
    }

    .construction-feature-overlay {
        padding: 22px;
    }

    .construction-feature-overlay i {
        font-size: 25px;

        margin-bottom: 10px;
    }

    .construction-feature-overlay h3 {
        font-size: 19px;

        margin-bottom: 10px;
    }

    .construction-feature-overlay p {
        font-size: 13px;

        line-height: 1.5;
    }

    .construction-benefit-card {
        padding: 24px;
    }
}