@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
    --km-bg: #f5f5f7;
    --km-white: #ffffff;
    --km-text: #111827;
    --km-muted: #667085;
    --km-soft: #f2f4f7;
    --km-border: rgba(17, 24, 39, 0.08);
    --km-primary: #111827;
    --km-accent: #ff7a00;
    --km-radius-lg: 28px;
    --km-radius-md: 20px;
    --km-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    --km-shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.km-site {
    background: var(--km-bg);
    color: var(--km-text);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

.km-site *,
.km-site *::before,
.km-site *::after {
    box-sizing: border-box;
}

.km-site img {
    max-width: 100%;
    height: auto;
}

.km-site h1,
.km-site h2,
.km-site h3,
.km-site p {
    margin-top: 0;
}

.km-site h1,
.km-site .km-hero-title,
.km-site .km-hero-title span {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em !important;
}

.km-site h2,
.km-site .km-section-head h2,
.km-site .km-feature-band h2,
.km-site .km-app-panel h2,
.km-site .km-courier-cta-panel h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem) !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: -0.025em !important;
}

.km-site h3 {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem) !important;
    line-height: 1.4 !important;
    font-weight: 800 !important;
}

.km-site p,
.km-site li,
.km-site span,
.km-site strong {
    font-size: 14px !important;
    line-height: 1.75 !important;
}

.km-home-hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(255, 122, 0, 0.14) 0%, transparent 40%),
        radial-gradient(ellipse at 100% 80%, rgba(79, 55, 138, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f8f8fb 100%);
}

.km-home-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: km-orb-float 8s ease-in-out infinite;
}

.km-home-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 55, 138, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: km-orb-float 10s ease-in-out infinite reverse;
}

@keyframes km-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 20px) scale(0.98); }
}

.km-eyebrow,
.km-section-kicker,
.km-panel-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 11px;
    border: 1px solid var(--km-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--km-accent);
    font-size: 11px !important;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.km-hero-title {
    max-width: 720px;
    margin: 0;
    color: var(--km-text);
}

.km-hero-title span,
.km-section-head h2 span,
.km-feature-band h2 span,
.km-app-panel h2 span {
    display: block;
    margin-top: 6px;
    color: var(--km-accent);
}

.km-hero-copy {
    max-width: 640px;
    margin: 20px 0 0;
    color: var(--km-muted);
    font-size: 15px !important;
    line-height: 1.75 !important;
}

.km-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.km-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 26px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 14px !important;
    font-weight: 800;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.km-btn:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.km-btn:active {
    transform: translateY(-1px);
}

.km-btn-primary {
    background: linear-gradient(135deg, #1a2332 0%, #111827 100%);
    color: #ffffff;
    box-shadow: 0 14px 36px rgba(17, 24, 39, 0.22), 0 0 0 1px rgba(255,255,255,0.05) inset;
}

.km-btn-primary:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #ff7a00 0%, #e56a00 100%);
    box-shadow: 0 18px 40px rgba(255, 122, 0, 0.35);
}

.km-btn-soft,
.km-btn-light {
    background: #ffffff;
    color: var(--km-text);
    border-color: var(--km-border);
    box-shadow: 0 4px 14px rgba(17, 24, 39, 0.06);
}

.km-btn-soft:hover,
.km-btn-light:hover {
    color: var(--km-text);
    border-color: rgba(255, 122, 0, 0.4);
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.12);
}

.km-proof-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
    max-width: 650px;
}

.km-proof-row > div {
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--km-border);
    box-shadow: var(--km-shadow-soft);
}

.km-proof-row strong {
    display: block;
    margin-bottom: 4px;
    color: var(--km-text);
}

.km-proof-row span {
    display: block;
    color: var(--km-muted);
    font-size: 13px !important;
}

.km-dispatch-panel {
    padding: 26px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.74);
    box-shadow: var(--km-shadow);
    backdrop-filter: blur(18px);
}

.km-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.km-panel-head h2 {
    margin: 0;
}

.km-panel-head > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    border-radius: 18px;
    background: #111827;
    color: #ffffff;
    font-size: 18px;
}

.km-track-form {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: var(--km-soft);
    border: 1px solid var(--km-border);
}

.km-track-form input {
    width: 100%;
    min-width: 0;
    height: 46px;
    border: 0;
    outline: none;
    background: transparent;
    padding: 0 12px;
    color: var(--km-text);
    font-size: 14px;
}

.km-track-form button {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 50%;
    background: var(--km-accent);
    color: #ffffff;
    transition: 0.22s ease;
}

.km-track-form button:hover {
    transform: scale(1.04);
}

.km-live-card {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.km-live-map {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 122, 0, 0.14), rgba(17, 24, 39, 0.06)),
        #f9fafb;
}

.km-live-map img {
    max-height: 290px;
    object-fit: contain;
}

.km-live-list {
    display: grid;
    gap: 10px;
}

.km-live-list > div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--km-border);
    color: var(--km-muted);
}

.km-live-list i {
    color: var(--km-accent);
}

.km-qr-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
    padding: 16px;
    border-radius: 22px;
    background: #111827;
    color: #ffffff;
}

.km-qr-strip span {
    opacity: 0.9;
}

.km-qr-strip div,
.km-app-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.km-qr-strip img,
.km-app-links img {
    width: auto;
    max-height: 46px;
    border-radius: 10px;
}

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

.km-section-muted,
.km-app-section {
    background: #ffffff;
}

.km-section-head {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.km-section-head-left {
    margin-left: 0;
    text-align: left;
}

.km-section-head p {
    max-width: 680px;
    margin: 15px auto 0;
    color: var(--km-muted);
}

.km-service-card,
.km-process-grid article,
.km-testimonial-card {
    height: 100%;
    padding: 28px;
    border-radius: var(--km-radius-lg);
    background: #ffffff;
    border: 1px solid var(--km-border);
    box-shadow: var(--km-shadow-soft);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.km-service-card::before,
.km-process-grid article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff7a00, #ff9a00);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--km-radius-lg) var(--km-radius-lg) 0 0;
}

.km-service-card:hover::before,
.km-process-grid article:hover::before {
    opacity: 1;
}

.km-service-card:hover,
.km-process-grid article:hover,
.km-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
    border-color: rgba(255, 122, 0, 0.15);
}

