/* =========================================================
   PKL Logistics Home Page
   Responsive redesign inspired by PKL dashboard identity
========================================================= */

:root {
    --pkl-bg: #06131f;
    --pkl-bg-2: #081d2e;
    --pkl-card: rgba(7, 25, 41, 0.92);
    --pkl-card-2: rgba(8, 39, 60, 0.86);
    --pkl-cyan: #00c3ff;
    --pkl-cyan-2: #55dcff;
    --pkl-white: #ffffff;
    --pkl-text: #eaf7ff;
    --pkl-muted: #8ea8b9;
    --pkl-line: rgba(0, 195, 255, 0.18);
    --pkl-line-strong: rgba(0, 195, 255, 0.42);
    --pkl-radius: 28px;
    --pkl-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
    --pkl-container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.pkl-home {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(0, 195, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 195, 255, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 14% 7%, rgba(0, 195, 255, 0.18), transparent 32%),
        linear-gradient(135deg, #06131f 0%, #071827 48%, #04101b 100%);
    background-size: 44px 44px, 44px 44px, auto, auto;
    color: var(--pkl-text);
}

.pkl-home a {
    text-decoration: none;
}

.pkl-home-container {
    width: min(var(--pkl-container), calc(100% - 48px));
    margin-inline: auto;
}

/* Hero */
.pkl-hero {
    position: relative;
    min-height: clamp(720px, 100vh, 980px);
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    padding: 120px 0 88px;
}

.pkl-hero__media {
    position: absolute;
    inset: 0;
    z-index: -3;
    overflow: hidden;
    background: #06131f;
}

.pkl-hero__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.pkl-video-lock__layer {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: transparent;
}

.pkl-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    /* Light transparent overlay: keeps text readable while showing the video clearly */
    background:
        linear-gradient(90deg, rgba(4, 16, 27, 0.66), rgba(4, 16, 27, 0.22) 52%, rgba(4, 16, 27, 0.36)),
        radial-gradient(circle at 70% 24%, rgba(0, 195, 255, 0.10), transparent 32%),
        linear-gradient(180deg, rgba(6, 19, 31, 0.08), rgba(6, 19, 31, 0.36));
}

.pkl-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--pkl-cyan), transparent);
    opacity: 0.9;
}

.pkl-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 0;
}

.pkl-hero__content {
    max-width: 980px;
    padding: clamp(22px, 3vw, 38px);
    border-radius: 28px;
    background: linear-gradient(90deg, rgba(3, 13, 22, 0.34), rgba(3, 13, 22, 0.12), transparent);
    backdrop-filter: blur(1px);
}

.pkl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    color: var(--pkl-cyan);
    font-size: 12px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

.pkl-eyebrow::after {
    content: "";
    width: 58px;
    height: 2px;
    border-radius: 999px;
    background: var(--pkl-cyan);
    box-shadow: 0 0 16px rgba(0, 195, 255, 0.75);
}

.pkl-hero__title,
.pkl-section-head h2,
.pkl-split__content h2,
.pkl-warehouse-card h2,
.pkl-counter-head h2,
.pkl-map-cta h2 {
    margin: 0;
    color: var(--pkl-white);
    font-weight: 950;
    letter-spacing: -0.055em;
}

.pkl-hero__title {
    font-size: clamp(46px, 7.3vw, 112px);
    line-height: 0.92;
    max-width: 940px;
    text-shadow: 0 18px 46px rgba(0, 0, 0, 0.56);
}

.pkl-hero__description {
    margin: 24px 0 0;
    max-width: 720px;
    color: #c2d7e4;
    font-size: clamp(15px, 1.2vw, 19px);
    line-height: 1.95;
    font-weight: 650;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.50);
}

