/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --nav-offset: 92px;
    --navy: #1a2d4a;
    --navy-light: #28537D;
    --blue-900: #28537D;
    --blue-700: #28537D;
    --blue-600: #28537D;
    --blue-500: #58B7BD;
    --blue-100: #e0f4f5;
    --blue-50: #f0fafa;
    --accent: #E8C882;
    --accent-hover: #d4b56e;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: calc(var(--nav-offset) + 16px);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.viewport-scroll {
    scroll-padding-top: var(--nav-offset);
    scroll-behavior: smooth;
}

/* Content-based section heights with consistent vertical rhythm */
body.viewport-scroll section {
    scroll-margin-top: var(--nav-offset);
}

body.viewport-scroll section:not(.hero) {
    padding-top: calc(var(--nav-offset) + clamp(16px, 3vw, 28px));
    padding-bottom: clamp(48px, 5vw, 72px);
}

body.viewport-scroll section.trust-strip {
    padding-top: clamp(22px, 2.6vw, 30px);
    padding-bottom: clamp(22px, 2.6vw, 30px);
}

body.viewport-scroll section.commitment,
body.viewport-scroll section.final-cta {
    padding-top: clamp(48px, 5vw, 72px);
    padding-bottom: clamp(48px, 5vw, 72px);
}

body.viewport-scroll .footer {
    scroll-margin-top: var(--nav-offset);
    padding-top: clamp(40px, 5vw, 64px);
    padding-bottom: 0;
}

body.viewport-scroll section > .container {
    width: 100%;
}

body.viewport-scroll .section-header {
    padding-top: 0;
    margin-bottom: clamp(20px, 3vw, 32px);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Anchored/snapped sections must clear the fixed navbar */
section[id],
[id].mp-categories-head {
    scroll-margin-top: calc(var(--nav-offset) + 16px);
}

/* Smooth image reveal to reduce perceived layout shift */
img[data-reveal] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img[data-reveal].loaded,
.no-js img[data-reveal] {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    img[data-reveal] {
        opacity: 1;
        transition: none;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: clamp(16px, 4vw, 40px);
    padding-right: clamp(16px, 4vw, 40px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--blue-600);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(40, 83, 125, 0.3);
}

.btn-primary:hover {
    background: var(--blue-700);
    box-shadow: 0 6px 20px rgba(40, 83, 125, 0.4);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--blue-600);
    border: 2px solid var(--blue-600);
}

.btn-outline:hover {
    background: var(--blue-600);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--blue-700);
    transform: translateY(-1px);
}

.btn-accent {
    background: var(--accent);
    color: var(--navy);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(232, 200, 130, 0.4);
}

.btn-accent:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(232, 200, 130, 0.5);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-1px);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    border: 0 !important;
    outline: none;
    padding: 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: 0 4px 12px rgba(26, 45, 74, 0.06);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    backdrop-filter: none;
    border: 1px solid transparent;
    border-radius: 0;
    padding: 0 20px;
    height: 92px;
    box-shadow: none;
}

.navbar.scrolled .navbar-inner {
    background: transparent;
    box-shadow: none;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 78px;
    width: auto;
    object-fit: contain;
}

.logo-img-footer {
    height: 86px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid rgba(40, 83, 125, 0.08);
    border-radius: 999px;
    padding: 6px;
    backdrop-filter: none;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    padding: 8px 12px;
    border-radius: 999px;
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: var(--blue-600);
}

.nav-cta {
    font-size: 0.85rem;
    padding: 10px 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    isolation: isolate;
    padding: 140px 0 80px;
    background: var(--blue-50);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: none;
    background-size: 36px 36px;
    opacity: 0.6;
    z-index: -2;
}

.hero-ambient {
    display: none;
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
    z-index: -1;
}

.hero-ambient-1 {
    width: 340px;
    height: 340px;
    top: 100px;
    left: -80px;
    background: radial-gradient(circle, rgba(88, 183, 189, 0.28) 0%, rgba(88, 183, 189, 0.02) 72%);
    animation: drift 12s ease-in-out infinite;
}

