/* ===============================
   COMMERCIAL INTRO
================================ */

.commercial-intro {
    background: #ffffff;
    padding: 80px 20px;
}

.intro-container {
    max-width: 900px;
    margin: auto;
    position: relative;
}

/* Left orange accent */
.intro-container::before {
    content: "";
    position: absolute;
    left: -28px;
    top: 0;
    width: 4px;
    height: 100%;
    background: #d87a2c;
    border-radius: 3px;
}

.intro-highlight {
    font-size: 22px;
    font-weight: 500;
    color: #111;
    margin-bottom: 22px;
}

.commercial-intro p {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}

@media(max-width:768px) {
    .intro-container::before {
        display: none;
    }
}
/* ===============================
   WHAT MAKES US DIFFERENT
================================ */

.commercial-difference {
    background: linear-gradient(180deg, #fafafa, #ffffff);
    padding: 100px 20px;
}

.difference-container {
    max-width: 900px;
    margin: auto;
    position: relative;
}

/* Orange accent bar */
.difference-container::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 0;
    width: 5px;
    height: 100%;
    background: #d87a2c;
    border-radius: 4px;
}

/* Heading */
.commercial-difference h2 {
    font-size: 36px;
    font-weight: 600;
    color: #111;
    margin-bottom: 28px;
}

/* Lead paragraph */
.difference-lead {
    font-size: 20px;
    font-weight: 500;
    color: #222;
    margin-bottom: 22px;
}

/* Paragraphs */
.commercial-difference p {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}

.commercial-difference strong {
    color: #111;
}

/* Mobile */
@media(max-width:768px) {
    .difference-container::before {
        display: none;
    }

    .commercial-difference {
        padding: 70px 15px;
    }

    .commercial-difference h2 {
        font-size: 28px;
    }

    .commercial-difference p {
        font-size: 16.5px;
    }
}
/* ===============================
   SERVICES BLOCK SECTION
================================ */

.services-block {
    padding: 90px 0;
    background: #ffffff;
}

.services-block .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #d87a2c;
    display: block;
    margin: 12px auto 0;
}

.section-title p {
    font-size: 18px;
    color: #555;
    max-width: 780px;
    margin: auto;
    line-height: 1.7;
}

/* SERVICE BLOCK */
.service-block {
    padding: 45px 0;
    border-bottom: 1px solid #eee;
}

.service-block:last-child {
    border-bottom: none;
}

.service-block h3 {
    font-size: 26px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.service-block p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* SUBTLE HOVER EFFECT */
.service-block:hover h3 {
    color: #d87a2c;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 32px;
    }

    .service-block h3 {
        font-size: 22px;
    }

    .service-block {
        padding: 35px 0;
    }
}