.pkl-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.pkl-btn {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 950;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.pkl-btn--primary {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 22%),
        linear-gradient(135deg, #00c3ff, #21d7ff);
    color: #03111c;
    box-shadow: 0 18px 40px rgba(0, 195, 255, 0.26);
}

.pkl-btn--ghost {
    border: 1px solid rgba(0, 195, 255, 0.32);
    color: var(--pkl-text);
    background: rgba(7, 29, 47, 0.66);
    backdrop-filter: blur(14px);
}

.pkl-btn:hover {
    transform: translateY(-2px);
}

.pkl-btn--primary:hover {
    color: #03111c;
    box-shadow: 0 24px 52px rgba(0, 195, 255, 0.35);
}

.pkl-btn--ghost:hover {
    color: var(--pkl-cyan-2);
    border-color: rgba(0, 195, 255, 0.62);
    box-shadow: 0 18px 42px rgba(0, 195, 255, 0.12);
}

.pkl-hero-card {
    border: 1px solid var(--pkl-line);
    border-radius: var(--pkl-radius);
    background:
        radial-gradient(circle at 85% 10%, rgba(0, 195, 255, 0.16), transparent 32%),
        linear-gradient(145deg, rgba(8, 30, 48, 0.88), rgba(4, 16, 27, 0.9));
    box-shadow: var(--pkl-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.055);
    padding: 24px;
    backdrop-filter: blur(18px);
}

.pkl-hero-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--pkl-line);
}

.pkl-hero-card__top span {
    color: var(--pkl-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.pkl-hero-card__top strong {
    color: #fff;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 950;
    text-align: right;
}

.pkl-hero-card__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pkl-stat-card {
    min-height: 124px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(0, 195, 255, 0.18);
    background:
        radial-gradient(circle at 88% 22%, rgba(0, 195, 255, 0.14), transparent 34%),
        linear-gradient(145deg, rgba(9, 31, 50, 0.96), rgba(5, 19, 32, 0.96));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.pkl-stat-card strong {
    display: block;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    font-weight: 950;
}

.pkl-stat-card span:not(.pkl-stat-card__ring) {
    display: block;
    margin-top: 8px;
    color: var(--pkl-muted);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 780;
}

.pkl-stat-card__ring {
    position: relative;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 50%;
    background: conic-gradient(from 30deg, var(--pkl-cyan) 0 282deg, rgba(0, 195, 255, 0.13) 282deg 360deg);
    box-shadow: 0 0 24px rgba(0, 195, 255, 0.18);
}

.pkl-stat-card__ring::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: #071827;
    box-shadow: inset 0 0 0 1px rgba(0, 195, 255, 0.16);
}

/* Sections */
.pkl-section {
    position: relative;
    padding: 110px 0;
}

.pkl-section--light {
    background:
        linear-gradient(rgba(0, 195, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 195, 255, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, #00bbe9 0%, #00aeda 100%);
    background-size: 44px 44px, 44px 44px, auto;
    color: #04131f;
}

.pkl-section--light .pkl-eyebrow {
    color: #d8f8ff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.pkl-section--light .pkl-eyebrow::after {
    background: #fff;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.75);
}

.pkl-section-head {
    max-width: 760px;
    margin-bottom: 42px;
}

.pkl-section-head--center {
    margin-inline: auto;
    text-align: center;
}

.pkl-section-head--center .pkl-eyebrow {
    justify-content: center;
}

.pkl-section-head h2,
.pkl-split__content h2,
.pkl-warehouse-card h2,
.pkl-counter-head h2,
.pkl-map-cta h2 {
    font-size: clamp(34px, 4.7vw, 64px);
    line-height: 0.98;
}

.pkl-section-head p,
.pkl-split__content p,
.pkl-warehouse-card p,
.pkl-map-cta p {
    margin: 18px 0 0;
    color: #c0d5e2;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 550;
}

.pkl-section--light .pkl-section-head h2,
.pkl-section--light .pkl-section-head p {
    color: #fff;
}

.pkl-section--light .pkl-section-head p {
    opacity: 0.9;
}

/* Service Cards */
.pkl-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.pkl-service-card {
    min-height: 310px;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background:
        radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.22), transparent 34%),
        linear-gradient(145deg, rgba(7, 30, 48, 0.94), rgba(4, 16, 27, 0.96));
    color: #fff;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pkl-service-card:hover {
    transform: translateY(-8px);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.48);
    box-shadow: 0 34px 75px rgba(0, 0, 0, 0.28);
}

.pkl-service-card__number {
    color: var(--pkl-cyan);
    font-size: 13px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0.26em;
}

.pkl-service-card h3 {
    margin: 28px 0 0;
    color: #fff;
    font-size: 25px;
    line-height: 1.12;
    font-weight: 950;
}

.pkl-service-card p {
    margin: 16px 0 0;
    color: #b9cbd7;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 550;
}

.pkl-service-card__link {
    margin-top: auto;
    color: var(--pkl-cyan-2);
    font-size: 13px;
    font-weight: 950;
}

/* Split */
.pkl-split {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 42px;
    align-items: center;
}

.pkl-split__image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--pkl-line);
    box-shadow: var(--pkl-shadow);
    min-height: 520px;
}

