:root {
    --kb: #29ABE2;
    --kn: #1B2A4A;
    --kg: #3AAA35;
    --kgo: #F7A800;
    --kw: #FFFFFF;
    --kt: #2D3748;
    --km: #64748B;
    --co-dark: #7C3000;
    --co-mid: #D2510A;
    --co-lite: #F47C20;
}

.co-hero *,
.co-section *,
.co-strip,
.co-contact *,
.co-card *,
.co-intro *,
.co-service-block * {
    box-sizing: border-box;
}

/* ===== HERO — Orange / Logistics theme ===== */
.co-hero {
    background: linear-gradient(135deg, #7C3000 0%, #D2510A 55%, #F47C20 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
}

.co-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 55px solid rgba(255, 255, 255, 0.07);
    animation: co-pulse 4s ease-in-out infinite;
}

.co-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, 0.06);
    animation: co-pulse 4s ease-in-out infinite 1.5s;
}

@keyframes co-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

.co-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 24px 56px;
    display: grid;
    grid-template-columns: 1fr 370px;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.co-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.40);
    color: #ffffff;
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
}

.co-hero-title {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 16px;
}

.co-hero-title .t-light {
    color: #ffe0cc;
}

.co-hero-title .t-white {
    color: #ffffff;
}

.co-hero-title .t-yellow {
    color: #FFE033;
}

.co-hero-sub {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.78;
    max-width: 530px;
    margin-bottom: 30px;
}

.co-hero-btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.co-btn-white {
    background: #ffffff;
    color: #D2510A;
    font-weight: 800;
    font-size: 15px;
    padding: 13px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.20);
    transition: transform 0.2s, box-shadow 0.2s;
}

.co-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    color: #D2510A;
    text-decoration: none;
}

.co-btn-ghost {
    background: rgba(0, 0, 0, 0.15);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 11px 28px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: all 0.2s;
}

.co-btn-ghost:hover {
    border-color: #FFE033;
    color: #FFE033;
    background: rgba(0, 0, 0, 0.22);
    text-decoration: none;
}

/* Hero stat pills */
.co-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.co-stat-pill {
    background: rgba(0, 0, 0, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
    transition: background 0.2s, border-color 0.2s;
}

.co-stat-pill:hover {
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.55);
}

.co-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.si-orange {
    background: linear-gradient(135deg, #7C3000, #D2510A);
}

.si-green {
    background: linear-gradient(135deg, #3AAA35, #267a22);
}

.si-blue {
    background: linear-gradient(135deg, #29ABE2, #1a7faa);
}

.si-navy {
    background: linear-gradient(135deg, #1B2A4A, #2d4580);
}

.co-stat-text .st-val {
    font-size: 17px;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}

.co-stat-text .st-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
}

/* ===== BRAND STRIP ===== */
.co-strip {
    height: 4px;
    background: linear-gradient(to right, #7C3000, #D2510A, #29ABE2, #3AAA35);
}

/* ===== SECTION COMMONS ===== */
.co-section {
    padding: 56px 0 48px;
    font-family: 'Nunito', sans-serif;
}

.co-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.co-section-head {
    text-align: center;
    margin-bottom: 44px;
}

.co-section-head h2 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--kn);
    margin-bottom: 10px;
    line-height: 1.25;
}

.co-section-head h2 .orange {
    color: #D2510A;
}

.co-section-head h2 .blue {
    color: var(--kb);
}

.co-section-head h2 .green {
    color: var(--kg);
}

.co-section-head p {
    font-size: 16px;
    color: var(--km);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.co-underline {
    width: 60px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(to right, #D2510A, #F47C20);
    margin: 14px auto 0;
}

/* ===== INTRO CARD ===== */
.co-intro-card {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 36px rgba(210, 81, 10, 0.10);
    border: 1.5px solid #fde5d4;
    background: var(--kw);
    margin-bottom: 32px;
    animation: coFadeUp 0.5s ease both;
}

.co-intro-sidebar {
    width: 90px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #7C3000 0%, #D2510A 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 10px;
    font-size: 38px;
    position: relative;
}

.co-intro-sidebar::after {
    content: attr(data-label);
    position: absolute;
    bottom: 12px;
    font-size: 6px;
    font-weight: 900;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
}

.co-intro-body {
    flex: 1;
    padding: 26px 28px;
    position: relative;
}

.co-intro-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 3px;
    background: linear-gradient(to right, #D2510A, #F7A800, transparent);
    border-radius: 0 0 4px 4px;
}

.co-intro-body h3 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--kn);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1.5px dashed #fbd0b8;
}

.co-intro-body p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.82;
    margin-bottom: 10px;
}

.co-intro-body p:last-child {
    margin-bottom: 0;
}

/* ===== FEATURE LIST (Express Services) ===== */
.co-feat-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.co-feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 14.5px;
    color: var(--kt);
    font-weight: 600;
    border-bottom: 1px dashed #fde5d4;
    line-height: 1.6;
}

.co-feat-list li:last-child {
    border-bottom: none;
}

.co-check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #D2510A, #F47C20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

/* ===== SERVICE BLOCKS (2-col alternating) ===== */
.co-service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1.5px dashed #fde5d4;
}

.co-service-block:last-child {
    border-bottom: none;
}

.co-service-block.reverse {
    direction: rtl;
}

.co-service-block.reverse>* {
    direction: ltr;
}

.co-service-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(210, 81, 10, 0.12);
    border: 1.5px solid #fde5d4;
}

.co-service-img img {
    width: 100%;
    display: block;
}

.co-service-text {}