.hero-ambient-2 {
    width: 300px;
    height: 300px;
    right: -70px;
    top: 140px;
    background: radial-gradient(circle, rgba(40, 83, 125, 0.2) 0%, rgba(40, 83, 125, 0.02) 70%);
    animation: drift 14s ease-in-out infinite reverse;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--blue-600);
    background: var(--blue-100);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-heading {
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    white-space: normal;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
}

.trust-item svg {
    color: var(--blue-600);
}

.hero-visual {
    position: relative;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.hero-img {
    border-radius: var(--radius);
    object-fit: contain;
    object-position: center;
    background: var(--blue-50);
    box-shadow: var(--shadow-lg);
}

.hero-img-2 {
    animation-delay: 0.8s;
}

.hero-img-3 {
    animation-delay: 1.4s;
}

.hero-img-1 {
    grid-column: 1 / -1;
    height: 300px;
    width: 100%;
}

.hero-img-2,
.hero-img-3 {
    height: 240px;
    width: 100%;
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(40, 83, 125, 0.12);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-xl);
    animation: float 3s ease-in-out infinite;
}

.floating-card svg {
    color: var(--blue-600);
    flex-shrink: 0;
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 0.85rem;
    color: var(--navy);
}

.floating-card span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.hero-live-tag {
    position: absolute;
    top: -14px;
    right: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue-900);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(40, 83, 125, 0.16);
    border-radius: 999px;
    padding: 8px 12px;
    box-shadow: var(--shadow-md);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #12b76a;
    box-shadow: 0 0 0 0 rgba(18, 183, 106, 0.5);
    animation: pulse 2s infinite;
}

.hero-kpi-strip {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hero-kpi-item {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(40, 83, 125, 0.12);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.hero-kpi-item strong {
    display: block;
    font-size: 1.3rem;
    line-height: 1;
    font-weight: 800;
    color: var(--blue-900);
}

.hero-kpi-item strong::after {
    content: '+';
    margin-left: 1px;
}

.hero-kpi-item span {
    display: block;
    margin-top: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-600);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes drift {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(14px, -12px, 0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(18, 183, 106, 0.45); }
    70% { box-shadow: 0 0 0 8px rgba(18, 183, 106, 0); }
    100% { box-shadow: 0 0 0 0 rgba(18, 183, 106, 0); }
}

@keyframes heroImageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    padding: 20px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.trust-strip-heading {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.logo-marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: 48px;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.client-logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 62px;
    white-space: nowrap;
    padding: 12px 20px;
    background: var(--white);
    border: 1px solid #dcecf0;
    border-radius: 12px;
    transition: all var(--transition);
}

.client-logo-item:hover {
    transform: translateY(-3px);
    border-color: #b8dde4;
    box-shadow: 0 12px 24px rgba(26, 45, 74, 0.1);
}

.client-logo-img {
    max-width: 164px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.3) contrast(1.06);
    opacity: 0.95;
    transition: all var(--transition);
}

.client-logo-item:hover .client-logo-img {
    filter: grayscale(0) contrast(1.1);
    opacity: 1;
}

.client-logo-label {
    display: none;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-500);
}

.client-logo-item.is-icon-logo {
    justify-content: flex-start;
    gap: 10px;
}

.client-logo-item.is-icon-logo .client-logo-img {
    max-width: 26px;
    max-height: 26px;
    filter: none;
    opacity: 1;
}

.client-logo-item.is-icon-logo .client-logo-label {
    display: inline-flex;
    color: var(--gray-700);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about {
    padding: 0;
    background: var(--white);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: 560px;
    object-fit: contain;
    object-position: center;
    background: var(--gray-100);
}

.about-image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 2px solid var(--blue-200, #bfdbfe);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--blue-600);
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.2;
    white-space: normal;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.metric-card {
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all var(--transition);
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.metric-card strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-700);
    margin-bottom: 4px;
}

.metric-card span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: min(1120px, 92vw);
    margin: 0 auto clamp(20px, 3vh, 36px);
}