.pkl-split__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 46%, rgba(4, 16, 27, 0.62));
}

.pkl-split__image img,
.pkl-warehouse-card__image img,
.pkl-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pkl-split__content {
    border: 1px solid var(--pkl-line);
    border-radius: 32px;
    padding: clamp(28px, 4vw, 54px);
    background:
        radial-gradient(circle at 88% 12%, rgba(0, 195, 255, 0.13), transparent 36%),
        linear-gradient(145deg, rgba(9, 30, 48, 0.96), rgba(4, 16, 27, 0.98));
    box-shadow: var(--pkl-shadow);
}

.pkl-feature-list {
    display: grid;
    gap: 14px;
    margin: 28px 0;
}

.pkl-feature-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(0, 195, 255, 0.15);
    background: rgba(0, 195, 255, 0.06);
}

.pkl-feature-item > span {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: conic-gradient(from 30deg, var(--pkl-cyan) 0 282deg, rgba(0, 195, 255, 0.13) 282deg 360deg);
}

.pkl-feature-item > span::after {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    background: #071827;
}

.pkl-feature-item strong {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 950;
}

.pkl-feature-item p {
    margin: 6px 0 0;
    color: #9fb7c6;
    font-size: 13px;
    line-height: 1.65;
}

/* Warehouse Highlight */
.pkl-warehouse-highlight {
    padding-top: 0;
}

.pkl-warehouse-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
    align-items: stretch;
    border-radius: 34px;
    border: 1px solid var(--pkl-line);
    background:
        radial-gradient(circle at 86% 18%, rgba(0, 195, 255, 0.14), transparent 34%),
        linear-gradient(145deg, rgba(9, 30, 48, 0.96), rgba(4, 16, 27, 0.98));
    box-shadow: var(--pkl-shadow);
    padding: 24px;
}

.pkl-warehouse-card__content {
    padding: clamp(24px, 4vw, 44px);
}

.pkl-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.pkl-pill-row span {
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 195, 255, 0.22);
    background: rgba(0, 195, 255, 0.08);
    color: #dff7ff;
    font-size: 12px;
    font-weight: 850;
}

.pkl-warehouse-card__image {
    min-height: 470px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(0, 195, 255, 0.20);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

/* Gallery Slider */
.pkl-gallery-slider {
    --pkl-gallery-gap: 22px;
    position: relative;
    margin-top: 12px;
}

.pkl-gallery-slider__viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 34px;
}

.pkl-gallery-slider__track {
    display: flex;
    gap: var(--pkl-gallery-gap);
    will-change: transform;
    transition: transform 950ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pkl-gallery-card {
    position: relative;
    flex: 0 0 calc((100% - (var(--pkl-gallery-gap) * 3)) / 4);
    min-height: clamp(310px, 28vw, 430px);
    margin: 0;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
    background: #06131f;
    isolation: isolate;
}

.pkl-gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(4, 16, 27, 0.46), transparent 34%, rgba(4, 16, 27, 0.88)),
        radial-gradient(circle at 86% 14%, rgba(0, 195, 255, 0.18), transparent 28%);
    pointer-events: none;
}

.pkl-gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 1.2s ease, filter 1.2s ease;
}

.pkl-gallery-card:hover img {
    transform: scale(1.075);
    filter: saturate(1.06) contrast(1.04);
}

.pkl-gallery-card__tabs {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    pointer-events: auto;
}

.pkl-gallery-card__tab {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 195, 255, 0.34);
    background: rgba(4, 16, 27, 0.76);
    color: #eaf8ff;
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.20);
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pkl-gallery-card__tab--zone {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.26), transparent 28%),
        linear-gradient(135deg, rgba(0, 195, 255, 0.96), rgba(33, 215, 255, 0.92));
    color: #03111c;
    border-color: rgba(255, 255, 255, 0.22);
}