.co-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(210, 81, 10, 0.10);
    border: 1.5px solid rgba(210, 81, 10, 0.25);
    color: #D2510A;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    width: fit-content;
}

.co-service-text h3 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--kn);
    margin-bottom: 14px;
    line-height: 1.25;
}

.co-service-text h3 span {
    color: #D2510A;
}

.co-service-text p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.82;
    margin-bottom: 14px;
}

.co-enquire-btn {
    background: linear-gradient(135deg, #D2510A, #F47C20);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 11px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 6px 20px rgba(210, 81, 10, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.co-enquire-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(210, 81, 10, 0.45);
    color: #fff;
    text-decoration: none;
}

/* ===== SPECIAL SERVICES CARDS ===== */
.co-special-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.co-special-card {
    background: var(--kw);
    border: 1.5px solid #fde5d4;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(210, 81, 10, 0.07);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
    animation: coFadeUp 0.55s ease both;
}

.co-special-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 18px 18px 0 0;
}

.co-special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(210, 81, 10, 0.14);
    border-color: #D2510A;
}

.sc-1::before {
    background: linear-gradient(to right, #7C3000, #D2510A);
}

.sc-2::before {
    background: linear-gradient(to right, #D2510A, #29ABE2);
}

.sc-3::before {
    background: linear-gradient(to right, #29ABE2, #3AAA35);
}

.sc-4::before {
    background: linear-gradient(to right, #3AAA35, #F47C20);
}

.co-special-card:nth-child(1) {
    animation-delay: 0.05s;
}

.co-special-card:nth-child(2) {
    animation-delay: 0.10s;
}

.co-special-card:nth-child(3) {
    animation-delay: 0.15s;
}

.co-special-card:nth-child(4) {
    animation-delay: 0.20s;
}

.co-card-icon {
    font-size: 38px;
    margin-bottom: 14px;
    display: block;
}

.co-special-card h4 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--kn);
    margin-bottom: 10px;
    line-height: 1.3;
}

.co-special-card p {
    font-size: 14px;
    color: #5a6a7e;
    line-height: 1.78;
}

/* ===== TECH FEATURES GRID ===== */
.co-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.co-tech-card {
    background: var(--kw);
    border: 1.5px solid #d8eef9;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(27, 42, 74, 0.07);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
    animation: coFadeUp 0.55s ease both;
}

.co-tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 18px 18px 0 0;
}

.co-tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(27, 42, 74, 0.12);
}

.tc-1::before {
    background: linear-gradient(to right, #1B2A4A, #29ABE2);
}

.tc-2::before {
    background: linear-gradient(to right, #29ABE2, #3AAA35);
}

.tc-3::before {
    background: linear-gradient(to right, #3AAA35, #D2510A);
}

.tc-4::before {
    background: linear-gradient(to right, #D2510A, #1B2A4A);
}

.co-tech-card:nth-child(1) {
    animation-delay: 0.05s;
}

.co-tech-card:nth-child(2) {
    animation-delay: 0.10s;
}

.co-tech-card:nth-child(3) {
    animation-delay: 0.15s;
}

.co-tech-card:nth-child(4) {
    animation-delay: 0.20s;
}

.co-tech-num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.tn-1 {
    background: linear-gradient(135deg, #1B2A4A, #29ABE2);
}

.tn-2 {
    background: linear-gradient(135deg, #29ABE2, #3AAA35);
}

.tn-3 {
    background: linear-gradient(135deg, #3AAA35, #D2510A);
}

.tn-4 {
    background: linear-gradient(135deg, #D2510A, #F47C20);
}

.co-tech-card h4 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--kn);
    margin-bottom: 10px;
    line-height: 1.3;
}

.co-tech-card p {
    font-size: 14px;
    color: #5a6a7e;
    line-height: 1.78;
}

/* ===== CONTACT STRIP ===== */
.co-contact {
    background: linear-gradient(135deg, #7C3000 0%, #D2510A 100%);
    padding: 44px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
}

.co-contact::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.co-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.co-contact-text h3 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.co-contact-text h3 span {
    color: #FFE033;
}

.co-contact-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
}

.co-contact-items {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.co-citem {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(0, 0, 0, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 16px 22px;
    color: #fff;
    transition: background 0.2s, border-color 0.2s;
}

.co-citem:hover {
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.55);
}

.co-citem .ci-ico {
    font-size: 28px;
}

.co-citem .ci-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.65;
    display: block;
    margin-bottom: 3px;
}

.co-citem .ci-val {
    font-size: 15px;
    font-weight: 800;
}

.co-citem a {
    color: #FFE033;
    text-decoration: none;
}

.co-citem a:hover {
    text-decoration: underline;
}

/* ===== ANIMATION ===== */
@keyframes coFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .co-hero-inner {
        grid-template-columns: 1fr;
        padding: 44px 24px;
    }

    .co-hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .co-stat-pill {
        flex: 1 1 200px;
    }

    .co-hero-title {
        font-size: 34px;
    }

    .co-service-block {
        grid-template-columns: 1fr;
    }

    .co-service-block.reverse {
        direction: ltr;
    }

    .co-special-grid {
        grid-template-columns: 1fr;
    }

    .co-tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .co-hero-title {
        font-size: 26px;
    }

    .co-section {
        padding: 38px 0 30px;
    }

    .co-section-head h2 {
        font-size: 24px;
    }

    .co-hero-btns {
        flex-wrap: wrap;
    }

    .co-intro-card {
        flex-direction: column;
    }

    .co-intro-sidebar {
        width: 100%;
        padding: 18px 22px;
        font-size: 30px;
    }

    .co-intro-sidebar::after {
        position: static;
    }

    .co-contact-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}