/* ── scoped to .mp-* — no global reset, won't touch navbar ── */

.mp-hero {
    background: linear-gradient(135deg, #004D61 0%, #007A8A 50%, #00B4CC 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
}

.mp-hero::before {
    content: '';
    position: absolute;
    top: -90px;
    right: -90px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 55px solid rgba(255, 255, 255, 0.07);
    animation: mpRing 4s ease-in-out infinite;
}

.mp-hero::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: -50px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 38px solid rgba(247, 168, 0, 0.10);
    animation: mpRing 4s ease-in-out infinite 1.5s;
}

@keyframes mpRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.06);
        opacity: 0.55;
    }
}

.mp-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 58px 24px 52px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mp-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(247, 168, 0, 0.18);
    border: 1.5px solid rgba(247, 168, 0, 0.50);
    color: #F7A800;
    border-radius: 30px;
    padding: 5px 17px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    width: fit-content;
}

.mp-hero-title {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 16px;
}

.mp-hero-title .t-gold {
    color: #F7A800;
}

.mp-hero-title .t-lite {
    color: #b2f0f8;
}

.mp-hero-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.80;
    max-width: 530px;
    margin-bottom: 30px;
}

.mp-hero-btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.mp-btn-gold {
    background: linear-gradient(135deg, #F7A800, #d98600);
    color: #004D61;
    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(247, 168, 0, 0.44);
    transition: transform .2s, box-shadow .2s;
}

.mp-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(247, 168, 0, 0.55);
    color: #004D61;
    text-decoration: none;
}

.mp-btn-ghost {
    background: rgba(0, 0, 0, 0.16);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 11px 28px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.48);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: all .2s;
}

.mp-btn-ghost:hover {
    border-color: #F7A800;
    color: #F7A800;
    text-decoration: none;
}

/* stat pills */
.mp-pills {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.mp-pill {
    background: rgba(0, 0, 0, 0.17);
    border: 1.5px solid rgba(255, 255, 255, 0.20);
    border-radius: 14px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    transition: background .2s, border-color .2s;
    box-sizing: border-box;
}

.mp-pill:hover {
    background: rgba(0, 0, 0, 0.27);
    border-color: rgba(255, 255, 255, 0.48);
}

.mp-pill-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.pi-teal {
    background: linear-gradient(135deg, #004D61, #007A8A);
}

.pi-green {
    background: linear-gradient(135deg, #3AAA35, #267a22);
}

.pi-gold {
    background: linear-gradient(135deg, #F7A800, #c97f00);
}

.pi-navy {
    background: linear-gradient(135deg, #1B2A4A, #2d4580);
}

.mp-pill-val {
    font-size: 16px;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}

.mp-pill-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.68);
}

/* brand strip */
.mp-strip {
    height: 4px;
    background: linear-gradient(to right, #004D61, #007A8A, #29ABE2, #F7A800);
}

/* ── about section ── */
.mp-about {
    padding: 52px 0 44px;
    background: #fff;
    font-family: 'Nunito', sans-serif;
}

.mp-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.mp-sec-head {
    text-align: center;
    margin-bottom: 40px;
}

.mp-sec-head h2 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 10px;
}

.mp-sec-head h2 .c-teal {
    color: #007A8A;
}

.mp-sec-head h2 .c-gold {
    color: #F7A800;
}

.mp-sec-head p {
    font-size: 15.5px;
    color: #64748B;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.74;
}

.mp-underline {
    width: 58px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(to right, #007A8A, #00B4CC);
    margin: 14px auto 0;
}

.mp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* intro text card */
.mp-intro-card {
    background: #fff;
    border: 1.5px solid #b2f0f8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0, 122, 138, 0.09);
    display: flex;
    box-sizing: border-box;
}

.mp-intro-side {
    width: 80px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #004D61, #007A8A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.mp-intro-body {
    flex: 1;
    padding: 24px 26px;
    position: relative;
    box-sizing: border-box;
}

.mp-intro-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 26px;
    right: 26px;
    height: 3px;
    background: linear-gradient(to right, #007A8A, #F7A800, transparent);
    border-radius: 0 0 4px 4px;
}

.mp-intro-body h3 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1.5px dashed #b2f0f8;
}

.mp-intro-body p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.82;
    margin-bottom: 10px;
}

.mp-intro-body p:last-child {
    margin-bottom: 0;
}

/* image grid */
.mp-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mp-img-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 122, 138, 0.12);
    border: 1.5px solid #b2f0f8;
    transition: transform .25s, box-shadow .25s;
}