.section-header h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.25;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-light h2 {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.section-header-light p {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== SERVICES ===== */
.services {
    padding: 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card-featured {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--gray-100);
}

.service-card-featured:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-card-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f4f5f5;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f4f5f5;
    transition: transform 0.4s ease;
}

.service-card-featured:hover .service-card-image img {
    transform: scale(1.025);
}

.service-number {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 6px;
    color: var(--blue-700);
}

.service-card-body {
    padding: 28px 24px;
}

.service-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-tags li {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--blue-700);
    background: var(--blue-50);
    padding: 4px 10px;
    border-radius: 50px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blue-600);
    transition: all var(--transition);
}

.service-cta:hover {
    color: var(--blue-700);
    gap: 10px;
}

/* ===== MANPOWER ===== */
.manpower {
    padding: 88px 0;
    background: var(--white);
}

@media (max-width: 1024px) {
    .manpower {
        padding: 64px 0;
    }
}


/* Intro / Hero */
.mp-intro {
    display: grid;
    grid-template-columns: 1fr 460px;
    align-items: center;
    gap: 56px;
    margin-bottom: 96px;
}

.mp-intro-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.mp-intro-content > p {
    font-size: 1.02rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 28px;
}

.mp-intro-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.mp-intro-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mp-intro-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.mp-intro-trust svg {
    color: var(--blue-500);
    flex-shrink: 0;
}

.mp-intro-visual {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    max-height: 560px;
    box-shadow: var(--shadow-lg);
}

.mp-intro-visual img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: contain;
    object-position: center;
    background: var(--gray-100);
}

.mp-intro-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    box-shadow: var(--shadow-md);
}

/* How We Deploy */
.mp-process {
    margin-bottom: 96px;
}

.mp-steps {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 1080px;
    margin: 0 auto;
}

.mp-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    flex: 1;
    min-width: 0;
    transition: all var(--transition);
}

.mp-step:hover {
    border-color: var(--blue-500);
    transform: translateY(-4px);
}

.mp-step-num {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--blue-50);
    color: var(--blue-700);
    font-size: 0.78rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mp-step-body strong {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.mp-step-body small {
    display: block;
    font-size: 0.74rem;
    color: var(--gray-600);
    line-height: 1.35;
}

.mp-step-connector {
    width: 28px;
    height: 1px;
    background: var(--gray-300);
    flex-shrink: 0;
    align-self: center;
}

/* Workforce category head */
.mp-categories-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    scroll-margin-top: var(--nav-offset);
}

.mp-categories-head h3 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.25;
}

.mp-categories-head p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* Category Blocks */
.mp-categories {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 72px;
}

.mp-cat {
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: stretch;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.mp-cat-reverse {
    grid-template-columns: 1fr 320px;
}

.mp-cat-reverse .mp-cat-visual {
    order: 2;
}

.mp-cat-reverse .mp-cat-content {
    order: 1;
}

.mp-cat-visual {
    position: relative;
    min-height: 340px;
    overflow: hidden;
}

.mp-cat-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: var(--gray-100);
}

.mp-cat-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 35, 60, 0.28);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.mp-cat-count {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 8px 14px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
}

.mp-cat-content {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mp-cat-header {
    margin-bottom: 22px;
}

.mp-cat-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--blue-50);
    color: var(--blue-700);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mp-cat-badge-tech {
    background: rgba(232, 200, 130, 0.15);
    color: #7a5f1f;
}

.mp-cat-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
}

/* Role list */
.mp-roles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 16px;
}

.mp-role {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    min-height: 44px;
}

.mp-role:hover {
    border-color: var(--blue-500);
    background: var(--blue-50);
}

