:root {
    --power-red: #E31E24;
    --midnight-charcoal: #1A1C21;
    --clean-slate: #F8F9FA;
    --steel-grey: #171717;
    --ocs-white: #ffffff;
    --ocs-border: #e7e9ec;
    --ocs-soft-red: rgba(227, 30, 36, 0.08);
    --ocs-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   GLOBAL INNER PAGE STRUCTURE
========================================================= */

[class*="ccs-"] {
    background: var(--clean-slate);
    overflow-x: hidden;
}

[class*="ccs-"] section {
    padding: 90px 0;
}

[class*="ccs-"] .container {
    max-width: 1240px;
}

/* =========================================================
   BRAND HELPERS
========================================================= */

.bg-midnight {
    background-color: var(--midnight-charcoal) !important;
}

.bg-power-red {
    background-color: var(--power-red) !important;
}

.text-power-red {
    color: var(--power-red) !important;
}

.text-steel {
    color: var(--steel-grey) !important;
    line-height: 1.8;
}

/* =========================================================
   INNER PAGE HERO / HEADER
========================================================= */

[class*="ccs-"] header {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    color: var(--ocs-white);
    isolation: isolate;
}

[class*="ccs-"] header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(26, 28, 33, 0.92) 0%,
            rgba(26, 28, 33, 0.72) 45%,
            rgba(26, 28, 33, 0.45) 100%
        );
    z-index: -1;
}

[class*="ccs-"] header::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left,
        rgba(227, 30, 36, 0.20),
        transparent 28%);
    z-index: -1;
}

[class*="ccs-"] header h1,
[class*="ccs-"] header h2,
[class*="ccs-"] header h3,
[class*="ccs-"] header p,
[class*="ccs-"] header span {
    color: var(--ocs-white) !important;
}

[class*="ccs-"] header .page-title,
[class*="ccs-"] header h1 {
    font-family: 'Montserrat Bold', sans-serif !important;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

[class*="ccs-"] header p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255,255,255,0.88) !important;
    line-height: 1.8;
    font-size: 17px;
}

/* =========================================================
   PAGE BACKGROUND IMAGES
========================================================= */

.ccs-about-us header{
    background-image: url('../../images/pages/ccs-about-us.jpg');
}

.ccs-send-referrals header{
    background-image: url('../../images/pages/ccs-send-referrals.jpg');
}

.ccs-set-an-appointment header{
    background-image: url('../../images/pages/ccs-set-an-appointment.jpg');
}

.ccs-get-qoute header{
    background-image: url('../../images/pages/ccs-get-qoute.jpg');
}

.ccs-services header{
    background-image: url('../../images/pages/ccs-services.jpg');
}

.ccs-careers header{
    background-image: url('../../images/pages/ccs-careers.jpg');
}

.ccs-our-partner header{
    background-image: url('../../images/pages/ccs-our-partner.jpg');
}

.ccs-blog header{
    background-image: url('../../images/pages/ccs-blog.jpg');
}

.ccs-contact-us header{
    background-image: url('../../images/pages/ccs-contact-us.jpg');
}

.ccs-privacy-policy header{
    background-image: url('../images/pages/ccs-privacy-policy.jpg');
}

[class*="ccs-"] header {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

[class*="ccs-"] .section-tag {
    display: inline-block;
    color: var(--power-red);
    font-size: 18px;
    font-family: 'Montserrat SemiBold';
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

[class*="ccs-"] .section-title {
    color: var(--midnight-charcoal);
    font-family: 'Montserrat Bold';
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

[class*="ccs-"] .section-desc {
    color: #55606d;
    max-width: 760px;
    line-height: 1.8;
    font-size: 16px;
}

.bg-midnight .section-title,
.advantage-section .section-title {
    color: var(--ocs-white);
}

.bg-midnight .section-desc,
.advantage-section .section-desc {
    color: rgba(255,255,255,0.76);
}

/* =========================================================
   GENERAL CARDS
========================================================= */

.card-custom {
    position: relative;
    background: var(--ocs-white);
    border-radius: 22px;
    padding: 35px 30px;
    border: 1px solid var(--ocs-border);
    border-bottom: 3px solid transparent;
    box-shadow: var(--ocs-shadow);
    transition: all 0.25s ease;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-6px);
    border-bottom-color: var(--power-red);
    box-shadow: 0 24px 50px rgba(0,0,0,0.12);
}

.card-custom h1,
.card-custom h2,
.card-custom h3,
.card-custom h4 {
    color: var(--midnight-charcoal);
}

.card-custom p {
    color: #58616d;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn-power,
.btn-primary,
button[type="submit"],
input[type="submit"] {
    background: var(--power-red) !important;
    color: var(--ocs-white) !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 13px 30px;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Montserrat Bold';
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    box-shadow: 0 10px 24px rgba(227,30,36,0.20);
}

.btn-power:hover,
.btn-primary:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    background: var(--midnight-charcoal) !important;
    color: var(--ocs-white) !important;
    transform: translateY(-2px);
}

/* =========================================================
   ABOUT PAGE
========================================================= */

.ccs-about-us .img-side {
    height: 475px;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--ocs-shadow);
}

.about-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 24px;
    padding: 35px 30px;
    min-height: 240px;
    backdrop-filter: blur(10px);
}