.km-service-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 22px;
    padding: 10px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,122,0,0.08), rgba(255,122,0,0.04));
    border: 1px solid rgba(255,122,0,0.1);
}

.km-service-card h3,
.km-process-grid h3,
.km-testimonial-card h3 {
    margin: 0 0 8px;
    color: var(--km-text);
}

.km-service-card p,
.km-process-grid p,
.km-testimonial-card p,
.km-feature-band li,
.km-app-panel p,
.km-courier-cta-panel p {
    margin: 0;
    color: var(--km-muted);
}

.km-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.km-process-grid article {
    position: relative;
    overflow: hidden;
}

.km-process-grid article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a00 0%, #e56a00 100%);
    color: #ffffff;
    font-size: 14px !important;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(255, 122, 0, 0.3);
}

.km-process-grid img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin-bottom: 16px;
}

.km-overview-intro {
    padding-bottom: 20px;
}

.km-feature-band {
    padding: 64px 0;
    background: var(--km-bg);
}

.km-feature-band-alt {
    background: #ffffff;
}

.km-feature-band ul {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.km-feature-band li {
    position: relative;
    padding: 13px 16px 13px 42px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--km-border);
}

.km-feature-band-alt li {
    background: #f9fafb;
}

.km-feature-band li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 13px;
    color: var(--km-accent);
    font-weight: 900;
}

.km-feature-image {
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 28px 40px rgba(15, 23, 42, 0.12));
}

.km-app-section {
    padding: 72px 0;
}

.km-app-panel {
    overflow: hidden;
    padding: 40px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 122, 0, 0.16), transparent 32%),
        linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border: 1px solid var(--km-border);
    box-shadow: var(--km-shadow);
}

.km-phone-image {
    max-height: 440px;
    object-fit: contain;
    filter: drop-shadow(0 26px 38px rgba(15, 23, 42, 0.14));
}

.km-app-panel p {
    margin-top: 20px;
    max-width: 680px;
}

.km-app-links {
    margin-top: 24px;
}

.km-rating-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.km-rating-row > div {
    padding: 15px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid var(--km-border);
    text-align: center;
}

.km-rating-row span {
    display: block;
    margin-top: 6px;
    color: var(--km-muted);
    font-size: 13px !important;
}

.km-testimonial-slider {
    width: 100%;
    margin-top: 32px;
    overflow: hidden;
}

.km-testimonial-slider .owl-stage {
    display: flex !important;
    align-items: stretch !important;
}

.km-testimonial-slider .owl-item {
    height: auto !important;
}

.km-testimonial-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
    min-height: 260px !important;
    margin: 0 !important;
    overflow: hidden !important;
}

.km-testimonial-card img {
    width: 62px !important;
    height: 62px !important;
    flex: 0 0 auto;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.km-testimonial-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--km-accent);
    font-size: 13px !important;
}

.km-testimonial-card p {
    max-height: 140px;
    overflow: hidden;
}

.km-courier-cta-section {
    padding: 64px 0;
    background: #f5f5f7;
}

.km-courier-cta-panel {
    position: relative;
    overflow: hidden;
    padding: 40px 54px;
    border-radius: 30px;
    color: #ffffff;
    background:
        radial-gradient(circle at 96% 0%, rgba(255, 122, 0, 0.28), transparent 18%),
        linear-gradient(135deg, #101828 0%, #111827 60%, #0b1220 100%);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.2);
}

.km-courier-cta-panel .row {
    align-items: center;
}

.km-courier-cta-panel .col-lg-3:first-child {
    flex: 0 0 42%;
    max-width: 42%;
}

.km-courier-cta-panel .col-lg-6 {
    flex: 0 0 43%;
    max-width: 43%;
}

.km-courier-cta-panel .col-lg-3:last-child {
    flex: 0 0 15%;
    max-width: 15%;
}

.km-courier-photo {
    width: 100%;
    max-width: 420px;
    max-height: 420px;
    object-fit: contain;
    padding: 0;
    border-radius: 28px;
    background: transparent;
    filter: drop-shadow(0 22px 35px rgba(0, 0, 0, 0.35));
}

.km-courier-cta-panel span {
    display: block;
    margin-bottom: 10px;
    color: #ff7a00;
    font-size: 11px !important;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.km-courier-cta-panel h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 22px !important;
    line-height: 1.25 !important;
}

.km-courier-cta-panel p,
.km-courier-desc p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px !important;
    line-height: 1.8 !important;
    margin-bottom: 6px !important;
}

.km-courier-desc {
    max-width: 620px;
}

.km-courier-desc p:last-child {
    margin-bottom: 0 !important;
}

.km-courier-cta-panel .km-btn-light {
    min-width: 150px;
    height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    font-size: 14px !important;
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    white-space: nowrap;
}

.km-courier-cta-panel .km-btn-light:hover {
    background: #ff7a00;
    color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 1199px) {
    .km-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .km-courier-cta-panel {
        padding: 36px 34px;
    }
}

@media (max-width: 991px) {
    .km-home-hero {
        padding: 56px 0 48px;
    }

    .km-dispatch-panel {
        margin-top: 12px;
    }

    .km-section,
    .km-app-section,
    .km-courier-cta-section {
        padding: 56px 0;
    }

    .km-feature-band {
        padding: 54px 0;
    }

    .km-section-head-left {
        text-align: center;
        margin-left: auto;
    }

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

    .km-courier-cta-panel {
        padding: 30px 24px;
        text-align: center;
    }

    .km-courier-cta-panel .col-lg-3:first-child,
    .km-courier-cta-panel .col-lg-6,
    .km-courier-cta-panel .col-lg-3:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .km-courier-photo {
        max-width: 300px;
    }

    .km-courier-cta-panel .text-lg-end {
        text-align: center !important;
    }

    .km-courier-cta-panel .km-btn-light {
        width: auto;
        min-width: 180px;
    }
}