.pkl-gallery-card__tab--details {
    color: #00c3ff;
    text-decoration: none;
    transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.pkl-gallery-card__tab--details:hover {
    color: #03111c;
    border-color: rgba(255, 255, 255, 0.24);
    background: #00c3ff;
    transform: translateY(-2px);
}

.pkl-gallery-card__caption {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 18px;
    min-height: 68px;
    padding: 14px 18px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    color: #fff;
    background: rgba(4, 16, 27, 0.78);
    border: 1px solid rgba(0, 195, 255, 0.24);
    backdrop-filter: blur(14px);
}

.pkl-gallery-card__caption strong {
    font-size: clamp(16px, 1.35vw, 22px);
    line-height: 1.1;
    font-weight: 950;
}

.pkl-gallery-card__caption span {
    color: rgba(221, 241, 250, 0.72);
    font-size: 12px;
    font-weight: 750;
}

.pkl-gallery-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
}

.pkl-gallery-slider__btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(0, 195, 255, 0.35);
    color: #00c3ff;
    background:
        radial-gradient(circle at 70% 18%, rgba(0, 195, 255, 0.22), transparent 32%),
        rgba(4, 16, 27, 0.84);
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.pkl-gallery-slider__btn:hover {
    transform: translateY(-2px);
    color: #03111c;
    background: #00c3ff;
    box-shadow: 0 16px 34px rgba(0, 195, 255, 0.22);
}

.pkl-gallery-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pkl-gallery-slider__dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(0, 195, 255, 0.30);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.pkl-gallery-slider__dot.is-active {
    width: 28px;
    background: #00c3ff;
}


/* Counter Up Area */
.pkl-counter-area {
    padding-top: 0;
}

.pkl-counter-shell {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    border: 1px solid var(--pkl-line);
    background:
        linear-gradient(rgba(0, 195, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 195, 255, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 88% 12%, rgba(0, 195, 255, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(9, 30, 48, 0.98), rgba(4, 16, 27, 0.98));
    background-size: 44px 44px, 44px 44px, auto, auto;
    box-shadow: var(--pkl-shadow);
    padding: clamp(24px, 4vw, 46px);
}

.pkl-counter-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 88%, rgba(0, 195, 255, 0.18), transparent 24%),
        linear-gradient(90deg, transparent, rgba(0, 195, 255, 0.10), transparent);
    opacity: 0.75;
}

.pkl-counter-head {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-bottom: 28px;
}

.pkl-counter-head h2 {
    font-size: clamp(34px, 4.2vw, 62px);
    line-height: 1.02;
}

.pkl-counter-head p {
    margin: 16px 0 0;
    color: #a9c0cf;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 600;
}

.pkl-counter-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.pkl-counter-card {
    min-height: 190px;
    padding: 22px;
    border-radius: 28px;
    border: 1px solid rgba(0, 195, 255, 0.20);
    background:
        radial-gradient(circle at 86% 18%, rgba(0, 195, 255, 0.16), transparent 34%),
        linear-gradient(145deg, rgba(10, 34, 53, 0.92), rgba(5, 19, 32, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045),
        0 18px 42px rgba(0, 0, 0, 0.20);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.pkl-counter-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 195, 255, 0.50);
    box-shadow:
        0 22px 48px rgba(0, 195, 255, 0.13),
        0 20px 48px rgba(0, 0, 0, 0.28);
}

.pkl-counter-card__icon {
    position: relative;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(0, 195, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(0, 195, 255, 0.12);
}

.pkl-counter-card__icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        conic-gradient(
            from 35deg,
            var(--pkl-cyan) 0deg,
            var(--pkl-cyan) 278deg,
            rgba(0, 195, 255, 0.13) 278deg,
            rgba(0, 195, 255, 0.13) 360deg
        );
    filter: drop-shadow(0 0 12px rgba(0, 195, 255, 0.28));
}

.pkl-counter-card__icon::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: #071827;
}

.pkl-counter-card__icon span {
    position: relative;
    z-index: 2;
    width: 24px;
    height: 24px;
    border: 2px solid var(--pkl-cyan);
    border-radius: 8px;
    box-shadow: 0 0 18px rgba(0, 195, 255, 0.42);
}

.pkl-counter-card__icon--shipments span {
    border-radius: 4px;
}

.pkl-counter-card__icon--countries span {
    border-radius: 50%;
}

.pkl-counter-card__icon--employees span {
    width: 26px;
    height: 18px;
    border-radius: 999px 999px 8px 8px;
}