.about-card h1,
.about-card h2,
.about-card h3,
.about-card h4,
.about-card p,
.about-card li {
    color: var(--ocs-white) !important;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 12px;
}

/* =========================================================
   SERVICE OVERVIEW
========================================================= */

.service-overview-card {
    background: var(--ocs-white);
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid var(--ocs-border);
    box-shadow: var(--ocs-shadow);
    transition: all 0.25s ease;
    text-align: center;
    height: 100%;
}

.service-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.12);
}

.service-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 25px;
    background: var(--ocs-soft-red);
    border-radius: 50%;
    border: 1px solid rgba(227,30,36,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 32px;
    color: var(--power-red);
}

.service-overview-card h3 {
    color: var(--midnight-charcoal);
    font-size: 24px;
    font-family: 'Montserrat Bold';
    margin-bottom: 16px;
}

.service-overview-card p {
    color: #171717;
    line-height: 1.8;
    margin-bottom: 0;
}

/* =========================================================
   ADVANTAGE SECTION
========================================================= */

.advantage-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left,
        rgba(227,30,36,0.14),
        transparent 32%),
        linear-gradient(135deg,
        #10141b 0%,
        #1A1C21 100%);
}

.advantage-card {
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 28px;
    padding: 40px 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-8px);
    border-color: rgba(227,30,36,0.45);
    box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

.advantage-icon {
    width: 82px;
    height: 82px;
    background: rgba(227,30,36,0.12);
    border-radius: 22px;
    border: 1px solid rgba(227,30,36,0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.advantage-icon i {
    font-size: 34px;
    color: var(--power-red);
}

.advantage-card h4 {
    color: var(--ocs-white);
    font-size: 20px;
    font-family: 'Montserrat Bold';
    margin-bottom: 15px;
}

.advantage-card p {
    color: rgba(255,255,255,0.76);
    line-height: 1.8;
    margin-bottom: 0;
}

/* =========================================================
   FORM ELEMENTS
========================================================= */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
    background: var(--ocs-white);
    border: 1px solid var(--ocs-border);
    border-radius: 18px;
    padding: 15px 18px;
    transition: all 0.25s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--power-red);
    box-shadow: 0 0 0 4px rgba(227,30,36,0.10);
}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    [class*="ccs-"] section {
        padding: 70px 0;
    }

    [class*="ccs-"] header {
        padding: 95px 20px;
    }

    .advantage-section {
        border-radius: 26px;
    }

    .card-custom,
    .service-overview-card,
    .about-card,
    .advantage-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {

    [class*="ccs-"] header {
        padding: 80px 18px;
    }

    [class*="ccs-"] header .page-title,
    [class*="ccs-"] header h1 {
        font-size: 34px;
    }

    .section-title {
        font-size: 30px !important;
    }

    .section-desc {
        font-size: 15px;
    }

    .card-custom,
    .service-overview-card,
    .about-card,
    .advantage-card {
        padding: 26px 22px;
    }

    .service-overview-card h3 {
        font-size: 22px;
    }

    .advantage-card h4 {
        font-size: 18px;
    }

    .ccs-about-us .img-side {
        height: auto;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {

    [class*="ccs-"] header .page-title,
    [class*="ccs-"] header h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px !important;
    }

    .card-custom,
    .service-overview-card,
    .about-card,
    .advantage-card {
        padding: 24px 20px;
    }
}

/* =========================================================
   ABOUT US PAGE ENHANCEMENTS
========================================================= */

/* ABOUT PAGE SPACING */
.ccs-about-us section {
    position: relative;
}

/* STORY IMAGE */
.ccs-about-us .img-side {
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.10);
    object-fit: cover;
    width: 100%;
}

/* =========================================================
   WELFARE SECTION
========================================================= */

.ccs-about-us .section-tag {
    display: inline-block;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--power-red);
    font-family: 'Montserrat SemiBold';
    margin-bottom: 14px;
}