@media (max-width: 767px) {
    .km-site h1,
    .km-site .km-hero-title,
    .km-site .km-hero-title span {
        font-size: clamp(1.75rem, 7vw, 2.2rem) !important;
    }

    .km-site h2,
    .km-site .km-section-head h2,
    .km-site .km-feature-band h2,
    .km-site .km-app-panel h2,
    .km-site .km-courier-cta-panel h2 {
        font-size: clamp(1.4rem, 5.5vw, 1.75rem) !important;
    }

    .km-site h3 {
        font-size: 1.05rem !important;
    }

    .km-site p,
    .km-site li,
    .km-site span,
    .km-site strong {
        font-size: 13px !important;
    }

    .km-home-hero {
        padding: 44px 0;
    }

    .km-hero-actions {
        flex-direction: column;
    }

    .km-btn {
        width: 100%;
    }

    .km-proof-row,
    .km-process-grid {
        grid-template-columns: 1fr;
    }

    .km-dispatch-panel,
    .km-app-panel,
    .km-courier-cta-panel {
        padding: 22px;
        border-radius: 26px;
    }

    .km-panel-head {
        flex-direction: column;
    }

    .km-track-form {
        border-radius: 22px;
    }

    .km-live-map {
        min-height: 210px;
    }

    .km-qr-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .km-service-card,
    .km-process-grid article,
    .km-testimonial-card {
        padding: 22px;
        border-radius: 24px;
    }

    .km-testimonial-card {
        min-height: auto !important;
    }
}

@media (max-width: 480px) {
    .km-section {
        padding: 48px 0;
    }

    .km-feature-band {
        padding: 46px 0;
    }

    .km-courier-photo {
        max-width: 240px;
    }
}

/* FOOTER BOTTOM */

.km-footer-bottom {
    padding: 24px 0 !important;
    background: #ffffff !important;
    border-top: 1px solid rgba(17,24,39,.08) !important;
}

.km-footer-copy {
    color: #667085 !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
}

.km-footer-copy strong {
    color: #111827 !important;
    font-weight: 800 !important;
}

.km-footer-links {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 18px !important;
}

.km-footer-links a {
    color: #667085 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: .2s ease !important;
}

.km-footer-links a:hover {
    color: #ff7a00 !important;
}

@media (max-width: 991px) {

    .km-footer-bottom {
        text-align: center !important;
    }

    .km-footer-links {
        justify-content: center !important;
        margin-top: 14px !important;
    }
}

/* MAIN FOOTER FINAL FIX */

.km-main-footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    padding: 64px 0 28px !important;
    background: #ffffff !important;
    border-top: 1px solid rgba(17,24,39,.08) !important;
    color: #667085 !important;
}

.km-main-footer .container {
    max-width: 1280px !important;
}

.km-footer-brand {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 18px !important;
}

.km-footer-brand img {
    width: 54px !important;
    height: 54px !important;
    object-fit: contain !important;
}

.km-footer-brand h4,
.km-main-footer h5 {
    margin: 0 0 18px !important;
    color: #111827 !important;
    font-size: 17px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
}

.km-footer-brand h4 {
    margin: 0 !important;
    font-size: 20px !important;
}

.km-footer-desc {
    max-width: 430px !important;
    margin: 0 0 20px !important;
    color: #667085 !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
}

.km-main-footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.km-main-footer li {
    margin-bottom: 10px !important;
}

.km-main-footer a,
.km-main-footer span,
.km-main-footer p {
    color: #667085 !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    text-decoration: none !important;
}

.km-main-footer a:hover {
    color: #ff7a00 !important;
}

.km-footer-store {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.km-footer-store img {
    width: auto !important;
    max-width: 155px !important;
    max-height: 48px !important;
    border-radius: 12px !important;
}

.km-footer-bottom {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    margin-top: 42px !important;
    padding-top: 22px !important;
    border-top: 1px solid rgba(17,24,39,.08) !important;
}

.km-footer-bottom p {
    margin: 0 !important;
}

.km-footer-social {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
}

.km-footer-social a {
    font-weight: 700 !important;
    font-size: 13px !important;
}

@media (max-width: 991px) {
    .km-main-footer {
        padding: 46px 0 24px !important;
    }

    .km-footer-bottom {
        align-items: flex-start !important;
        flex-direction: column !important;
    }
}

/* =========================
   KURYEMAX MODERN HEADER
========================= */

.km-main-header {
    min-height: 74px !important;
    padding: 12px 18px !important;
    background: rgba(255, 255, 255, 0.82) !important;
    border-bottom: 1px solid rgba(17,24,39,.08) !important;
    backdrop-filter: blur(18px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(180%) !important;
    box-shadow: 0 10px 34px rgba(15,23,42,.06) !important;
    z-index: 1050 !important;
}

.km-main-header .container {
    max-width: 1280px !important;
}

.km-main-header .navbar-brand {
    gap: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.km-main-header .navbar-brand img {
    width: 42px !important;
    height: 42px !important;
    object-fit: contain !important;
    border-radius: 12px !important;
}

.km-header-brand-text {
    color: #111827 !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em !important;
}

.km-main-header .navbar-nav {
    gap: 6px !important;
}

.km-main-header .nav-link {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 42px !important;
    padding: 8px 13px !important;
    border-radius: 999px !important;
    color: #667085 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    transition: .2s ease !important;
}

.km-main-header .nav-link label {
    margin: 0 !important;
    cursor: pointer !important;
    color: inherit !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.km-main-header .nav-link:hover {
    background: #f2f4f7 !important;
    color: #111827 !important;
}

.km-main-header .menu-item {
    color: #ff7a00 !important;
}

.km-auth-box {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 42px !important;
    padding: 6px 8px !important;
    border-radius: 999px !important;
    background: #111827 !important;
    border: 1px solid rgba(17,24,39,.08) !important;
    color: rgba(255,255,255,.35) !important;
}

.km-auth-box a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 30px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    transition: .2s ease !important;
}

.km-auth-box a:hover {
    background: #ff7a00 !important;
    color: #ffffff !important;
}

.km-main-header .sing-out {
    min-height: 40px !important;
    padding: 8px 16px !important;
    border-radius: 999px !important;
    background: #111827 !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    border: 0 !important;
}

.km-main-header .navbar-toggler {
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    border: 1px solid rgba(17,24,39,.1) !important;
    border-radius: 14px !important;
    box-shadow: none !important;
}

.km-main-header .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255,122,0,.18) !important;
}

#myBtn {
    width: 42px !important;
    height: 42px !important;
    right: 22px !important;
    bottom: 22px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #111827 !important;
    color: #ffffff !important;
    box-shadow: 0 18px 40px rgba(15,23,42,.22) !important;
    z-index: 9999 !important;
}