.pkl-counter-card__icon--vehicles span {
    width: 30px;
    height: 18px;
    border-radius: 8px;
}

.pkl-counter-card__content strong {
    display: block;
    color: #fff;
    font-size: clamp(34px, 3.2vw, 52px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.045em;
}

.pkl-counter-card__content p {
    margin: 10px 0 0;
    color: #9eb5c5;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 800;
}

/* Our Partners */
.pkl-partners-section {
    padding-top: 0;
    overflow: hidden;
}

.pkl-partners-marquee {
    --pkl-partner-gap: 18px;
    margin-top: 4px;
    overflow: hidden;
}

.pkl-partners-marquee__viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0 16px;
}

.pkl-partners-marquee__viewport::before,
.pkl-partners-marquee__viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(140px, 12vw);
    z-index: 2;
    pointer-events: none;
}

.pkl-partners-marquee__viewport::before {
    left: 0;
    background: linear-gradient(90deg, #06131f, transparent);
}

.pkl-partners-marquee__viewport::after {
    right: 0;
    background: linear-gradient(270deg, #06131f, transparent);
}

.pkl-partners-marquee__track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: var(--pkl-partner-gap);
    animation: pklPartnersMove 38s linear infinite;
    will-change: transform;
}

.pkl-partners-marquee:hover .pkl-partners-marquee__track {
    animation-play-state: paused;
}

.pkl-partner-card {
    flex: 0 0 auto;
    width: clamp(150px, 14vw, 220px);
    height: clamp(92px, 8vw, 128px);
    border-radius: 24px;
    border: 1px solid rgba(0, 195, 255, 0.20);
    background:
        radial-gradient(circle at 88% 16%, rgba(0, 195, 255, 0.13), transparent 34%),
        linear-gradient(145deg, rgba(10, 32, 50, 0.94), rgba(5, 18, 31, 0.96));
    display: grid;
    place-items: center;
    padding: 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pkl-partner-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 195, 255, 0.52);
    box-shadow: 0 24px 52px rgba(0, 195, 255, 0.12);
}

.pkl-partner-card img {
    max-width: 100%;
    max-height: 72px;
    display: block;
    object-fit: contain;
    filter: saturate(0.88) brightness(1.18);
    opacity: 0.92;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.pkl-partner-card:hover img {
    filter: saturate(1.06) brightness(1.28);
    opacity: 1;
    transform: scale(1.04);
}

@keyframes pklPartnersMove {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-50% - (var(--pkl-partner-gap) / 2)), 0, 0);
    }
}

/* Map CTA */
.pkl-map-cta {
    padding-top: 0;
}

.pkl-map-cta__box {
    min-height: 360px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    border-radius: 34px;
    border: 1px solid var(--pkl-line);
    padding: clamp(28px, 5vw, 64px);
    background:
        linear-gradient(rgba(0, 195, 255, 0.038) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 195, 255, 0.038) 1px, transparent 1px),
        radial-gradient(circle at 88% 16%, rgba(0, 195, 255, 0.18), transparent 32%),
        linear-gradient(145deg, rgba(9, 30, 48, 0.98), rgba(4, 16, 27, 0.98));
    background-size: 44px 44px, 44px 44px, auto, auto;
    box-shadow: var(--pkl-shadow);
}

/* Responsive */
@media (max-width: 1200px) {
    .pkl-counter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .pkl-gallery-card {
        flex-basis: calc((100% - var(--pkl-gallery-gap)) / 2);
    }

    .pkl-hero__grid {
        grid-template-columns: 1fr;
    }

    .pkl-hero-card {
        max-width: 720px;
    }
}

@media (max-width: 992px) {
    .pkl-home-container {
        width: min(100% - 32px, var(--pkl-container));
    }

    .pkl-hero {
        min-height: auto;
        padding: 118px 0 70px;
    }

    .pkl-hero__overlay {
        background:
            linear-gradient(180deg, rgba(4, 16, 27, 0.54), rgba(4, 16, 27, 0.50)),
            radial-gradient(circle at 65% 15%, rgba(0, 195, 255, 0.12), transparent 30%);
    }

    .pkl-split,
    .pkl-warehouse-card,
    .pkl-map-cta__box {
        grid-template-columns: 1fr;
    }

    .pkl-split__image,
    .pkl-warehouse-card__image {
        min-height: 420px;
    }

    .pkl-map-cta__box .pkl-btn {
        justify-self: start;
    }
}