.mp-role-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--blue-50);
    color: var(--blue-600);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.mp-role:hover .mp-role-icon {
    background: var(--blue-500);
    color: var(--white);
}

.mp-role-icon-tech {
    background: rgba(232, 200, 130, 0.18);
    color: #8a6a1f;
}

.mp-role:hover .mp-role-icon-tech {
    background: var(--accent);
    color: var(--navy);
}

.mp-role-info {
    flex: 1;
    min-width: 0;
}

.mp-role-info strong {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1px;
}

.mp-role-info span {
    display: block;
    font-size: 0.74rem;
    color: var(--gray-600);
    line-height: 1.3;
}

/* Trust strip */
.mp-trust-strip {
    display: flex;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 56px;
}

.mp-trust-item {
    flex: 1;
    text-align: center;
    padding: 22px 16px;
    border-right: 1px solid var(--gray-200);
}

.mp-trust-item:last-child {
    border-right: none;
}

.mp-trust-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.mp-trust-item span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Final CTA panel */
.mp-cta-panel {
    text-align: center;
    padding: 48px 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-700) 100%);
    color: var(--white);
}

.mp-cta-panel h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.mp-cta-panel p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.mp-cta-panel .btn {
    margin-bottom: 14px;
}

.mp-cta-panel .mp-cta-note {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}


.security {
    padding: 0;
    background: #1a2d4a;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.security-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.security-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.security-card-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.security-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.5s ease;
}

.security-card:hover .security-card-image img {
    transform: scale(1.025);
}

.security-card h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: 20px 20px 8px;
}

.security-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    padding: 0 20px 20px;
    line-height: 1.5;
}

.security-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===== PRODUCT SUPPLY ===== */
.product-supply {
    padding: 0;
    background: #f7f9fb;
}

.supply-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.supply-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #dde4e8;
    border-top: 4px solid var(--supply-accent, #4faab3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(20, 45, 70, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.supply-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(20, 45, 70, 0.1);
}

.supply-card-housekeeping {
    --supply-accent: #4faab3;
    --supply-head: #eef7f6;
    --supply-icon-bg: #dbeeef;
}

.supply-card-healthcare {
    --supply-accent: #376a92;
    --supply-head: #eef4f8;
    --supply-icon-bg: #dce8f2;
}

.supply-card-corporate {
    --supply-accent: #b29153;
    --supply-head: #f7f4ec;
    --supply-icon-bg: #eee4d1;
}

.supply-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px;
    background: var(--supply-head, #eef6f7);
    border-bottom: 1px solid #dde7ea;
}

.supply-card-num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
}

.supply-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--supply-icon-bg, #dbeeef);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.supply-card-icon svg {
    color: var(--navy);
}

.supply-card-body {
    flex: 1;
    padding: 24px;
}

.supply-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.supply-card-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 18px;
}

.supply-list {
    display: flex;
    flex-direction: column;
}

.supply-list li {
    padding: 9px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    border-bottom: 1px solid #eef2f4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.supply-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-color: var(--supply-accent, #4faab3);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.supply-list li:last-child {
    border-bottom: none;
}

.supply-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid #eef2f4;
    background: #fbfcfd;
}

.supply-card-count {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-500);
}

.supply-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--supply-accent, #4faab3);
}

.supply-card-cta svg {
    transition: transform 0.25s ease;
}

.supply-card:hover .supply-card-cta svg {
    transform: translateX(3px);
}

.supply-trustline {
    margin-top: 32px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--gray-500);
}

/* ===== INDUSTRIES ===== */
.industries {
    padding: 0;
    background: var(--white);
}

.industries .container {
    width: 100%;
}

.industries-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.industries-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: industriesRun 32s linear infinite;
    will-change: transform;
}

.industries-marquee:hover .industries-track {
    animation-play-state: paused;
}

.industries-grid {
    display: flex;
    flex: 0 0 auto;
    gap: 20px;
}

.industry-card {
    min-width: 220px;
    max-width: 220px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition);
}