@media (max-width: 991px) {
    .km-main-header {
        padding: 10px 12px !important;
    }

    .km-main-header .navbar-collapse {
        margin-top: 14px !important;
        padding: 14px !important;
        border-radius: 22px !important;
        background: #ffffff !important;
        border: 1px solid rgba(17,24,39,.08) !important;
        box-shadow: 0 18px 50px rgba(15,23,42,.10) !important;
    }

    .km-main-header .navbar-nav {
        align-items: stretch !important;
        gap: 8px !important;
    }

    .km-main-header .nav-link,
    .km-auth-box {
        width: 100% !important;
        justify-content: center !important;
    }

    .km-auth-box {
        margin-top: 6px !important;
    }
}


/* =========================
   ABOUT PAGE MODERN UI
========================= */

.km-about-hero {
    position: relative !important;
    padding: 120px 0 90px !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 10% 10%, rgba(255,122,0,.14), transparent 30%),
        linear-gradient(180deg,#ffffff 0%,#f5f5f7 100%) !important;
}

.km-about-title {
    max-width: 620px !important;
    margin: 0 0 18px !important;
    color: #111827 !important;
    font-size: 34px !important;
    line-height: 1.12 !important;
    font-weight: 900 !important;
    letter-spacing: -.03em !important;
}

.km-about-title span {
    display: block !important;
    margin-top: 6px !important;
    color: #ff7a00 !important;
}

.km-about-desc {
    max-width: 620px !important;
    margin: 0 !important;
    color: #667085 !important;
    font-size: 15px !important;
    line-height: 1.9 !important;
}

.km-about-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
    margin-top: 30px !important;
}

.km-about-stats {
    display: grid !important;
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
    gap: 14px !important;
    margin-top: 34px !important;
    max-width: 620px !important;
}

.km-about-stats > div {
    padding: 18px !important;
    border-radius: 22px !important;
    background: rgba(255,255,255,.78) !important;
    border: 1px solid rgba(17,24,39,.08) !important;
    box-shadow: 0 14px 40px rgba(15,23,42,.06) !important;
}

.km-about-stats strong {
    display: block !important;
    margin-bottom: 6px !important;
    color: #111827 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}

.km-about-stats span {
    color: #667085 !important;
    font-size: 13px !important;
}

.km-about-image-wrap {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 30px !important;
    border-radius: 38px !important;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,122,0,.18), transparent 25%),
        rgba(255,255,255,.7) !important;
    border: 1px solid rgba(255,255,255,.7) !important;
    backdrop-filter: blur(14px) !important;
    box-shadow: 0 30px 80px rgba(15,23,42,.10) !important;
}

.km-about-image-wrap img {
    max-height: 540px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 24px 40px rgba(15,23,42,.16)) !important;
}

.km-breadcrumb {
    margin-bottom: 20px !important;
}

.km-breadcrumb .breadcrumb {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.km-breadcrumb .breadcrumb-item,
.km-breadcrumb .breadcrumb-item a {
    color: #98a2b3 !important;
    font-size: 13px !important;
    text-decoration: none !important;
}

.km-breadcrumb .breadcrumb-item.active {
    color: #111827 !important;
}

@media (max-width: 991px) {

    .km-about-hero {
        padding: 100px 0 70px !important;
        text-align: center !important;
    }

    .km-about-title {
        font-size: 28px !important;
        max-width: 100% !important;
    }

    .km-about-desc {
        max-width: 100% !important;
    }

    .km-about-actions {
        justify-content: center !important;
    }

    .km-about-stats {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }

    .km-about-image-wrap {
        margin-top: 10px !important;
    }

    .km-about-image-wrap img {
        max-height: 380px !important;
    }
}


/* =========================
   CONTACT PAGE MODERN UI
========================= */

.km-contact-hero {
    position: relative !important;
    padding: 120px 0 90px !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 12% 12%, rgba(255,122,0,.14), transparent 30%),
        linear-gradient(180deg,#ffffff 0%,#f5f5f7 100%) !important;
}

.km-contact-title {
    max-width: 620px !important;
    margin: 0 0 18px !important;
    color: #111827 !important;
    font-size: 34px !important;
    line-height: 1.12 !important;
    font-weight: 900 !important;
    letter-spacing: -.03em !important;
}

.km-contact-title span {
    display: block !important;
    margin-top: 6px !important;
    color: #ff7a00 !important;
}

.km-contact-desc {
    max-width: 600px !important;
    margin: 0 !important;
    color: #667085 !important;
    font-size: 15px !important;
    line-height: 1.9 !important;
}

.km-contact-card-list {
    display: grid !important;
    gap: 14px !important;
    max-width: 560px !important;
    margin-top: 28px !important;
}

.km-contact-card-list a {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 16px 18px !important;
    border-radius: 22px !important;
    background: rgba(255,255,255,.8) !important;
    border: 1px solid rgba(17,24,39,.08) !important;
    box-shadow: 0 14px 40px rgba(15,23,42,.06) !important;
    color: #111827 !important;
    text-decoration: none !important;
    transition: .2s ease !important;
}

.km-contact-card-list a:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(255,122,0,.35) !important;
}

