/* ========================================
   PROJECT DETAIL
======================================== */

.project-detail {
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 25px 80px;
}


/* ========================================
   HEADER
======================================== */

.project-detail-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.project-detail-header h1 {
    margin: 12px 0 18px;

    color: #102A43;

    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;
}

.project-detail-header p {
    margin: 0;

    color: #627D98;

    font-size: 17px;
    line-height: 1.7;
}


/* ========================================
   MAIN
======================================== */

.project-detail-main {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    gap: 55px;

    align-items: center;

    margin-bottom: 90px;
}


/* IMAGE */

.project-detail-image {
    overflow: hidden;

    border-radius: 16px;

    background: #F4F8FB;

    box-shadow:
        0 12px 35px rgba(16, 42, 67, 0.10);
}

.project-detail-image img {
    display: block;

    width: 100%;
    height: 470px;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.project-detail-image:hover img {
    transform: scale(1.03);
}


/* CONTENT */

.project-detail-content {
    padding: 10px 0;
}

.project-detail-label {
    display: block;

    margin-bottom: 12px;

    color: #3FA9F5;

    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.project-detail-content h2 {
    margin: 0 0 20px;

    color: #102A43;

    font-family: 'Manrope', sans-serif;
    font-size: 30px;
    line-height: 1.3;
}

.project-detail-content p {
    margin: 0;

    color: #486581;

    font-size: 16px;
    line-height: 1.8;
}


/* ========================================
   PROCESS
======================================== */

.project-process {
    margin-bottom: 80px;
}

.project-process-heading {
    max-width: 720px;

    margin-bottom: 35px;
}

.project-process-heading h2 {
    margin: 12px 0 0;

    color: #102A43;

    font-family: 'Manrope', sans-serif;
    font-size: 30px;
    line-height: 1.3;
}


/* GRID */

.project-process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* CARD */

.process-card {
    padding: 28px 24px;

    background: #FFFFFF;

    border: 1px solid #E6EDF3;

    border-radius: 14px;

    box-shadow:
        0 4px 18px rgba(16, 42, 67, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.process-card:hover {
    transform: translateY(-5px);

    border-color: #B8DDF5;

    box-shadow:
        0 10px 30px rgba(16, 42, 67, 0.10);
}


.process-number {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 22px;

    background: #102A43;

    border-radius: 8px;

    color: #FFFFFF;

    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
}


.process-card h3 {
    margin: 0 0 12px;

    color: #102A43;

    font-family: 'Manrope', sans-serif;
    font-size: 18px;
}

.process-card p {
    margin: 0;

    color: #627D98;

    font-size: 14px;
    line-height: 1.65;
}


/* ========================================
   CTA
======================================== */

.project-detail-cta {
    padding: 55px 40px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #F4F8FB 0%,
            #FFFFFF 100%
        );

    border: 1px solid #E6EDF3;

    border-radius: 16px;
}

.project-detail-cta h2 {
    max-width: 700px;

    margin: 12px auto 15px;

    color: #102A43;

    font-family: 'Manrope', sans-serif;
    font-size: 30px;
    line-height: 1.3;
}

.project-detail-cta p {
    max-width: 650px;

    margin: 0 auto 28px;

    color: #627D98;

    font-size: 16px;
    line-height: 1.7;
}


/* BUTTONS */

.project-detail-buttons {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}

.project-detail-button {
    display: inline-flex;

    align-items: center;
    gap: 12px;

    padding: 13px 22px;

    background: #102A43;

    border-radius: 8px;

    color: #FFFFFF;

    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.project-detail-button:hover {
    background: #173F5F;

    transform: translateY(-2px);
}

.project-detail-button span {
    font-size: 18px;
}


.project-detail-back {
    color: #486581;

    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.2s ease;
}

.project-detail-back:hover {
    color: #3FA9F5;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .project-detail-main {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .project-detail-image img {
        height: 420px;
    }

    .project-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .project-detail {
        padding: 40px 18px 60px;
    }

    .project-detail-header {
        margin-bottom: 40px;
    }

    .project-detail-header h1 {
        font-size: 32px;
    }

    .project-detail-header p {
        font-size: 15px;
    }

    .project-detail-image img {
        height: 300px;
    }

    .project-detail-content h2 {
        font-size: 25px;
    }

    .project-process-grid {
        grid-template-columns: 1fr;
    }

    .project-process-heading h2 {
        font-size: 25px;
    }

    .project-detail-cta {
        padding: 40px 22px;
    }

    .project-detail-cta h2 {
        font-size: 25px;
    }

}