.ccs-about-us .section-title {
    font-size: clamp(34px, 3vw, 48px);
    font-family: 'Montserrat Bold';
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--midnight-charcoal);
    margin-bottom: 18px;
}

.ccs-about-us .section-desc {
    color: #5c6470;
    line-height: 1.8;
    font-size: 16px;
    max-width: 850px;
}
.ccs-about-us .card-custom h4 {
    min-height: 55px;
}

.ccs-about-us .card-custom {
    text-align: left;
}

.ccs-about-us .section-desc {
    max-width: 920px;
}


.welfare-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.welfare-info-box {
    background: #f8f9fa;
    border-radius: 26px;
    padding: 38px;
    border-left: 5px solid #e31e24;
}

.welfare-info-box.dark {
    background: #1a1c21;
}

.welfare-info-box h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--ocs-dark);
}

.welfare-info-box.dark h3,
.welfare-info-box.dark p {
    color: #ffffff;
}

.welfare-info-box p {
    color: #171717;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .welfare-info-grid {
        grid-template-columns: 1fr;
    }

    .welfare-card {
        padding: 30px 24px;
    }
}
/* =========================================================
   CORE VALUES GRID
========================================================= */

.ccs-about-us .card-custom {
    position: relative;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 24px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.28s ease;
    box-shadow: 0 16px 40px rgba(0,0,0,0.05);
    overflow: hidden;
}

.ccs-about-us .card-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--power-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.ccs-about-us .card-custom:hover::before {
    transform: scaleX(1);
}

.ccs-about-us .card-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.10);
}

.ccs-about-us .card-custom h4 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-family: 'Montserrat Bold';
    color: var(--power-red);
}

.ccs-about-us .card-custom p {
    color: #171717;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 15px;
}

/* =========================================================
   MISSION / VISION
========================================================= */

.ccs-about-us .about-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 40px 35px;
    height: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.ccs-about-us .about-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Montserrat Bold';
}

.ccs-about-us .about-card p {
    color: rgba(255,255,255,0.82);
    line-height: 1.9;
}

/* =========================================================
   ONE CALL ADVANTAGE
========================================================= */

.ccs-about-us .advantage-section {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left,
        rgba(227,30,36,0.14),
        transparent 30%),
        linear-gradient(135deg,
        #10141b 0%,
        #1A1C21 100%);
}

.ccs-about-us .advantage-section .section-title,
.ccs-about-us .advantage-section .section-desc {
    color: #fff;
}

.ccs-about-us .advantage-section .section-desc {
    color: rgba(255,255,255,0.78);
}

.ccs-about-us .advantage-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 28px;
    padding: 38px 32px;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.28s ease;
}

.ccs-about-us .advantage-card:hover {
    transform: translateY(-8px);
    border-color: rgba(227,30,36,0.40);
    box-shadow: 0 24px 50px rgba(0,0,0,0.24);
}