.km-contact-card-list i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 auto !important;
    border-radius: 16px !important;
    background: #111827 !important;
    color: #ffffff !important;
    font-size: 16px !important;
}

.km-contact-card-list span {
    color: #111827 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    word-break: break-word !important;
}

.km-contact-app-links {
    margin-top: 26px !important;
}

.km-contact-image-wrap {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 30px !important;
    border-radius: 38px !important;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,122,0,.18), transparent 25%),
        rgba(255,255,255,.72) !important;
    border: 1px solid rgba(255,255,255,.75) !important;
    backdrop-filter: blur(14px) !important;
    box-shadow: 0 30px 80px rgba(15,23,42,.10) !important;
}

.km-contact-image-wrap img {
    max-height: 540px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 24px 40px rgba(15,23,42,.16)) !important;
}

@media (max-width: 991px) {
    .km-contact-hero {
        padding: 100px 0 70px !important;
        text-align: center !important;
    }

    .km-contact-title {
        max-width: 100% !important;
        font-size: 28px !important;
    }

    .km-contact-desc,
    .km-contact-card-list {
        max-width: 100% !important;
    }

    .km-contact-card-list a {
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .km-contact-app-links {
        justify-content: center !important;
    }

    .km-contact-image-wrap img {
        max-height: 380px !important;
    }
}


/* =========================
   DELIVERY PARTNER PREMIUM UI
========================= */

.km-partner-hero-v2 {
    position: relative !important;
    overflow: hidden !important;
    padding: 120px 0 90px !important;
    background:
        radial-gradient(circle at 8% 10%, rgba(255,122,0,.14), transparent 30%),
        linear-gradient(180deg,#ffffff 0%,#f5f5f7 100%) !important;
}

.km-partner-hero-v2::before {
    content: "" !important;
    position: absolute !important;
    right: -140px !important;
    top: -140px !important;
    width: 340px !important;
    height: 340px !important;
    border-radius: 50% !important;
    background: rgba(255,122,0,.08) !important;
    pointer-events: none !important;
}

.km-partner-image-wrap {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 30px !important;
    border-radius: 38px !important;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,122,0,.18), transparent 25%),
        rgba(255,255,255,.74) !important;
    border: 1px solid rgba(255,255,255,.7) !important;
    backdrop-filter: blur(16px) !important;
    box-shadow: 0 30px 80px rgba(15,23,42,.10) !important;
}

.km-partner-image-wrap img {
    max-height: 620px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 26px 42px rgba(15,23,42,.16)) !important;
}

.km-app-store-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
    margin-top: 28px !important;
}

.km-app-store-row img {
    max-height: 52px !important;
    border-radius: 14px !important;
    transition: .2s ease !important;
    box-shadow: 0 10px 30px rgba(15,23,42,.08) !important;
}

.km-app-store-row img:hover {
    transform: translateY(-2px) !important;
}

.km-partner-card {
    position: relative !important;
    overflow: hidden !important;
    min-height: 100% !important;
    border-radius: 30px !important;
}

.km-partner-card::before {
    content: "" !important;
    position: absolute !important;
    right: -60px !important;
    top: -60px !important;
    width: 140px !important;
    height: 140px !important;
    border-radius: 50% !important;
    background: rgba(255,122,0,.06) !important;
}

.km-partner-card img {
    width: 64px !important;
    height: 64px !important;
    margin-bottom: 22px !important;
}

.km-partner-card h3 {
    margin-bottom: 10px !important;
    font-size: 18px !important;
    line-height: 1.4 !important;
}

.km-partner-card p {
    color: #667085 !important;
    line-height: 1.8 !important;
}

.km-document-card-v2 {
    position: relative !important;
    overflow: hidden !important;
    padding: 28px !important;
    border-radius: 30px !important;
    background: #ffffff !important;
    border: 1px solid rgba(17,24,39,.08) !important;
    box-shadow: 0 18px 50px rgba(15,23,42,.06) !important;
    transition: .22s ease !important;
}

.km-document-card-v2:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 28px 70px rgba(15,23,42,.10) !important;
}

.km-document-card-v2 span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    margin-bottom: 18px !important;
    border-radius: 50% !important;
    background: #111827 !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.km-document-card-v2 h3 {
    margin-bottom: 22px !important;
    color: #111827 !important;
    font-size: 17px !important;
    font-weight: 800 !important;
}

.km-document-card-v2 img {
    width: 100% !important;
    border-radius: 22px !important;
    object-fit: cover !important;
}

.km-way-card-v2 {
    overflow: hidden !important;
    padding: 18px !important;
    border-radius: 28px !important;
    background: #ffffff !important;
    border: 1px solid rgba(17,24,39,.08) !important;
    box-shadow: 0 16px 40px rgba(15,23,42,.06) !important;
    transition: .2s ease !important;
}

.km-way-card-v2:hover {
    transform: translateY(-4px) !important;
}

.km-way-card-v2 img {
    width: 100% !important;
    border-radius: 20px !important;
    object-fit: contain !important;
}

@media (max-width: 991px) {

    .km-partner-hero-v2 {
        padding: 100px 0 70px !important;
        text-align: center !important;
    }

    .km-app-store-row {
        justify-content: center !important;
    }

    .km-partner-image-wrap img {
        max-height: 420px !important;
    }
}


/* =========================
   ORDER HISTORY MODERN UI
========================= */