.industry-card:hover {
    background: var(--blue-50);
    border-color: var(--blue-200, #bfdbfe);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.industry-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all var(--transition);
}

.industry-card:hover .industry-icon {
    background: var(--blue-600);
    border-color: var(--blue-600);
}

.industry-icon svg {
    color: var(--blue-600);
    transition: all var(--transition);
}

.industry-card:hover .industry-icon svg {
    color: var(--white);
}

.industry-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

@keyframes industriesRun {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== WHY NRP ===== */
.why-nrp {
    padding: 0;
    background: var(--blue-50);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin: -8px 0 26px;
}

.why-meta span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--blue-700);
    background: #e8f6f7;
    border: 1px solid #c9e9ec;
    border-radius: 999px;
    padding: 8px 14px;
}

.why-card {
    background: var(--white);
    border-radius: 18px;
    padding: 32px 28px;
    border: 1px solid #dcebf1;
    box-shadow: 0 10px 28px rgba(26, 45, 74, 0.08);
    transition: all var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(26, 45, 74, 0.14);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon svg {
    color: var(--blue-600);
}

.why-card-pill {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #1f5b79;
    background: #e8f6f7;
    border: 1px solid #c8e6eb;
    border-radius: 999px;
    padding: 5px 10px;
}

.why-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.why-points {
    margin-top: 14px;
    display: grid;
    gap: 8px;
}

.why-points li {
    position: relative;
    padding-left: 18px;
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.45;
}

.why-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue-500);
}

/* ===== VISION & MISSION ===== */
.vision-mission {
    padding: 0;
    background: var(--blue-50);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.vm-panel {
    background: var(--white);
    border: 1px solid rgba(40, 83, 125, 0.16);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.vm-panel:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.vm-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.vm-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.55s ease;
}

.vm-panel:hover .vm-media img {
    transform: scale(1.06);
}

.vm-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 45, 74, 0) 45%, rgba(26, 45, 74, 0.45) 100%);
}

.vm-badge {
    display: inline-block;
    background: #edf7f8;
    color: var(--blue-900);
    border: 1px solid #cde9eb;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.vm-body {
    padding: clamp(28px, 3vw, 40px);
    border-top: 3px solid var(--blue-500);
}

.vm-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.vm-body p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.vm-focus-list {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vm-focus-list span {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--blue-900);
    background: #edf7f8;
    border: 1px solid #cde9eb;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mission-points li {
    position: relative;
    padding-left: 22px;
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 10px;
}

.mission-points li::before {
    content: '';
    width: 9px;
    height: 9px;
    background: var(--blue-500);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
}

.mission-points li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mission-points strong {
    color: var(--navy);
}

/* ===== COMMITMENT ===== */
.commitment {
    padding: 60px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(88, 183, 189, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(232, 200, 130, 0.12) 0%, transparent 45%),
        linear-gradient(135deg, #10233f 0%, #16335a 100%);
}

.commitment-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(95deg, #ffffff 0%, var(--blue-500) 55%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.25;
    margin-bottom: 14px;
}

.commitment-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
    padding: 0;
    background: var(--blue-50);
}

.clients-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.client-logo-large {
    background: var(--white);
    border: 1px solid #dcecf0;
    border-radius: 18px;
    padding: 24px;
    min-height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    transition: all var(--transition);
}

.client-logo-large:hover {
    border-color: #b8dde4;
    box-shadow: 0 16px 32px rgba(26, 45, 74, 0.12);
}

.client-logo-img-large {
    max-width: 220px;
    max-height: 68px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0.35);
    opacity: 0.95;
    transition: all var(--transition);
}

.client-logo-large:hover .client-logo-img-large {
    filter: grayscale(0);
    opacity: 1;
}

.client-logo-label-large {
    display: none;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-500);
}

.client-logo-large.is-icon-logo {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
}

