﻿/* Service Detail Styles */



.service-detail-intro {

    padding: 120px 0 60px;

}



.service-module-section {

    padding: 100px 0;

}



.service-module-section.light-gray {

    background-color: #f9f9f9;

}



/* Page Header & Intro */



/* Service Header */

.service-detail-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}



.service-detail-title {

    font-family: var(--font-main);

    font-weight: 900;

    font-size: 56px;

    color: var(--primary-blue);

    margin-bottom: 20px;

    line-height: 1.1;

    letter-spacing: -1px;

}



.service-detail-subtitle {

    font-family: var(--font-main);

    font-style: italic;

    font-size: 20px;

    color: #444;

    margin-bottom: 40px;

}



.service-detail-desc {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray-dark);
    text-align: justify;
}



/* Service Modules */

/* Module styling */

.module-number-title {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 38px;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: left;
}



.module-intro {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 0 60px 0;
    text-align: justify;
}



/* Module Grid */

.module-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    margin-bottom: 60px;

}



.col-letter-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 20px;
    color: var(--text-black);
    margin-bottom: 25px;
    text-align: left;
}

.module-col p {
    text-align: justify;
}



.module-list {

    list-style: none;

    padding: 0;

}



.module-list li {

    font-family: var(--font-main);

    font-size: 14px;

    line-height: 1.6;

    color: #444;

    margin-bottom: 15px;

    position: relative;

    padding-left: 20px;

}



.module-list li::before {

    content: "•";

    position: absolute;

    left: 0;

    color: var(--primary-blue);

    font-weight: bold;

}



.module-image-placeholder {

    width: 100%;

    aspect-ratio: 16 / 9;

    border-radius: 35px;

    margin-top: 40px;

    overflow: hidden;

}



.module-image-placeholder img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}



.blue-bg {

    background-color: var(--primary-blue);

}



/* Process Box */

.process-box {

    background-color: #f9f9f9;

    padding: 40px;

    border-radius: 20px;

}



.process-box p {
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    text-align: justify;
}



.process-steps {

    margin-top: 25px;

}



.process-steps p {

    margin-top: 20px;

    margin-bottom: 10px;

}



.process-steps ul {

    list-style: none;

    padding-left: 0;

}



.process-steps li {

    font-size: 13px;

    color: #666;

    margin-bottom: 8px;

    padding-left: 15px;

    position: relative;

}



.process-steps li::before {

    content: "-";

    position: absolute;

    left: 0;

}



/* Deliverable Section */

.deliverable-section {

    margin-top: 80px;

}



.deliverable-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: start;

}



.deliverable-text p {
    text-align: justify;
}

.deliverable-text .quote {
    font-family: var(--font-main);
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    color: var(--text-black);
    margin-top: 30px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-blue);
    text-align: left;
}



.large-placeholder {

    aspect-ratio: 4 / 3;

    margin-top: 0;

}



/* Responsive */

@media (max-width: 1024px) {

    .service-detail-title {

        font-size: 44px;

    }



    .module-grid,

    .deliverable-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

}



@media (max-width: 768px) {
    .service-detail-section {
        padding: 80px 0 60px;
    }

    .service-detail-header {
        text-align: center;
        margin: 0 auto 60px;
    }

    .service-detail-title {
        font-size: 32px;
    }

    .service-detail-desc {
        text-align: center;
    }

    .module-intro {
        text-align: center;
        margin: 0 auto 40px;
    }

    .module-number-title {
        font-size: 24px;
        padding: 20px;
        text-align: center;
    }

    .col-letter-title {
        text-align: center;
    }

    .process-box {
        padding: 25px;
    }
}