.mp-img-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 122, 138, 0.20);
}

.mp-img-item img {
    width: 100%;
    display: block;
}

/* ── micro ATM section ── */
.mp-micro {
    padding: 52px 0 44px;
    background: #f0fdfb;
    font-family: 'Nunito', sans-serif;
}

.mp-micro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.mp-micro-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 122, 138, 0.14);
    border: 1.5px solid #b2f0f8;
}

.mp-micro-img img {
    width: 100%;
    display: block;
}

.mp-micro-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 122, 138, 0.10);
    border: 1.5px solid rgba(0, 122, 138, 0.28);
    color: #007A8A;
    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;
}

.mp-micro-text h3 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 14px;
    line-height: 1.25;
}

.mp-micro-text h3 span {
    color: #007A8A;
}

.mp-micro-text p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.82;
    margin-bottom: 12px;
}

/* services list */
.mp-svc-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 24px;
    border: 1.5px solid #b2f0f8;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 122, 138, 0.08);
}

.mp-svc-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 20px;
    border-bottom: 1px dashed #99eef8;
    transition: background .15s;
    box-sizing: border-box;
}

.mp-svc-item:last-child {
    border-bottom: none;
}

.mp-svc-item:hover {
    background: #f0fdfb;
}

.mp-svc-ico {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.10);
}

.ico-1 {
    background: linear-gradient(135deg, #004D61, #007A8A);
}

.ico-2 {
    background: linear-gradient(135deg, #007A8A, #3AAA35);
}

.ico-3 {
    background: linear-gradient(135deg, #3AAA35, #29ABE2);
}

.ico-4 {
    background: linear-gradient(135deg, #29ABE2, #F7A800);
}

.mp-svc-txt h4 {
    font-family: 'Barlow', 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #1B2A4A;
    margin-bottom: 3px;
}

.mp-svc-txt p {
    font-size: 13.5px;
    color: #64748B;
    line-height: 1.65;
}

.mp-enquire-btn {
    background: linear-gradient(135deg, #007A8A, #00B4CC);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    padding: 13px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 6px 20px rgba(0, 122, 138, 0.36);
    transition: transform .2s, box-shadow .2s;
}

.mp-enquire-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 122, 138, 0.46);
    color: #fff;
    text-decoration: none;
}

/* ── contact strip ── */
.mp-contact-strip {
    background: linear-gradient(135deg, #004D61 0%, #007A8A 100%);
    padding: 44px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
}

.mp-contact-strip::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.mp-ct-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.mp-ct-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.mp-ct-text h3 span {
    color: #F7A800;
}

.mp-ct-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.74);
}

.mp-ct-items {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.mp-ct-item {
    display: flex;
    align-items: center;
    gap: 13px;
    background: rgba(0, 0, 0, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.24);
    border-radius: 14px;
    padding: 15px 20px;
    color: #fff;
    transition: background .2s, border-color .2s;
    box-sizing: border-box;
}

.mp-ct-item:hover {
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.48);
}

.mp-ct-item .ct-ico {
    font-size: 26px;
}

.mp-ct-item .ct-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: .64;
    display: block;
    margin-bottom: 2px;
}

.mp-ct-item .ct-val {
    font-size: 15px;
    font-weight: 800;
}

.mp-ct-item a {
    color: #F7A800;
    text-decoration: none;
}

.mp-ct-item a:hover {
    text-decoration: underline;
}

/* responsive */
@media (max-width: 960px) {
    .mp-hero-inner {
        grid-template-columns: 1fr;
        padding: 42px 24px 46px;
    }

    .mp-pills {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .mp-pill {
        flex: 1 1 200px;
    }

    .mp-hero-title {
        font-size: 34px;
    }

    .mp-about-grid {
        grid-template-columns: 1fr;
    }

    .mp-micro-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .mp-hero-title {
        font-size: 26px;
    }

    .mp-hero-btns {
        flex-wrap: wrap;
    }

    .mp-img-grid {
        grid-template-columns: 1fr;
    }

    .mp-intro-card {
        flex-direction: column;
    }

    .mp-intro-side {
        width: 100%;
        padding: 16px 20px;
        min-height: 60px;
    }

    .mp-ct-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}