.client-logo-large.is-icon-logo .client-logo-img-large {
    max-width: 30px;
    max-height: 30px;
    filter: none;
    opacity: 1;
}

.client-logo-large.is-icon-logo .client-logo-label-large {
    display: inline-flex;
    color: var(--gray-700);
    font-size: 1rem;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 60px 0;
    background: var(--navy);
}

.final-cta-content {
    text-align: center;
}

.final-cta-content h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 14px;
}

.final-cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.final-cta-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* ===== CONTACT ===== */
.contact {
    padding: 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    transition: all var(--transition);
}

.contact-card:hover {
    border-color: var(--blue-200, #bfdbfe);
    background: var(--blue-50);
}

.contact-card svg {
    color: var(--blue-600);
    flex-shrink: 0;
}

.contact-card div {
    display: flex;
    flex-direction: column;
}

.contact-card strong {
    font-size: 0.9rem;
    color: var(--navy);
}

.contact-card span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.whatsapp-cta {
    margin-top: 8px;
}

.contact-form-wrapper {
    background: var(--white);
    border: 1px solid #dcecf0;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 18px 40px rgba(26, 45, 74, 0.08);
}

.contact-form-head {
    margin-bottom: 22px;
}

.contact-form-head h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.contact-form-head p {
    font-size: 0.92rem;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.contact-form-points {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-form-points span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue-700);
    background: #e7f6f7;
    border: 1px solid #cde9ec;
    border-radius: 999px;
    padding: 7px 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: inherit;
    font-size: 0.9rem;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    background: var(--white);
    color: var(--gray-800);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(88, 183, 189, 0.18);
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.form-group.has-error label::after {
    content: 'Please check this field';
    display: block;
    margin-top: 2px;
    font-size: 0.76rem;
    font-weight: 500;
    color: #dc2626;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-assurance {
    text-align: center;
    font-size: 0.74rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    padding: clamp(40px, 5vw, 64px) 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: clamp(28px, 3.5vw, 44px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(40, 83, 125, 0.18);
    border-radius: 14px;
    padding: 8px 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
    line-height: 1.6;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 18px 0 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== WHATSAPP CHAT WIDGET ===== */
.wa-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.wa-fab {
    position: relative;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-fab:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.wa-fab-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    background: #ff3b30;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.wa-popup {
    width: 320px;
    max-width: calc(100vw - 44px);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    animation: waPopIn 0.25s ease;
    transform-origin: bottom right;
}

@keyframes waPopIn {
    from { opacity: 0; transform: translateY(12px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-popup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #075e54;
    color: #fff;
}

.wa-popup-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.wa-popup-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
}

.wa-popup-title {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    flex: 1;
}

.wa-popup-title strong {
    font-size: 0.95rem;
}

.wa-popup-title small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

.wa-popup-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 2px;
}

.wa-popup-body {
    padding: 20px 18px;
    background: #e5ddd5;
    background-image: linear-gradient(rgba(229, 221, 213, 0.9), rgba(229, 221, 213, 0.9));
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wa-msg {
    background: #fff;
    padding: 10px 14px;
    border-radius: 0 12px 12px 12px;
    font-size: 0.9rem;
    color: var(--gray-800);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    max-width: 90%;
}

.wa-popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    transition: background 0.2s ease;
}

.wa-popup-cta:hover {
    background: #1da851;
}

@media (max-width: 480px) {
    .wa-widget {
        right: 16px;
        bottom: 16px;
    }

    .wa-fab {
        width: 54px;
        height: 54px;
    }
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-animations .fade-up {
    opacity: 0;
    transform: translateY(24px);
}

.js-animations .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

body.viewport-scroll .fade-up,
body.viewport-scroll .js-animations .fade-up,
body.viewport-scroll .js-animations .fade-up.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .fade-up,
    .js-animations .fade-up,
    .mp-step,
    .mp-role,
    .mp-role-icon,
    .btn {
        transition: none !important;
        transform: none !important;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1366px) {
    :root {
        --nav-offset: 84px;
    }

    .hero {
        padding: 128px 0 72px;
    }

    .hero-inner {
        gap: 48px;
    }

    .services-grid {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .section-header h2 {
        white-space: normal;
    }

    .navbar {
        top: 0;
    }

    .navbar-inner {
        padding: 0 14px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        max-width: 560px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .supply-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mp-intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mp-intro-visual {
        max-height: 360px;
        order: -1;
    }

    .mp-intro-visual img {
        max-height: 360px;
    }

    .mp-cat,
    .mp-cat-reverse {
        grid-template-columns: 1fr;
    }

    .mp-cat-reverse .mp-cat-visual {
        order: 0;
    }

    .mp-cat-reverse .mp-cat-content {
        order: 0;
    }

    .industries-grid {
        gap: 16px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 92px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        border-radius: 14px;
        flex-direction: column;
        padding: 16px 24px;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(40, 83, 125, 0.12);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    body.viewport-scroll .footer {
        min-height: auto;
        height: auto;
        display: block;
        scroll-snap-align: none;
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 0;
    }

    .navbar-inner {
        height: 80px;
    }

    .logo-img {
        height: 64px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        text-align: center;
        justify-content: center;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 8px;
    }

    .hero-kpi-strip {
        grid-template-columns: 1fr;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image img {
        height: 300px;
    }

    .about-image-accent {
        display: none;
    }

    .about-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .supply-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .industries-track {
        animation: none;
        display: block;
        width: 100%;
    }

    .industries-track .industries-grid + .industries-grid {
        display: none;
    }

    .industry-card {
        min-width: 0;
        max-width: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-meta {
        justify-content: flex-start;
        margin-top: 0;
    }

    .why-card {
        padding: 26px 22px;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .clients-wall {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .mp-step-connector {
        display: none;
    }

    .mp-roles {
        grid-template-columns: 1fr;
    }

    .mp-trust-strip {
        flex-wrap: wrap;
    }

    .mp-trust-item {
        flex: 1 1 50%;
        border-bottom: 1px solid var(--gray-200);
    }

    .mp-trust-item:nth-child(2) {
        border-right: none;
    }

    .floating-card {
        bottom: auto;
        top: -10px;
        left: auto;
        right: -10px;
    }

    .hero-live-tag {
        right: 0;
        top: -16px;
    }
}

@media (max-width: 600px) {
    .about-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .supply-grid {
        grid-template-columns: 1fr;
    }

    .mp-trust-item {
        flex: 1 1 100%;
    }

    .footer-top {
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .navbar {
        top: 0;
        padding: 0;
    }

    .navbar-inner {
        height: 72px;
        padding: 0 12px;
    }

    .logo-img {
        height: 56px;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 48px;
    }

    .hero-heading {
        font-size: 1.7rem;
    }

    .hero-live-tag {
        position: static;
        margin-top: 12px;
        width: fit-content;
    }

    .hero-image-grid {
        grid-template-columns: 1fr;
    }

    .hero-img-1 {
        height: 200px;
    }

    .hero-img-2,
    .hero-img-3 {
        display: none;
    }

    .about,
    .services,
    .manpower,
    .security,
    .product-supply,
    .industries,
    .why-nrp,
    .vision-mission,
    .commitment,
    .clients-section,
    .contact {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        background: none;
        color: var(--navy);
        -webkit-text-fill-color: var(--navy);
    }

    .industries-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-meta span {
        font-size: 0.7rem;
        padding: 7px 10px;
    }

    .clients-wall {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .service-card-image {
        aspect-ratio: 4 / 5;
    }

    .mp-cat-content {
        padding: 24px 20px;
    }

    .mp-cta-panel {
        padding: 36px 22px;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-heading {
        font-size: 1.5rem;
    }

    .logo-img {
        height: 50px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .about-metrics {
        grid-template-columns: 1fr;
    }

    .btn,
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}
