﻿:root {
    --petal-blue: #5b9bc4;
    --petal-blue-dark: #3f7fa8;
    --leaf-green: #97a914;
    --leaf-green-dark: #74830d;
    --marigold: #f9b51d;
    --coral: #f27d6f;
    --plum: #7b3151;
    --cream: #fffaf1;
    --blush: #fff1ed;
    --mint: #f4f8e7;
    --ink: #244052;
    --muted: #697a83;
    --line: #e6edf0;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(63, 127, 168, 0.14);
    --soft-shadow: 0 10px 30px rgba(36, 64, 82, 0.08);
    --header-height: 86px;
    --radius: 26px;
    --page-pad: clamp(18px, 4vw, 44px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #ffffff;
/*   padding-top: var(--header-height);*/
    line-height: 1.55;
}

.back-link, .support-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(91, 155, 196, 0.22);
    border-radius: 999px;
    background: #f7fbfd;
    color: var(--petal-blue-dark);
    font-size: 0.92rem;
    font-weight: 800;
    white-space: nowrap;
    text-decoration: none;
}
.container{
    width:min(1120px,100%) !important;
    max-width: 1120px !important;
}
.support-icon-link {
    width: 44px;
    height: 44px;
    padding: 0;
}

    .support-icon-link::before {
        content: "?";
        display: grid;
        place-items: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--marigold);
        color: var(--white);
        font-size: 0.86rem;
        font-weight: 900;
    }

.copy-button {
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    min-height: unset;
    color: var(--petal-blue-dark);
    cursor: pointer;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 850;
    padding: 0;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.p_font {
    max-width: 660px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: clamp(0.98rem, 2vw, 1.1rem);
}
.shipment-highlight::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 7px rgba(242, 125, 111, 0.16);
}

.shipment-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--plum);
    font-size: 1.2rem;
    font-weight: 800;
}

.mt_80{
    margin-top:80px !important;
}

.text_color_blue {
    color: var(--petal-blue-dark);
    text-transform: uppercase;
}

/*sopport-css-start*/
.support-hero {
    padding: clamp(22px, 4vw, 38px);
    border: 1px solid rgba(91, 155, 196, 0.16);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 241, 0.64)), linear-gradient(135deg, rgba(249, 181, 29, 0.11), rgba(91, 155, 196, 0.09));
    box-shadow: var(--shadow);
}
.form-card {
    margin-top: clamp(26px, 4vw, 42px);
    padding: clamp(18px, 4vw, 30px);
    border: 1px solid rgba(91, 155, 196, 0.14);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--soft-shadow);
}
.field-group {
    display: grid;
    gap: 7px;
}
label {
    color: var(--ink) #244052;
    font-size: 0.9rem;
    font-weight: 800;
}
input, textarea {
    width: 100%;
    border: 1px solid rgba(91, 155, 196, 0.24);
    border-radius: 16px;
    background: #ffffff;
    color: var(--ink);
    font: inherit;
    padding: 13px 14px;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.submit-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
button {
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    background: var(--petal-blue);
    color: var(--white);
    cursor: pointer;
    font: inherit;
    font-weight: 850;
    padding: 12px 22px;
    box-shadow: 0 12px 22px rgba(91, 155, 196, 0.22);
}
.support-hero p {
    max-width: 650px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: clamp(0.98rem, 2vw, 1.1rem);
}

/*sopport-css-end*/

a {
    color: var(--petal-blue-dark);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

img {
    max-width: 100%;
    display: block;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    min-height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(91, 155, 196, 0.18);
    box-shadow: 0 10px 28px rgba(36, 64, 82, 0.07);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1120px, 100%);
    min-height: var(--header-height);
    margin: 0 auto;
    padding: 12px var(--page-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.brand-logo {
    width: 138px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
}

.header-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(91, 155, 196, 0.22);
    border-radius: 999px;
    background: #f7fbfd;
    color: var(--petal-blue-dark);
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
}

    .header-action::before {
        content: "?";
        display: grid;
        place-items: center;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--marigold);
        color: var(--white);
        font-size: 0.8rem;
    }

main {
    width: min(880px, 100%);
    margin: 0 auto;
    padding: 34px var(--page-pad) 52px;
}

.status-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: clamp(18px, 3vw, 30px);
    align-items: center;
    padding: clamp(22px, 4vw, 38px);
    border: 1px solid rgba(91, 155, 196, 0.16);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 241, 0.88)), linear-gradient(135deg, rgba(249, 181, 29, 0.16), rgba(91, 155, 196, 0.12));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--leaf-green-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

    .eyebrow::before {
        content: "";
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: var(--leaf-green);
        box-shadow: 0 0 0 5px rgba(151, 169, 20, 0.14);
    }