@media (max-width: 640px) {
    .pkl-counter-grid {
        grid-template-columns: 1fr;
    }

    .pkl-counter-shell {
        border-radius: 22px;
        padding: 20px 14px;
    }

    .pkl-counter-card {
        min-height: 158px;
        border-radius: 22px;
    }

    .pkl-counter-card__content strong {
        font-size: 38px;
    }

    .pkl-partner-card {
        width: 150px;
        height: 92px;
        border-radius: 20px;
        padding: 14px;
    }

    .pkl-home-container {
        width: min(100% - 24px, var(--pkl-container));
    }

    .pkl-hero {
        padding: 100px 0 50px;
    }

    .pkl-hero__title {
        font-size: 46px;
    }

    .pkl-hero__description,
    .pkl-section-head p,
    .pkl-split__content p,
    .pkl-warehouse-card p,
    .pkl-map-cta p {
        font-size: 14px;
        line-height: 1.85;
    }

    .pkl-eyebrow {
        font-size: 10px;
        letter-spacing: 0.28em;
    }

    .pkl-eyebrow::after {
        width: 38px;
    }

    .pkl-hero-card,
    .pkl-split__content,
    .pkl-warehouse-card,
    .pkl-map-cta__box {
        border-radius: 22px;
    }

    .pkl-hero-card__stats,
    .pkl-service-grid {
        grid-template-columns: 1fr;
    }

    .pkl-gallery-card {
        flex-basis: 100%;
    }

    .pkl-stat-card {
        min-height: 102px;
    }

    .pkl-section {
        padding: 72px 0;
    }

    .pkl-service-card {
        min-height: 250px;
        border-radius: 22px;
        padding: 24px;
    }

    .pkl-split__image,
    .pkl-warehouse-card__image {
        min-height: 280px;
        border-radius: 22px;
    }

    .pkl-gallery-slider__viewport {
        border-radius: 22px;
    }

    .pkl-gallery-card {
        min-height: 320px;
        border-radius: 22px;
    }

    .pkl-gallery-card__tabs {
        top: 14px;
        left: 14px;
        right: 14px;
    }

    .pkl-gallery-card__tab {
        min-height: 34px;
        padding: 0 11px;
        font-size: 10px;
    }

    .pkl-gallery-card__caption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        min-height: 62px;
        border-radius: 18px;
    }

    .pkl-warehouse-card {
        padding: 14px;
    }

    .pkl-warehouse-card__content {
        padding: 16px;
    }

    .pkl-hero__actions,
    .pkl-pill-row {
        width: 100%;
    }

    .pkl-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pkl-hero__video {
        animation: none;
    }

    .pkl-btn,
    .pkl-service-card,
    .pkl-counter-card,
    .pkl-gallery-slider__track,
    .pkl-gallery-card img,
    .pkl-partners-marquee__track,
    .pkl-partner-card img {
        transition: none;
    }

    .pkl-partners-marquee__track {
        animation: none;
        transform: none;
    }
}


/* =========================================================
   PKL Hero Clean Update
   Removes right control-panel card and makes the video clearer.
========================================================= */
.pkl-hero-card {
    display: none !important;
}

@media (max-width: 640px) {
    .pkl-hero__content {
        padding: 18px 0;
        background: transparent;
        backdrop-filter: none;
    }
}


/* =========================================================
   FIX: Counter video must be background, not separate block
========================================================= */

.pkl-counter-area {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    min-height: 720px !important;
    padding: clamp(90px, 8vw, 135px) 0 !important;
    background: #041320 !important;
}

/* يجعل الفيديو خلفية داخل القسم فقط */
.pkl-counter-video-bg {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    pointer-events: none !important;
    user-select: none !important;
    background: #041320 !important;
}

/* الفيديو يملأ القسم بالكامل */
.pkl-counter-bg-video {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: 1 !important;
    filter: saturate(1.08) contrast(1.05) brightness(0.96) !important;
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
}