.km-history-hero {
    padding: 120px 0 48px !important;
    background:
        radial-gradient(circle at 12% 14%, rgba(255,122,0,.12), transparent 28%),
        linear-gradient(180deg,#ffffff 0%,#f5f5f7 100%) !important;
}

.km-history-title {
    margin: 0 !important;
    color: #111827 !important;
    font-size: 28px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: -.02em !important;
}

.km-history-title span {
    display: block !important;
    margin-top: 4px !important;
    color: #ff7a00 !important;
}

.km-history-section {
    padding: 32px 0 80px !important;
    background: #f5f5f7 !important;
}

.km-history-card {
    overflow: hidden !important;
    max-width: 920px !important;
    margin: 0 auto !important;
    border-radius: 32px !important;
    background: rgba(255,255,255,.9) !important;
    border: 1px solid rgba(17,24,39,.08) !important;
    box-shadow: 0 24px 70px rgba(15,23,42,.08) !important;
}

.km-history-card-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    padding: 26px 30px !important;
    background:
        radial-gradient(circle at 90% 0%, rgba(255,122,0,.16), transparent 24%),
        #111827 !important;
    color: #ffffff !important;
}

.km-history-card-head span {
    display: block !important;
    margin-bottom: 6px !important;
    color: #ff7a00 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

.km-history-card-head h2 {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 20px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
}

.km-history-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 52px !important;
    height: 52px !important;
    flex: 0 0 auto !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.1) !important;
    color: #ffffff !important;
    font-size: 20px !important;
}

.km-history-timeline {
    position: relative !important;
    display: grid !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 28px 30px 30px !important;
    list-style: none !important;
}

.km-history-timeline::before {
    content: "" !important;
    position: absolute !important;
    left: 53px !important;
    top: 40px !important;
    bottom: 40px !important;
    width: 2px !important;
    background: rgba(17,24,39,.08) !important;
}

.km-history-item {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 48px minmax(0,1fr) !important;
    gap: 18px !important;
    padding: 0 0 22px !important;
}

.km-history-item:last-child {
    padding-bottom: 0 !important;
}

.km-history-icon {
    position: relative !important;
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 18px !important;
    background: #ff7a00 !important;
    color: #ffffff !important;
    box-shadow: 0 12px 30px rgba(255,122,0,.24) !important;
}

.km-history-icon i {
    font-size: 17px !important;
}

.km-history-content {
    padding: 18px 20px !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    border: 1px solid rgba(17,24,39,.08) !important;
}

.km-history-content-top {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 18px !important;
    margin-bottom: 8px !important;
}

.km-history-content h3 {
    margin: 0 !important;
    color: #111827 !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    font-weight: 800 !important;
}

.km-history-content time {
    flex: 0 0 auto !important;
    color: #98a2b3 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
}

.km-history-content p {
    margin: 0 !important;
    color: #667085 !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
}

.km-empty-state {
    display: grid !important;
    place-items: center !important;
    gap: 12px !important;
    padding: 48px 20px !important;
    text-align: center !important;
}

.km-empty-state i {
    color: #ff7a00 !important;
    font-size: 34px !important;
}

.km-empty-state p {
    margin: 0 !important;
    color: #667085 !important;
}

@media (max-width: 767px) {
    .km-history-hero {
        padding: 100px 0 38px !important;
    }

    .km-history-title {
        font-size: 22px !important;
    }

    .km-history-card-head {
        padding: 22px !important;
    }

    .km-history-timeline {
        padding: 24px 20px !important;
    }

    .km-history-timeline::before {
        left: 43px !important;
    }

    .km-history-item {
        grid-template-columns: 42px minmax(0,1fr) !important;
        gap: 14px !important;
    }

    .km-history-icon {
        width: 42px !important;
        height: 42px !important;
        border-radius: 15px !important;
    }

    .km-history-content-top {
        flex-direction: column !important;
        gap: 4px !important;
    }

    .km-history-content time {
        white-space: normal !important;
    }
}


/* ORDER TRACKING SAFE FIX */

.km-tracking-page .km-home-hero {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 120px 0 80px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%) !important;
}

.km-tracking-page .km-dispatch-panel {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 28px !important;
    border-radius: 32px !important;
    background: #ffffff !important;
    border: 1px solid rgba(17,24,39,.08) !important;
    box-shadow: 0 24px 70px rgba(15,23,42,.08) !important;
}

.km-tracking-page .km-track-form {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px !important;
    border-radius: 999px !important;
    background: #f2f4f7 !important;
}

.km-tracking-page .km-track-form input {
    display: block !important;
    width: 100% !important;
    height: 48px !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 14px !important;
    font-size: 14px !important;
}

.km-tracking-page .km-track-form button {
    width: 48px !important;
    height: 48px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #111827 !important;
    color: #ffffff !important;
}

.km-tracking-page .km-service-card {
    display: block !important;
    height: 100% !important;
    padding: 24px !important;
    border-radius: 28px !important;
    background: #ffffff !important;
    border: 1px solid rgba(17,24,39,.08) !important;
    box-shadow: 0 14px 40px rgba(15,23,42,.06) !important;
}

.km-tracking-page .km-service-card img {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
    margin-bottom: 18px !important;
}

.km-tracking-page .km-service-card h3 {
    font-size: 17px !important;
    line-height: 1.4 !important;
}

.km-tracking-page .km-service-card p {
    font-size: 14px !important;
    line-height: 1.75 !important;
    color: #667085 !important;
}

@media (max-width: 991px) {
    .km-tracking-page .km-home-hero {
        padding: 100px 0 60px !important;
    }
}


/* =========================
   DYNAMIC CONTENT PAGE
========================= */