h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1;
    letter-spacing: 0.02em;
}

#currentStatus {
    color: var(--petal-blue-dark);
    text-transform: uppercase;
}

#currentStatusMessage {
    max-width: 660px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: clamp(0.98rem, 2vw, 1.1rem);
}

.status-panel {
    position: relative;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(91, 155, 196, 0.14);
    overflow: hidden;
}

    .status-panel::before {
        content: "";
        position: absolute;
        inset: 0 auto auto 0;
        width: 100%;
        height: 7px;
        border-radius: var(--radius) var(--radius) 0 0;
        background: linear-gradient(90deg, var(--petal-blue), var(--marigold), var(--leaf-green));
    }

.status-label {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.status-step {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    color: var(--plum);
    font-size: 1.2rem;
    font-weight: 800;
}

    .status-step::before {
        content: "";
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--coral);
        box-shadow: 0 0 0 7px rgba(242, 125, 111, 0.16);
    }

.progress-track {
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: #eaf1f2;
}

.progress-fill {
    width: 52%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--leaf-green), var(--marigold));
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.88rem;
}

.section {
    margin-top: clamp(26px, 4vw, 42px);
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1.15;
    letter-spacing: 0;
}

.section-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.summary-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: clamp(18px, 4vw, 28px);
    border: 1px solid rgba(91, 155, 196, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--soft-shadow);
}

.summary-field {
    min-width: 0;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #fbfdf9);
    border: 1px solid rgba(230, 237, 240, 0.9);
}

    .summary-field span:first-child {
        display: block;
        margin-bottom: 5px;
        color: var(--muted);
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .summary-field span:last-child {
        display: block;
        overflow-wrap: anywhere;
        color: var(--ink);
        font-size: 1.02rem;
        font-weight: 750;
    }

.timeline-wrap {
    position: relative;
    padding: 6px 0 0;
}

.timeline {
    position: relative;
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .timeline::before {
        content: "";
        position: absolute;
        top: 18px;
        bottom: 18px;
        left: 18px;
        width: 3px;
        border-radius: 999px;
        background: linear-gradient(180deg, rgba(151, 169, 20, 0.75), rgba(249, 181, 29, 0.65), rgba(91, 155, 196, 0.24));
    }

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr);
    gap: 17px;
    align-items: start;
}

.timeline-dot {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    border: 3px solid var(--white);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(36, 64, 82, 0.14);
}

.timeline-item.completed .timeline-dot {
    background: var(--leaf-green);
}

    .timeline-item.completed .timeline-dot::before {
        content: "✓";
    }

.timeline-item.active .timeline-dot {
    background: var(--coral);
    box-shadow: 0 0 0 8px rgba(242, 125, 111, 0.14), 0 8px 18px rgba(36, 64, 82, 0.14);
}

    .timeline-item.active .timeline-dot::before {
        content: "!";
    }

.timeline-item.pending .timeline-dot {
    background: #b8c4c8;
}

    .timeline-item.pending .timeline-dot::before {
        content: "•";
        font-size: 1.2rem;
        line-height: 1;
    }

.timeline-content {
    min-width: 0;
    padding: 18px 20px;
    border: 1px solid rgba(91, 155, 196, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--soft-shadow);
}

.timeline-item.active .timeline-content {
    border-color: rgba(242, 125, 111, 0.32);
    background: linear-gradient(180deg, #ffffff, var(--blush));
}

.timeline-item.pending .timeline-content {
    background: rgba(255, 255, 255, 0.68);
    box-shadow: none;
}

.timeline-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 4px;
}

.timeline-content h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.04rem;
    line-height: 1.25;
    letter-spacing: 0;
}

.state-label {
    flex: 0 0 auto;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1;
}

.completed .state-label {
    color: var(--leaf-green-dark);
    background: var(--mint);
}

.active .state-label {
    color: var(--plum);
    background: #ffe5df;
}

.pending .state-label {
    color: #6b777c;
    background: #edf1f2;
}