/* طبقة خفيفة فقط فوق الفيديو حتى النص يظهر */
.pkl-counter-video-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
    background:
        linear-gradient(
            90deg,
            rgba(4, 16, 27, 0.34),
            rgba(4, 16, 27, 0.12) 45%,
            rgba(4, 16, 27, 0.30)
        ),
        linear-gradient(
            180deg,
            rgba(4, 16, 27, 0.16),
            rgba(4, 16, 27, 0.28)
        ) !important;
}

/* شبكة خفيفة جدًا فوق الفيديو */
.pkl-counter-area::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
    background:
        linear-gradient(rgba(0, 195, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 195, 255, 0.025) 1px, transparent 1px) !important;
    background-size: 58px 58px !important;
    opacity: 0.45 !important;
}

/* محتوى العدادات فوق الفيديو */
.pkl-counter-area .pkl-home-container {
    position: relative !important;
    z-index: 3 !important;
}

/* الصندوق الكبير شفاف أكثر */
.pkl-counter-shell {
    position: relative !important;
    z-index: 4 !important;
    overflow: hidden !important;
    border-radius: 36px !important;
    border: 1px solid rgba(0, 195, 255, 0.22) !important;
    background: rgba(4, 18, 31, 0.10) !important;
    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(1.5px) !important;
    -webkit-backdrop-filter: blur(1.5px) !important;
    padding: clamp(28px, 4vw, 54px) !important;
}

/* الخط السماوي العلوي فقط */
.pkl-counter-shell::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    right: 38px !important;
    left: 38px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, transparent, #00c3ff, transparent) !important;
    opacity: 0.85 !important;
    pointer-events: none !important;
}

/* كروت العدادات شفافة لكن واضحة */
.pkl-counter-card {
    position: relative !important;
    z-index: 5 !important;
    background: rgba(5, 20, 34, 0.16) !important;
    border: 1px solid rgba(0, 195, 255, 0.24) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 30px rgba(0, 0, 0, 0.14) !important;
    backdrop-filter: blur(2px) !important;
    -webkit-backdrop-filter: blur(2px) !important;
}

/* وضوح النصوص فوق الفيديو */
.pkl-counter-head h2,
.pkl-counter-head p,
.pkl-counter-card__content strong,
.pkl-counter-card__content p {
    text-shadow:
        0 8px 24px rgba(0, 0, 0, 0.55),
        0 0 16px rgba(0, 0, 0, 0.22) !important;
}

.pkl-counter-head p {
    color: rgba(236, 246, 255, 0.94) !important;
}

.pkl-counter-card__content p {
    color: rgba(232, 243, 250, 0.92) !important;
}

/* الجوال */
@media (max-width: 768px) {
    .pkl-counter-area {
        min-height: auto !important;
        padding: 68px 0 !important;
    }

    .pkl-counter-video-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(4, 16, 27, 0.42),
                rgba(4, 16, 27, 0.18),
                rgba(4, 16, 27, 0.46)
            ) !important;
    }

    .pkl-counter-shell {
        border-radius: 26px !important;
        padding: 24px 18px !important;
        background: rgba(4, 18, 31, 0.14) !important;
    }

    .pkl-counter-card {
        background: rgba(5, 20, 34, 0.18) !important;
    }
}


/* =========================================================
   FIX: Hero Video Background
========================================================= */

.pkl-hero {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    background: #06131f !important;
}

.pkl-hero__media {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    background: #06131f !important;
}

.pkl-hero__video {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: scale(1.02) !important;
    opacity: 1 !important;
    filter: saturate(1.05) contrast(1.04) brightness(0.92) !important;
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
}

.pkl-hero__overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
    background:
        linear-gradient(
            90deg,
            rgba(4, 16, 27, 0.64),
            rgba(4, 16, 27, 0.28) 52%,
            rgba(4, 16, 27, 0.44)
        ),
        linear-gradient(
            180deg,
            rgba(4, 16, 27, 0.12),
            rgba(4, 16, 27, 0.48)
        ) !important;
}

.pkl-hero .pkl-home-container {
    position: relative !important;
    z-index: 2 !important;
}

.pkl-hero__content {
    position: relative !important;
    z-index: 3 !important;
}

.pkl-video-lock__layer {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    background: transparent !important;
    pointer-events: auto !important;
}

@media (max-width: 768px) {
    .pkl-hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(4, 16, 27, 0.62),
                rgba(4, 16, 27, 0.42),
                rgba(4, 16, 27, 0.70)
            ) !important;
    }
}