.km-content-hero {
    padding: 120px 0 52px !important;
    background:
        radial-gradient(circle at 12% 12%, rgba(255,122,0,.12), transparent 28%),
        linear-gradient(180deg,#ffffff 0%,#f5f5f7 100%) !important;
}

.km-content-title {
    margin: 0 !important;
    max-width: 860px !important;
    color: #111827 !important;
    font-size: 30px !important;
    line-height: 1.18 !important;
    font-weight: 900 !important;
    letter-spacing: -.025em !important;
}

.km-content-section {
    padding: 34px 0 80px !important;
    background: #f5f5f7 !important;
}

.km-rich-content {
    max-width: 980px !important;
    margin: 0 auto !important;
    padding: 38px !important;
    border-radius: 32px !important;
    background: #ffffff !important;
    border: 1px solid rgba(17,24,39,.08) !important;
    box-shadow: 0 24px 70px rgba(15,23,42,.08) !important;
    color: #667085 !important;
    font-size: 15px !important;
    line-height: 1.85 !important;
}

.km-rich-content h1,
.km-rich-content h2,
.km-rich-content h3,
.km-rich-content h4,
.km-rich-content h5,
.km-rich-content h6 {
    color: #111827 !important;
    margin: 26px 0 14px !important;
    line-height: 1.3 !important;
    font-weight: 900 !important;
    letter-spacing: -.015em !important;
}

.km-rich-content h1 {
    font-size: 26px !important;
}

.km-rich-content h2 {
    font-size: 22px !important;
}

.km-rich-content h3 {
    font-size: 18px !important;
}

.km-rich-content p {
    margin: 0 0 16px !important;
    color: #667085 !important;
    font-size: 15px !important;
    line-height: 1.85 !important;
}

.km-rich-content ul,
.km-rich-content ol {
    margin: 16px 0 20px !important;
    padding-left: 22px !important;
}

.km-rich-content li {
    margin-bottom: 8px !important;
    color: #667085 !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
}

.km-rich-content a {
    color: #ff7a00 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.km-rich-content a:hover {
    text-decoration: underline !important;
}

.km-rich-content img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 22px !important;
    margin: 20px 0 !important;
}

.km-rich-content table {
    width: 100% !important;
    margin: 24px 0 !important;
    border-collapse: collapse !important;
    overflow: hidden !important;
    border-radius: 18px !important;
}

.km-rich-content table th,
.km-rich-content table td {
    padding: 14px !important;
    border: 1px solid rgba(17,24,39,.08) !important;
    font-size: 14px !important;
}

.km-rich-content table th {
    color: #111827 !important;
    background: #f9fafb !important;
    font-weight: 800 !important;
}

@media (max-width: 767px) {
    .km-content-hero {
        padding: 100px 0 42px !important;
    }

    .km-content-title {
        font-size: 24px !important;
    }

    .km-content-section {
        padding: 28px 0 58px !important;
    }

    .km-rich-content {
        padding: 24px !important;
        border-radius: 24px !important;
    }
}




.km-doc-section {
    padding: 70px 0 90px;
    background: #f6f7fb;
}

.km-doc-top {
    text-align: center;
    margin-bottom: 50px;
}