.ccs-about-us .advantage-icon {
    width: 82px;
    height: 82px;
    border-radius: 22px;
    background: rgba(227,30,36,0.12);
    border: 1px solid rgba(227,30,36,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.ccs-about-us .advantage-icon i {
    font-size: 34px;
    color: var(--power-red);
}

.ccs-about-us .advantage-card h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 16px;
    font-family: 'Montserrat Bold';
}

.ccs-about-us .advantage-card p {
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    margin-bottom: 0;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .ccs-about-us .card-custom,
    .ccs-about-us .about-card,
    .ccs-about-us .advantage-card {
        padding: 30px 25px;
    }

    .ccs-about-us .img-side {
        margin-top: 25px;
    }
}

@media (max-width: 768px) {

    .ccs-about-us .section-title {
        font-size: 30px !important;
    }

    .ccs-about-us .section-desc {
        font-size: 15px;
    }

    .ccs-about-us .card-custom,
    .ccs-about-us .about-card,
    .ccs-about-us .advantage-card {
        padding: 28px 22px;
    }

    .ccs-about-us .card-custom h4 {
        font-size: 18px;
    }

    .ccs-about-us .advantage-card h4 {
        font-size: 20px;
    }

    .ccs-about-us .advantage-icon {
        width: 72px;
        height: 72px;
    }

    .ccs-about-us .advantage-icon i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {

    .ccs-about-us .section-title {
        font-size: 26px !important;
    }

    .ccs-about-us .card-custom,
    .ccs-about-us .about-card,
    .ccs-about-us .advantage-card {
        padding: 24px 20px;
    }
}

/* =========================================================
   INNER PAGE HERO / BANNER REFINEMENT
========================================================= */

[class*="ccs-"] header {
    min-height: 360px;
    padding: 90px 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 24px 24px !important;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12) !important;
    background-position: center center !important;
}

[class*="ccs-"] header::before {
    background:
        linear-gradient(
            90deg,
            rgba(26, 28, 33, 0.88) 0%,
            rgba(26, 28, 33, 0.72) 45%,
            rgba(26, 28, 33, 0.52) 100%
        ) !important;
}

[class*="ccs-"] header::after {
    background:
        radial-gradient(
            circle at 12% 25%,
            rgba(227, 30, 36, 0.32),
            transparent 34%
        ) !important;
}

[class*="ccs-"] header .mx-auto {
    max-width: 980px;
    position: relative;
    z-index: 2;
}

[class*="ccs-"] header .page-title,
[class*="ccs-"] header h1 {
    font-size: clamp(48px, 5vw, 76px) !important;
    line-height: 1.05;
    margin-bottom: 20px;
    text-shadow: 0 10px 28px rgba(0,0,0,0.28);
}

[class*="ccs-"] header .header-section,
[class*="ccs-"] header h2 {
    font-size: clamp(24px, 2.6vw, 36px) !important;
    line-height: 1.25;
    margin-bottom: 20px !important;
    text-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

[class*="ccs-"] header p {
    font-size: clamp(17px, 1.5vw, 22px) !important;
    max-width: 850px !important;
    line-height: 1.75;
    color: rgba(255,255,255,0.92) !important;
    text-shadow: 0 6px 20px rgba(0,0,0,0.22);
}

/* Page-specific background positioning */
.ccs-about-us header {
    background-position: center 35% !important;
}

.ccs-contact-us header {
    background-position: center 45% !important;
}

.ccs-blog header {
    background-position: center 45% !important;
}

.ccs-services header,
.ccs-careers header,
.ccs-our-partner header {
    background-position: center center !important;
}

/* Tablet */
@media (max-width: 991px) {
    [class*="ccs-"] header {
        min-height: 320px;
        padding: 75px 22px !important;
        border-radius: 0 0 20px 20px !important;
    }

    [class*="ccs-"] header .page-title,
    [class*="ccs-"] header h1 {
        font-size: 46px !important;
    }

    [class*="ccs-"] header .header-section,
    [class*="ccs-"] header h2 {
        font-size: 26px !important;
    }

    [class*="ccs-"] header p {
        font-size: 17px !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    [class*="ccs-"] header {
        min-height: 280px;
        padding: 60px 18px !important;
    }

    [class*="ccs-"] header .page-title,
    [class*="ccs-"] header h1 {
        font-size: 38px !important;
    }

    [class*="ccs-"] header .header-section,
    [class*="ccs-"] header h2 {
        font-size: 22px !important;
    }

    [class*="ccs-"] header p {
        font-size: 15px !important;
        line-height: 1.7;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    [class*="ccs-"] header {
        min-height: 250px;
        padding: 50px 16px !important;
    }

    [class*="ccs-"] header .page-title,
    [class*="ccs-"] header h1 {
        font-size: 32px !important;
    }

    [class*="ccs-"] header .header-section,
    [class*="ccs-"] header h2 {
        font-size: 19px !important;
    }
}
/* =========================================================
   SERVICES PAGE - OPERATIONAL SUPPORT SERVICES
========================================================= */

.ccs-services .services-process-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.ccs-services .service-process-card {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    padding: 36px 32px;
    text-align: left;
    border: 1px solid var(--ocs-border);
    box-shadow: var(--ocs-shadow);
    overflow: hidden;
    transition: all 0.28s ease;
}

.ccs-services .service-process-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: var(--power-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

.ccs-services .service-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(0,0,0,0.12);
}

.ccs-services .service-process-card:hover::before {
    transform: scaleX(1);
}

.ccs-services .service-process-top {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.ccs-services .service-process-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 22px;
    background: rgba(227,30,36,0.08);
    border: 1px solid rgba(227,30,36,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ccs-services .service-process-icon i {
    font-size: 30px;
    color: var(--power-red);
}

.ccs-services .service-process-card h4 {
    color: var(--midnight-charcoal);
    font-size: 22px;
    line-height: 1.35;
    margin: 5px 0 0;
    font-family: 'Montserrat Bold';
}

.ccs-services .service-process-card p {
    color: #171717;
    line-height: 1.85;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .ccs-services .service-process-card {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .ccs-services .service-process-top {
        gap: 16px;
    }

    .ccs-services .service-process-icon {
        width: 62px;
        height: 62px;
        min-width: 62px;
    }

    .ccs-services .service-process-icon i {
        font-size: 26px;
    }

    .ccs-services .service-process-card h4 {
        font-size: 20px;
    }
}
