/* =====================================================
   RRLEGAL INFRA
   PROPERTY & INFRASTRUCTURE DEVELOPMENT
===================================================== */


/* =====================================================
   HERO
===================================================== */

.infra-hero {
    position: relative;
    background:
        linear-gradient(
            rgba(11, 25, 44, 0.88),
            rgba(11, 25, 44, 0.88)
        ),
        url('../images/infrastructure.jpeg')
        center / cover no-repeat;

    color: #fff;
    padding: 90px 0 100px;
}


.infra-hero-content {
    max-width: 760px;
    text-align: left;
}


.infra-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c5a059;
    margin-bottom: 15px;
}


.infra-hero h2 {
    font-family: 'Georgia', serif;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}


.infra-hero h2 span {
    color: #c5a059;
}


.infra-hero p {
    max-width: 680px;
    font-size: 15px;
    line-height: 1.8;
    color: #d5d5d5;
    margin-bottom: 30px;
}



/* =====================================================
   BUTTONS
===================================================== */

.infra-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}


.infra-btn-primary,
.infra-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 12px 24px;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;

    border-radius: 2px;

    transition:
        background-color 0.3s,
        color 0.3s,
        transform 0.3s;
}


.infra-btn-primary {
    background-color: #c5a059;
    color: #0b192c;
}


.infra-btn-primary:hover {
    background-color: #d5b36c;
    transform: translateY(-2px);
}


.infra-btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}


.infra-btn-secondary:hover {
    background-color: #fff;
    color: #0b192c;
    transform: translateY(-2px);
}


.infra-btn-secondary.dark {
    border-color: #0b192c;
    color: #0b192c;
}


.infra-btn-secondary.dark:hover {
    background-color: #0b192c;
    color: #fff;
}



/* =====================================================
   INTRO / SERVICES
===================================================== */

.infra-intro {
    background-color: #f9f9f9;
    padding: 70px 0 80px;
}


.infra-section-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}


.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c5a059;
    text-transform: uppercase;
    margin-bottom: 8px;
}


.infra-section-heading h2 {
    font-family: 'Georgia', serif;
    font-size: 30px;
    line-height: 1.3;
    color: #0b192c;
    margin-bottom: 15px;
}


.gold-line {
    width: 55px;
    height: 2px;
    background-color: #c5a059;
    margin: 0 auto 20px;
}


.infra-section-heading p {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
}



/* =====================================================
   SERVICES GRID
===================================================== */

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


.infra-service-card {
    background-color: #fff;

    border: 1px solid #e8e8e8;
    border-radius: 3px;

    padding: 28px 24px;

    display: flex;
    align-items: flex-start;
    gap: 18px;

    min-height: 190px;

    transition:
        transform 0.3s,
        box-shadow 0.3s,
        border-color 0.3s;
}


.infra-service-card:hover {
    transform: translateY(-5px);

    border-color: rgba(197, 160, 89, 0.5);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.08);
}


.infra-service-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #0b192c;

    color: #c5a059;

    font-size: 19px;

    border-radius: 3px;
}


.infra-service-card span {
    display: block;

    font-size: 10px;
    font-weight: 700;

    color: #c5a059;

    letter-spacing: 1px;

    margin-bottom: 5px;
}


.infra-service-card h3 {
    color: #0b192c;

    font-size: 15px;
    line-height: 1.4;

    margin-bottom: 8px;

    font-weight: 700;
}


.infra-service-card p {
    color: #666;

    font-size: 11px;
    line-height: 1.6;

    margin: 0;
}



/* =====================================================
   DEVELOPMENT APPROACH
===================================================== */

.development-section {
    background-color: #fff;

    padding: 75px 0;

    border-top: 1px solid #eee;
}


.development-grid {
    display: grid;

    grid-template-columns: 110px 1fr;

    gap: 40px;

    align-items: start;

    max-width: 1000px;

    margin: 0 auto;
}


.development-icon {
    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #0b192c;

    color: #c5a059;

    font-size: 34px;

    border-radius: 3px;

    box-shadow:
        0 8px 20px rgba(11, 25, 44, 0.15);
}


.development-content .section-label {
    margin-bottom: 7px;
}


.development-content h2 {
    font-family: 'Georgia', serif;

    color: #0b192c;

    font-size: 28px;

    margin-bottom: 14px;
}


.development-content .gold-line {
    margin: 0 0 20px;
}


.development-content p {
    color: #555;

    font-size: 13px;

    line-height: 1.8;

    max-width: 800px;

    margin-bottom: 25px;
}



/* =====================================================
   DEVELOPMENT CHECKLIST
===================================================== */

.development-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px 25px;
}


.development-list div {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #444;

    font-size: 12px;

    font-weight: 600;
}


.development-list i {
    color: #c5a059;

    font-size: 13px;
}



/* =====================================================
   PROJECT TYPES
===================================================== */

.project-types {
    background-color: #f9f9f9;

    padding: 75px 0;
}


.project-types-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.project-type-card {
    background-color: #fff;

    border: 1px solid #e8e8e8;

    padding: 35px 25px;

    text-align: center;

    border-radius: 3px;

    transition:
        transform 0.3s,
        box-shadow 0.3s;
}


.project-type-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.07);
}


.project-type-card i {
    color: #c5a059;

    font-size: 30px;

    margin-bottom: 18px;
}


.project-type-card h3 {
    color: #0b192c;

    font-size: 15px;

    margin-bottom: 10px;
}


.project-type-card p {
    color: #666;

    font-size: 11px;

    line-height: 1.6;

    margin: 0;
}



/* =====================================================
   CONTACT SECTION
===================================================== */

.infra-contact {
    background-color: #fff;

    padding: 75px 0;
}


.infra-contact-content {
    max-width: 760px;

    margin: 0 auto;

    text-align: center;
}


.infra-contact .section-label {
    color: #c5a059;
}


.infra-contact h2 {
    font-family: 'Georgia', serif;

    color: #0b192c;

    font-size: 32px;

    line-height: 1.3;

    margin-bottom: 15px;
}


.infra-contact p {
    color: #666;

    font-size: 13px;

    line-height: 1.8;

    max-width: 700px;

    margin: 0 auto 28px;
}


.infra-contact .infra-buttons {
    justify-content: center;
}



/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .infra-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}



@media (max-width: 992px) {

    .infra-hero h2 {
        font-size: 38px;
    }

    .development-grid {
        grid-template-columns: 80px 1fr;

        gap: 30px;
    }

}



@media (max-width: 768px) {

    .infra-hero {
        padding: 70px 0 80px;
    }


    .infra-hero h2 {
        font-size: 34px;
    }


    .infra-hero p {
        font-size: 13px;
    }


    .infra-services-grid {
        grid-template-columns: 1fr;
    }


    .development-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }


    .development-icon {
        margin: 0 auto;
    }


    .development-content .gold-line {
        margin-left: auto;
        margin-right: auto;
    }


    .development-list {
        grid-template-columns: 1fr;

        text-align: left;
    }


    .project-types-grid {
        grid-template-columns: 1fr 1fr;
    }

}



@media (max-width: 600px) {

    .infra-hero h2 {
        font-size: 29px;
    }


    .infra-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .infra-btn-primary,
    .infra-btn-secondary {
        width: 100%;
    }


    .infra-section-heading h2 {
        font-size: 25px;
    }


    .project-types-grid {
        grid-template-columns: 1fr;
    }


    .infra-service-card {
        padding: 22px 18px;
    }


    .development-content h2 {
        font-size: 25px;
    }


    .infra-contact h2 {
        font-size: 26px;
    }

}