.km-doc-kicker {
    display: inline-flex;
    padding: 8px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    background: #fff;
    color: #ff6900;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.km-doc-top h2,
.km-doc-card-head h2 {
    color: #071226;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}

.km-doc-top h4 {
    color: #ff6900;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 24px;
}

.km-doc-info-box {
    max-width: 1180px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    text-align: left;
}

.km-doc-info-col p {
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.km-doc-card-head {
    text-align: center;
    margin-bottom: 38px;
}

.km-doc-card-head p {
    color: #64748b;
    font-size: 15px;
    margin: 0;
}

.km-document-card-new {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 42px 28px 22px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    overflow: visible;
}

.km-document-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ff6900;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.km-document-card-new h3 {
    color: #071226;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
}

.km-document-card-new p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    min-height: 48px;
    margin-bottom: 12px;
}

.km-document-image-wrap {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.km-document-image-wrap img {
    max-width: 210px;
    max-height: 140px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .km-doc-info-box {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .km-doc-section {
        padding: 50px 0 70px;
    }

    .km-doc-top h2,
    .km-doc-card-head h2 {
        font-size: 24px;
    }

    .km-doc-info-box {
        padding: 20px;
    }
}


/* =========================
   SCROLL REVEAL ANIMATIONS
========================= */

@keyframes km-fade-up {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes km-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes km-scale-in {
    from {
        opacity: 0;
        transform: scale(0.94);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.km-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.km-reveal.km-revealed {
    opacity: 1;
    transform: translateY(0);
}

.km-reveal-delay-1 { transition-delay: 0.1s !important; }
.km-reveal-delay-2 { transition-delay: 0.2s !important; }
.km-reveal-delay-3 { transition-delay: 0.3s !important; }
.km-reveal-delay-4 { transition-delay: 0.4s !important; }

/* Section separator */
.km-section + .km-section-muted,
.km-section-muted + .km-section {
    position: relative;
}

/* =========================
   HERO TYPOGRAPHY ENHANCEMENT
========================= */

.km-hero-title {
    max-width: 760px;
}

.km-hero-copy {
    font-size: 16px !important;
    line-height: 1.8 !important;
    max-width: 560px;
    color: #667085;
}

.km-proof-row strong {
    font-size: 15px !important;
    font-weight: 900 !important;
    color: #111827;
}

/* =========================
   SECTION HEAD ENHANCEMENT
========================= */

.km-section-head p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #667085;
    max-width: 620px;
}

/* =========================
   DISPATCH PANEL ENHANCEMENT
========================= */

.km-dispatch-panel {
    border: 1px solid rgba(255, 122, 0, 0.12);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.10), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.km-panel-head h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important;
    font-weight: 900 !important;
}

.km-panel-head > i {
    background: linear-gradient(135deg, #ff7a00, #e56a00);
    box-shadow: 0 10px 28px rgba(255, 122, 0, 0.30);
}

/* =========================
   TRACK FORM PULSE
========================= */

.km-track-form button {
    background: linear-gradient(135deg, #ff7a00, #e56a00);
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.35);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.km-track-form button:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 32px rgba(255, 122, 0, 0.45);
}

/* =========================
   SECTION BACKGROUNDS
========================= */

.km-section {
    position: relative;
}

.km-section-muted {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.km-feature-band {
    background: linear-gradient(180deg, #f8f8fb 0%, #f5f5f7 100%);
}

/* =========================
   APP SECTION ENHANCEMENT
========================= */

.km-app-panel {
    background:
        radial-gradient(ellipse at 5% 50%, rgba(255, 122, 0, 0.10), transparent 40%),
        radial-gradient(ellipse at 95% 0%, rgba(17, 24, 39, 0.04), transparent 40%),
        linear-gradient(135deg, #f9fafb 0%, #ffffff 60%, #fef8f3 100%);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.09), 0 0 0 1px rgba(255,122,0,0.06);
}

/* =========================
   COURIER CTA ENHANCEMENT
========================= */

.km-courier-cta-panel {
    background:
        radial-gradient(ellipse at 95% 0%, rgba(255, 122, 0, 0.32), transparent 22%),
        radial-gradient(ellipse at 5% 100%, rgba(255, 122, 0, 0.12), transparent 30%),
        linear-gradient(135deg, #0d1526 0%, #111827 55%, #0b1220 100%);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.25);
}

/* =========================
   LIVE CARD ENHANCEMENT
========================= */

.km-live-list > div {
    transition: all 0.2s ease;
}

.km-live-list > div:hover {
    border-color: rgba(255, 122, 0, 0.2);
    transform: translateX(4px);
}

.km-live-list i {
    font-size: 16px;
    filter: drop-shadow(0 2px 4px rgba(255, 122, 0, 0.25));
}

/* =========================
   QR STRIP ENHANCEMENT
========================= */

.km-qr-strip {
    background: linear-gradient(135deg, #111827 0%, #1a2332 100%);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

/* =========================
   TESTIMONIAL ENHANCEMENT
========================= */

.km-testimonial-card {
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.km-testimonial-card:hover {
    border-left-color: #ff7a00;
}

.km-rating-row > div {
    transition: all 0.2s ease;
}

.km-rating-row > div:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

/* =========================
   FEATURE BAND ENHANCEMENT
========================= */

.km-feature-band li {
    transition: all 0.2s ease;
}

.km-feature-band li:hover {
    border-color: rgba(255, 122, 0, 0.2);
    background: rgba(255, 122, 0, 0.03);
    transform: translateX(4px);
}

.km-feature-image {
    transition: transform 0.4s ease;
}

.km-feature-image:hover {
    transform: scale(1.02);
}

/* =========================
   EYEBROW / KICKER ENHANCEMENT
========================= */

.km-eyebrow,
.km-section-kicker,
.km-panel-kicker {
    background: linear-gradient(135deg, rgba(255,122,0,0.08), rgba(255,122,0,0.04));
    border-color: rgba(255,122,0,0.18);
    font-size: 11px !important;
    font-weight: 900;
    letter-spacing: 0.07em;
    color: #e56a00;
}

/* =========================
   FOOTER SOCIAL ICONS
========================= */

.km-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f2f4f7;
    color: #667085 !important;
    font-size: 12px !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}

.km-footer-social a:hover {
    background: #ff7a00 !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3) !important;
}

/* =========================
   SCROLL TO TOP ENHANCEMENT
========================= */

#myBtn {
    background: linear-gradient(135deg, #ff7a00, #e56a00) !important;
    box-shadow: 0 14px 36px rgba(255, 122, 0, 0.35) !important;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

#myBtn:hover {
    transform: translateY(-4px) scale(1.08) !important;
    box-shadow: 0 20px 48px rgba(255, 122, 0, 0.45) !important;
}

/* =========================
   PROOF ROW ENHANCEMENT
========================= */

.km-proof-row > div {
    transition: all 0.25s ease;
}

.km-proof-row > div:hover {
    border-color: rgba(255, 122, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.09);
}

/* =========================
   INNER PAGE — SHARED VISUAL
========================= */

.km-inner-visual {
    max-height: 520px !important;
    width: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 24px 40px rgba(15, 23, 42, 0.14)) !important;
    transition: transform 0.4s ease !important;
}

.km-inner-visual:hover {
    transform: scale(1.02) !important;
}

@media (max-width: 575px) {
    .km-inner-visual {
        max-height: 300px !important;
    }
}

/* =========================
   ABOUT PAGE — SPLIT PANEL
========================= */

.km-split-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 52px;
    background:
        radial-gradient(circle at 95% 5%, rgba(255,122,0,.07), transparent 30%),
        linear-gradient(135deg, #f8f8fb 0%, #ffffff 100%);
    border: 1px solid rgba(17, 24, 39, .06);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .06);
}

.km-split-panel > div:first-child {
    padding-right: 24px;
    border-right: 1px solid rgba(17, 24, 39, .07);
}

.km-split-panel h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem) !important;
    font-weight: 900 !important;
    color: #111827 !important;
    line-height: 1.2 !important;
    margin-bottom: 0 !important;
}

.km-split-panel p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #667085 !important;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .km-split-panel {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 24px;
    }

    .km-split-panel > div:first-child {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(17, 24, 39, .07);
        padding-bottom: 24px;
    }
}

/* =========================
   ABOUT PAGE — MINI ICON GRID
========================= */

.km-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.km-mini-grid article {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, .07);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
    transition: all 0.25s ease;
    cursor: default;
}

.km-mini-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 122, 0, 0.18);
    box-shadow: 0 14px 36px rgba(15, 23, 42, .08);
}

.km-mini-grid i {
    font-size: 18px;
    color: #ff7a00;
    background: rgba(255, 122, 0, 0.08);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.km-mini-grid strong {
    font-size: 13px !important;
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
}

@media (max-width: 575px) {
    .km-mini-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================
   MOBILE HERO PADDING
========================= */

@media (max-width: 991px) {
    .km-home-hero {
        padding: 80px 0 60px;
    }
    .km-home-hero::before,
    .km-home-hero::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .km-home-hero {
        padding: 70px 0 50px;
    }
    .km-hero-copy {
        font-size: 14px !important;
    }
}