.timeline-date {
    margin: 0 0 8px;
    color: var(--petal-blue-dark);
    font-size: 0.92rem;
    font-weight: 750;
}

.timeline-description {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
}

.timeline-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 12px;
    color: var(--petal-blue-dark);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
}

    .timeline-link::after {
        content: "→";
        margin-left: 7px;
    }

.support-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: clamp(20px, 4vw, 30px);
    border-radius: var(--radius);
    background: linear-gradient(135deg, #f7fbfd, #fff8e9);
    border: 1px solid rgba(91, 155, 196, 0.16);
}

    .support-band p {
        margin: 8px 0 0;
        color: var(--muted);
    }

.support-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--petal-blue);
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 22px rgba(91, 155, 196, 0.22);
}

.site-footer {
    border-top: 1px solid rgba(91, 155, 196, 0.16);
    background: rgba(255, 255, 255, 0.55);
}

.footer-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 24px var(--page-pad) 28px;
    color: var(--muted);
    font-size: 0.92rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    font-weight: 700;
}


/* =========================
   LANDING SCREEN
========================= */
.track-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
/*    padding-top: 40px;*/
    background: #eef2f6;
}

.track-card {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border: 1px solid #b9d5ff;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.track-icon {
    font-size: 54px;
    line-height: 1;
    margin-bottom: 18px;
}

.track-title {
    font-size: 20px;
    font-weight: 700;
    color: #173a69;
    margin-bottom: 10px;
}

.track-subtitle {
    color: #667085;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.track-input-group {
    display: flex;
    gap: 12px;
}

.track-input {
    flex: 1;
    height: 44px;
    border: 1px solid #7eb6ff;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 16px;
    outline: none;
}

    .track-input:focus {
        border-color: #5b9dff;
        box-shadow: 0 0 0 3px rgba(91,157,255,.15);
    }

.track-btn {
    width: 78px;
    border: none;
    border-radius: 8px;
    background: #8c9bb1;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

    .track-btn:hover {
        background: #76879f;
    }

@media (max-width: 576px) {

    .track-page {
        padding: 20px;
    }

    .track-card {
        padding: 30px 20px;
    }

    .track-input-group {
        flex-direction: column;
    }

    .track-btn {
        width: 100%;
        height: 44px;
    }
}

/*LANDING SCREEN-end*/
.footer-inner p {
    margin: 0;
}

@media (max-width: 1023px) {
    .status-hero {
        grid-template-columns: 1fr;
    }

    .status-panel {
        max-width: 560px;
    }
}

@media (max-width: 767px) {
    : root {
        --header-height: 76px;
        --radius: 22px;
    }

    .header-inner {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .brand-logo {
        width: 112px;
        height: 50px;
    }

    .header-action {
        padding: 9px 11px;
        font-size: 0.82rem;
    }

    main {
        padding-top: 22px;
    }

    .status-hero {
        padding: 22px 20px;
        border-radius: 24px;
    }

    .summary-card {
        grid-template-columns: 1fr;
    }

    .section-header {
        display: block;
    }

    .section-note {
        margin-top: 6px;
    }

    .timeline-content {
        padding: 16px;
    }

    .timeline-title-row {
        display: block;
    }

    .state-label {
        display: inline-flex;
        margin-top: 8px;
    }

    .support-band {
        grid-template-columns: 1fr;
        display: grid;
    }

    .support-link {
        width: 100%;
    }

    .footer-links {
        gap: 8px 14px;
    }
}

@media (max-width: 479px) {
    : root {
        --page-pad: 14px;
    }

    .header-action span {
        display: none;
    }

    .header-action {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
    }

        .header-action::before {
            width: 24px;
            height: 24px;
        }

    h1 {
        font-size: 1.85rem;
    }

    .status-panel,
    .summary-field,
    .timeline-content {
        border-radius: 18px;
    }

    .timeline-item {
        grid-template-columns: 33px minmax(0, 1fr);
        gap: 12px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-dot {
        width: 33px;
        height: 33px;
        font-size: 0.8rem;
    }
}

.copy-status {
    margin: 8px 0 0;
    font-size: 0.88rem;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 700;
    color: var(--leaf-green-dark);
    background: var(--mint);
    min-height: 1.2em;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.copy-status--hidden {
    opacity: 0;
}


