﻿/* Built as per 45-year senior architect spec - pure PHP + JS only, no dependencies, data collected first from all India */
:root {
    --brand-blue: #003087;
    --brand-green: #00c4b4;
    --brand-orange: #ff7a1a;
    --surface: #f1f5f9;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at 90% 10%, rgba(0, 196, 180, 0.12), transparent 35%),
        radial-gradient(circle at 10% 0%, rgba(0, 48, 135, 0.16), transparent 32%),
        var(--surface);
}

.route-tab {
    border: 0;
    background: transparent;
    color: #c6d6ff;
    font-weight: 600;
    padding: 0.7rem 1rem;
    border-bottom: 3px solid transparent;
}

.route-tab.is-active {
    color: #ffffff;
    border-bottom-color: var(--brand-green);
}

.hero-shell {
    background: linear-gradient(180deg, #003087 0%, #0a3c95 55%, #f1f5f9 55.1%, #f1f5f9 100%);
}

.hero-card {
    box-shadow: 0 25px 55px rgba(0, 48, 135, 0.18);
}

.route-chip {
    background: #e2f7f4;
    color: #0c5f59;
    border: 1px solid #a7e7e1;
}

.vendor-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vendor-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.15);
}

.temp-pill {
    background: #ebfffd;
    color: #0f766e;
    border: 1px solid #99f6e4;
}

.cta-orange {
    background: var(--brand-orange);
    color: #fff;
}

.cta-orange:hover {
    background: #e86d11;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    gap: 0.68rem;
    border: 0;
    background: linear-gradient(135deg, #0062e3 0%, #0d57c6 100%);
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    padding: 0.82rem 1.08rem 0.82rem 0.92rem;
    border-radius: 999px;
    box-shadow: 0 18px 34px rgba(6, 37, 60, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    background: linear-gradient(135deg, #0756c7 0%, #0948a5 100%);
    box-shadow: 0 22px 38px rgba(6, 37, 60, 0.28);
    transform: translateY(-1px);
}

.whatsapp-float-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: #25d366;
    box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.18);
    flex: 0 0 auto;
}

.whatsapp-float-label {
    white-space: nowrap;
    font-size: 0.96rem;
    line-height: 1;
}

.support-modal[hidden] {
    display: none;
}

.support-modal {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.support-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 12, 24, 0.72);
    backdrop-filter: blur(4px);
}

.support-modal-panel {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    max-height: 85vh;
    overflow: auto;
    border-radius: 1.6rem;
    background: #ffffff;
    box-shadow: 0 28px 60px rgba(5, 32, 60, 0.24);
    padding: 1.35rem;
}

.support-chat-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.support-chat-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #0062e3 0%, #0d57c6 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    flex: 0 0 auto;
}

.support-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 0;
    background: transparent;
    color: #4d5d72;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.support-modal-kicker {
    margin: 0;
    color: #0062e3;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.support-modal-panel h2 {
    margin: 0.5rem 0 0;
    color: #05203c;
    font-size: clamp(1.7rem, 4vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.support-modal-subtitle {
    margin: 0.5rem 0 0;
    color: #556577;
    font-size: 0.98rem;
    line-height: 1.6;
}

.support-chat-window {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
    padding: 1rem;
    min-height: 390px;
    max-height: 52vh;
    border: 1px solid #d8e7f7;
    border-radius: 1.35rem;
    background:
        linear-gradient(180deg, rgba(247, 251, 255, 0.94) 0%, rgba(241, 247, 253, 0.98) 100%);
    overflow: hidden;
}

.support-chat-messages {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    overflow-y: auto;
    padding-right: 0.15rem;
    padding-bottom: 0.35rem;
}

.support-chat-choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-self: flex-start;
    max-width: 92%;
}

.support-chat-bubble {
    max-width: 88%;
    padding: 0.95rem 1rem;
    border-radius: 1.25rem;
    line-height: 1.65;
    font-size: 0.98rem;
    box-shadow: 0 10px 22px rgba(5, 32, 60, 0.06);
}

.support-chat-bubble-bot {
    justify-self: start;
    border: 1px solid #d8e7f7;
    background: #f7fbff;
    color: #16324a;
}

.support-chat-bubble-bot strong,
.support-chat-bubble-bot span {
    display: block;
}

.support-chat-bubble-bot span {
    margin-top: 0.35rem;
    color: #5d718b;
}

.support-chat-bubble-user {
    justify-self: end;
    background: linear-gradient(135deg, #0062e3 0%, #0d57c6 100%);
    color: #ffffff;
}

.support-chat-bubble-user-summary {
    font-size: 0.94rem;
    line-height: 1.55;
}

.support-chat-choice {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.7rem 0.95rem;
    border: 1px solid #cfe0f2;
    border-radius: 999px;
    background: #ffffff;
    color: #05203c;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.support-chat-choice:hover,
.support-chat-choice:focus-visible {
    border-color: #87bcff;
    background: #eef6ff;
    transform: translateY(-1px);
}

.support-chat-composer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.7rem;
    margin-top: 1rem;
}

.support-chat-input {
    min-height: 52px;
    border: 1px solid #cfe0f2;
    border-radius: 999px;
    padding: 0 1rem;
    color: #05203c;
    font-weight: 700;
    outline: none;
    background: #ffffff;
}

.support-chat-input:focus {
    border-color: #0062e3;
    box-shadow: 0 0 0 4px rgba(0, 98, 227, 0.12);
}

.support-chat-send {
    min-width: 112px;
}

.support-chat-skip {
    min-width: 88px;
}

.support-chat-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.7rem;
}

.support-chat-reset {
    border: 0;
    background: transparent;
    color: #5d718b;
    font-weight: 700;
    cursor: pointer;
}

.support-primary-button,
.support-secondary-button {
    min-height: 52px;
    border-radius: 999px;
    padding: 0 1.2rem;
    font-weight: 800;
    border: 0;
    cursor: pointer;
}

.support-primary-button {
    background: #0062e3;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(0, 98, 227, 0.24);
}

.support-primary-button:hover,
.support-primary-button:focus-visible {
    background: #0756c7;
}

.support-primary-button[disabled] {
    opacity: 0.7;
    cursor: wait;
}

.support-secondary-button {
    background: #edf3fb;
    color: #4e6278;
}

.support-modal-error {
    margin-top: 0.8rem;
    color: #d14343;
    font-size: 0.9rem;
    font-weight: 700;
}

.support-modal-success {
    margin-top: 1rem;
    border-radius: 1.2rem;
    border: 1px solid #bce5c7;
    background: #edfdf1;
    padding: 1rem 1.05rem;
    color: #166534;
}

.support-modal-success strong {
    display: block;
    font-size: 1.02rem;
}

.support-modal-success p {
    margin: 0.3rem 0 0;
    line-height: 1.6;
}

.support-chat-success {
    margin-top: 1rem;
}

#vendorMap {
    width: 100%;
    height: 540px;
    border-radius: 1rem;
}

.mobile-scrollbar {
    scrollbar-width: thin;
}

@media (max-width: 768px) {
    #vendorMap {
        height: 380px;
    }
}

:root {
    --brand-navy: #05203c;
    --brand-blue: #0062e3;
    --brand-cyan: #00a7c5;
    --brand-mint: #7ce8ff;
    --brand-orange: #ffb700;
    --surface: #f5f7fb;
    --surface-soft: #eef3f8;
    --ink: #161f2d;
}

html {
    scroll-behavior: smooth;
}

body,
input,
select,
textarea,
button {
    font-family: "Manrope", sans-serif;
}

.site-body {
    background:
        radial-gradient(circle at top left, rgba(124, 232, 255, 0.2), transparent 24%),
        radial-gradient(circle at top right, rgba(0, 98, 227, 0.16), transparent 28%),
        linear-gradient(180deg, #eaf3ff 0%, #f5f7fb 360px, #f5f7fb 100%);
}

.site-header {
    background:
        radial-gradient(circle at 85% 14%, rgba(124, 232, 255, 0.28), transparent 18%),
        radial-gradient(circle at 10% 10%, rgba(0, 167, 197, 0.2), transparent 24%),
        linear-gradient(135deg, #05203c 0%, #073b6f 42%, #0062e3 100%);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.header-utility {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(4, 18, 36, 0.18);
    backdrop-filter: blur(8px);
}

.header-utility-link,
.header-nav-link {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}

.header-utility-link:hover,
.header-nav-link:hover {
    color: #ffffff;
}

.header-link-cluster {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.32rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(5, 32, 60, 0.18);
    backdrop-filter: blur(8px);
}

.header-link-cluster .header-nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 0.9rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.header-link-cluster .header-nav-primary {
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    box-shadow: none;
}

.header-link-cluster .header-nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.header-link-cluster .header-nav-primary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: #fff;
    text-decoration: none;
}

.brand-lockup strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.brand-subtitle {
    display: block;
    margin-top: 0.18rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
}

.brand-mark {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 999px;
    background:
        radial-gradient(circle at 32% 32%, #7ce8ff 0, #7ce8ff 28%, transparent 30%),
        linear-gradient(135deg, #00a7c5 0%, #00b8ff 48%, #7ce8ff 100%);
    box-shadow: 0 12px 24px rgba(1, 20, 42, 0.22);
}

.header-account-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1.1rem;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--brand-navy);
    font-weight: 800;
    cursor: pointer;
}

.login-modal[hidden] {
    display: none;
}

.login-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.login-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 12, 24, 0.72);
    backdrop-filter: blur(3px);
}

.login-modal-panel {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    border-radius: 0.55rem;
    background: #ffffff;
    max-height: 85vh;
    overflow: auto;
    padding: clamp(1.25rem, 4vw, 2.65rem);
    color: #161f2d;
    box-shadow: 0 30px 80px rgba(1, 20, 42, 0.35);
}

.login-modal-close {
    position: absolute;
    top: 1.45rem;
    right: 1.55rem;
    border: 0;
    background: transparent;
    color: #07101d;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.login-modal-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: #0062e3;
    text-decoration: none;
}

.login-modal-brand strong {
    font-size: clamp(1.65rem, 5vw, 2.25rem);
    letter-spacing: -0.04em;
}

.login-modal-panel h2 {
    margin: 1.35rem 0 0.55rem;
    color: #161f2d;
    font-size: clamp(1.85rem, 5vw, 2.45rem);
    font-weight: 900;
    letter-spacing: -0.055em;
}

.login-modal-panel p {
    margin: 0;
    color: #3d4b5f;
    font-size: 1.02rem;
    line-height: 1.75;
}

.login-auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    margin-top: 1.25rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: #eef3f8;
}

.login-auth-tabs button {
    min-height: 2.55rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #44566c;
    cursor: pointer;
    font-weight: 900;
}

.login-auth-tabs button.is-active {
    background: #ffffff;
    color: #0062e3;
    box-shadow: 0 8px 18px rgba(5, 32, 60, 0.12);
}

.login-tab-panel[hidden] {
    display: none;
}

.login-shipper-mode[hidden],
.login-vendor-mode[hidden] {
    display: none;
}

.login-vendor-mode h3 {
    margin: 1rem 0 0.35rem;
    color: #05203c;
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.login-role-line {
    display: grid;
    gap: 0.6rem;
    margin-top: 1rem;
}

.login-role-line > span {
    color: #41536a;
    font-size: 0.9rem;
    font-weight: 900;
}

.login-modal-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1rem;
}

.login-modal-actions-single {
    grid-template-columns: 1fr;
}

.login-demo-form {
    margin-top: 0.85rem;
}

.login-field-grid {
    display: grid;
    gap: 0.85rem;
}

.login-field-grid label {
    display: grid;
    gap: 0.4rem;
    color: #41536a;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.login-field-grid input {
    min-height: 3.15rem;
    width: 100%;
    border: 1px solid #cfe0f2;
    border-radius: 0.8rem;
    background: #ffffff;
    color: #161f2d;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0;
    padding: 0 1rem;
    text-transform: none;
    outline: none;
}

.login-role-helper {
    margin-top: 0.6rem !important;
    color: #5d6c80 !important;
    font-size: 0.84rem !important;
    font-weight: 800;
    line-height: 1.4 !important;
}

.login-field-grid input:focus {
    border-color: #0062e3;
    box-shadow: 0 0 0 4px rgba(0, 98, 227, 0.12);
}

.login-choice-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3.8rem;
    border: 0;
    border-radius: 0.5rem;
    background: #0062e3;
    color: #ffffff;
    cursor: pointer;
    font-weight: 900;
    text-align: center;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.login-choice-button span {
    font-size: 1.05rem;
}

.login-choice-button:hover,
.login-choice-button:focus-visible {
    background: #0756c7;
    box-shadow: 0 12px 26px rgba(0, 98, 227, 0.26);
    transform: translateY(-1px);
    outline: none;
}

.login-role-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    margin-top: 0;
    padding: 0.35rem;
    border-radius: 999px;
    background: #eef3f8;
}

.login-role-switch button {
    min-height: 2.45rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #44566c;
    cursor: pointer;
    font-weight: 900;
}

.login-role-switch button.is-active {
    background: #ffffff;
    color: #0062e3;
    box-shadow: 0 8px 18px rgba(5, 32, 60, 0.12);
}

.login-remember {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1rem;
    color: #263546;
    font-size: 1rem;
    font-weight: 700;
}

.login-remember input {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #0062e3;
}

.login-mode-link {
    display: block;
    width: 100%;
    margin-top: 1rem;
    border: 0;
    background: transparent;
    color: #0062e3;
    cursor: pointer;
    font-weight: 900;
    text-align: center;
}

.login-mode-link:hover,
.login-mode-link:focus-visible {
    color: #05203c;
    text-decoration: underline;
    outline: none;
}

.login-modal-note {
    margin-top: 0.85rem !important;
    color: #6b7788 !important;
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
}

.login-modal-note a {
    color: #0062e3;
    text-decoration: none;
    font-weight: 700;
}

.login-modal-note.compact {
    margin-top: 0.75rem !important;
}

.login-modal-open {
    overflow: hidden;
}

.route-tabs-shell {
    display: inline-flex;
    gap: 0.5rem;
    padding: 0.45rem;
    margin-top: 0.35rem;
    margin-bottom: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(8, 39, 72, 0.62);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 28px rgba(4, 21, 40, 0.18);
}

.route-tab {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
    padding: 0.82rem 1.25rem;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.route-tab.is-active {
    color: var(--brand-navy);
    background: #fff;
    transform: translateY(-1px);
}

.hero-shell {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(5, 32, 60, 0) 0%, rgba(5, 32, 60, 0) 58%, #f5f7fb 58.1%, #f5f7fb 100%);
}

.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: end;
}

.hero-kicker,
.section-eyebrow {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7ce8ff;
}

.hero-copy {
    max-width: 44rem;
    margin-top: 1rem;
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
}

.hero-stats {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-stat {
    padding: 1rem 1.1rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.hero-stat strong {
    display: block;
    color: #fff;
    font-size: 1.25rem;
}

.hero-stat span {
    display: block;
    margin-top: 0.32rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
    line-height: 1.55;
}

.hero-aside-card {
    padding: 1.5rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 26px 60px rgba(3, 18, 34, 0.22);
    backdrop-filter: blur(10px);
}

.hero-aside-label {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.trend-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.trend-link:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.trend-link strong,
.trend-link span {
    display: block;
}

.trend-link strong {
    font-size: 1rem;
}

.trend-link span:last-child {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
}

.hero-card {
    border-radius: 2rem;
    background: #fff;
    box-shadow: 0 28px 70px rgba(5, 32, 60, 0.18);
}

.hero-search-card,
.search-refine-card,
.search-filter-panel,
.map-card,
.feature-card,
.vendor-result-card,
.no-results-card,
.search-results-hero {
    border: 1px solid rgba(5, 32, 60, 0.08);
}

.hero-search-card {
    padding: 1.2rem;
}

.search-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0.4rem 1rem;
}

.search-product-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.product-pill {
    padding: 0.72rem 1rem;
    border: 1px solid #d6e3f2;
    border-radius: 999px;
    background: #fff;
    color: #53657d;
    font-size: 0.92rem;
    font-weight: 800;
}

.product-pill.is-active {
    background: var(--brand-navy);
    border-color: var(--brand-navy);
    color: #fff;
}

.search-meta-note {
    color: #5d718b;
    font-size: 0.94rem;
}

.search-fields-grid {
    display: grid;
    gap: 0.8rem;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 88px;
    padding: 1rem 1.05rem;
    border: 1px solid #d7e0eb;
    border-radius: 1.4rem;
    background: #fff;
    position: relative;
    overflow: visible;
}

.search-field span,
.filter-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5d718b;
}

.search-field input,
.search-field select,
.filter-input {
    width: 100%;
    border: 0;
    outline: none;
    padding: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 700;
}

.search-field.has-open-suggestions {
    z-index: 20;
}

.location-suggestions {
    position: absolute;
    top: calc(100% - 0.35rem);
    left: 0;
    right: 0;
    border: 1px solid #cfe0f2;
    border-radius: 1.1rem;
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(5, 32, 60, 0.14);
    padding: 0.45rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    max-height: 280px;
    overflow-y: auto;
}

.location-suggestion-item {
    width: 100%;
    border: 0;
    border-radius: 0.9rem;
    background: transparent;
    padding: 0.85rem 0.9rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
}

.location-suggestion-item:hover,
.location-suggestion-item.is-active {
    background: #e7f3ff;
}

.location-suggestion-label {
    display: block;
    color: #05203c;
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.3;
}

.location-input-helper {
    margin-top: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
}

.location-input-helper.is-error {
    color: #c2410c;
}

.location-input-helper.is-success {
    color: #2563eb;
}

.filter-input {
    min-height: 48px;
    margin-top: 0.45rem;
    padding: 0 0.95rem;
    border: 1px solid #d7e0eb;
    border-radius: 1rem;
    background: #fff;
    font-size: 0.96rem;
    font-weight: 600;
}

.search-submit-wrap {
    display: flex;
    align-items: stretch;
}

.search-submit-button,
.cta-orange,
.promo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    white-space: nowrap;
    padding: 0 1.4rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffb700 0%, #ff9300 100%);
    color: #05203c;
    font-weight: 800;
    box-shadow: 0 12px 22px rgba(255, 183, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-submit-button:hover,
.cta-orange:hover,
.promo-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(255, 183, 0, 0.4);
}

.section-heading-row {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.section-heading {
    margin-top: 0.35rem;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--brand-navy);
}

.trust-strip {
    padding-top: 1rem;
    padding-bottom: 1.25rem;
}

.trust-strip-header {
    display: grid;
    gap: 0.35rem;
    justify-items: start;
    margin-bottom: 1.15rem;
}

.trust-strip-title {
    margin: 0;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #05203c;
}

.trust-metric-card {
    min-height: 146px;
    box-shadow: 0 18px 36px rgba(7, 39, 77, 0.08);
}

.trust-metric-value {
    line-height: 1;
}

.trust-strip-note {
    max-width: 44rem;
    color: #617180;
}

.faq-grid {
    display: grid;
    gap: 1.2rem;
}

.faq-column {
    display: grid;
}

.faq-item {
    border-bottom: 1px solid #d9e3ee;
}

.faq-question {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #05203c;
    cursor: pointer;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: #05203c;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.faq-answer {
    padding: 0 0 1.15rem;
}

.faq-answer p {
    margin: 0;
    max-width: 46rem;
    line-height: 1.75;
    color: #617180;
}

.site-footer {
    background: #05203c;
}

.footer-top-grid {
    display: grid;
    gap: 2.5rem;
}

.footer-top-grid-four {
    grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(180px, 1fr));
    align-items: start;
    column-gap: 2.25rem;
}

.footer-brand-column {
    display: grid;
    align-content: start;
    gap: 1rem;
}

.footer-locale-pill {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    width: fit-content;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.footer-intro {
    max-width: 21rem;
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.72);
}

.footer-link-column {
    display: grid;
    align-content: start;
    min-width: 0;
}

.footer-heading-sub {
    margin-top: 1.45rem;
}

.footer-links-sub {
    margin-top: 0.9rem;
}

.footer-links {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
}

.footer-links a,
.footer-links span {
    color: inherit;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #7ce8ff;
}

.footer-bottom-row {
    display: grid;
    gap: 0.65rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-copy {
    margin: 0;
    max-width: 58rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
}

.footer-bottom-copy-strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.policy-hero {
    padding: 3rem 0 1.2rem;
}

.policy-shell {
    display: grid;
    gap: 1.4rem;
}

.policy-shell h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #05203c;
}

.policy-shell p {
    margin: 0;
    max-width: 52rem;
    color: #617180;
    line-height: 1.8;
}

.policy-grid {
    display: grid;
    gap: 1.25rem;
}

.policy-card {
    border: 1px solid rgba(5, 32, 60, 0.08);
    border-radius: 2rem;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(15, 39, 64, 0.07);
    padding: 1.8rem;
}

.policy-card h2 {
    margin: 0;
    color: #05203c;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.policy-card p {
    margin-top: 0.9rem;
    color: #617180;
    line-height: 1.8;
}

.policy-card ul {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    color: #617180;
    line-height: 1.8;
}

.policy-inline-note {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: #e7f3ff;
    color: #0062e3;
    font-size: 0.9rem;
    font-weight: 700;
}

.section-link {
    color: var(--brand-blue);
    font-weight: 800;
}

.route-chip {
    background: #fff;
    color: var(--brand-navy);
    border: 1px solid #d7e0eb;
    box-shadow: 0 10px 20px rgba(5, 32, 60, 0.06);
}

.feature-card {
    padding: 1.6rem;
    border-radius: 1.8rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 18px 34px rgba(5, 32, 60, 0.08);
}

.feature-card h3 {
    margin-top: 0.6rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--brand-navy);
}

.feature-card p:last-child {
    margin-top: 0.8rem;
    color: #5d718b;
    line-height: 1.7;
}

.promo-panel {
    display: grid;
    gap: 2rem;
    padding: 2rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at 100% 0%, rgba(124, 232, 255, 0.22), transparent 25%),
        linear-gradient(135deg, #05203c 0%, #0c4ea3 100%);
    box-shadow: 0 24px 60px rgba(5, 32, 60, 0.22);
}

.promo-panel-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.promo-button {
    width: fit-content;
    text-decoration: none;
}

.search-results-hero,
.search-refine-card,
.search-filter-panel,
.map-card,
.no-results-card,
.vendor-result-card {
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 18px 34px rgba(5, 32, 60, 0.08);
}

.search-results-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.6rem 1.8rem;
}

.view-toggle-button {
    min-height: 46px;
    padding: 0 1rem;
    border-radius: 999px;
    border: 1px solid #d7e0eb;
    background: #fff;
    color: #5d718b;
    font-weight: 800;
}

.view-toggle-button.is-active {
    border-color: var(--brand-navy);
    background: var(--brand-navy);
    color: #fff;
}

.success-banner {
    padding: 1rem 1.2rem;
    border-radius: 1.4rem;
    border: 1px solid #bce5c7;
    background: #edfdf1;
    color: #146534;
}

.search-refine-card {
    padding: 1rem;
}

.compact-search-grid .search-field {
    min-height: 82px;
}

.search-filter-panel {
    padding: 1.4rem;
    height: fit-content;
}

@media (min-width: 1024px) {
    .search-filter-panel {
        position: sticky;
        top: 1.5rem;
        max-height: calc(100vh - 3rem);
        overflow-y: auto;
    }
}

.vendor-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vendor-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 44px rgba(5, 32, 60, 0.12);
}

.vendor-result-card {
    padding: 1.5rem;
}

.vendor-result-grid {
    display: grid;
    gap: 1.5rem;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: #e9f5ff;
    color: #0052b8;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.result-badge.muted {
    background: #f0f4f9;
    color: #5d718b;
}

.temp-pill {
    background: #e9fbff;
    color: #086777;
    border: 1px solid #b7eef8;
}

.vendor-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-content: start;
}

.metric-pill {
    min-width: 120px;
    padding: 0.95rem 1rem;
    border-radius: 1.25rem;
    background: #f4f7fb;
}

.metric-pill span {
    display: block;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7d92;
}

.metric-pill strong {
    display: block;
    margin-top: 0.3rem;
    color: var(--brand-navy);
    font-size: 1.02rem;
}

.vendor-pricing {
    text-align: left;
}

.secondary-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 1.2rem;
    border-radius: 999px;
    border: 1px solid #d7e0eb;
    color: var(--brand-navy);
    font-weight: 800;
}

.map-card {
    padding: 1rem;
}

.no-results-card {
    padding: 2rem;
    color: #4f6077;
}

.site-footer {
    background: #0b1727;
    color: #fff;
}

.brand-lockup-footer .brand-subtitle {
    color: rgba(255, 255, 255, 0.58);
}

.footer-heading {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}

.footer-links {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    gap: 0.68rem;
    border: 0;
    background: linear-gradient(135deg, #0062e3 0%, #0d57c6 100%);
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    padding: 0.82rem 1.08rem 0.82rem 0.92rem;
    border-radius: 999px;
    box-shadow: 0 18px 34px rgba(6, 37, 60, 0.24);
    cursor: pointer;
}

#vendorMap {
    width: 100%;
    height: 540px;
    border-radius: 1.3rem;
}

.mobile-scrollbar {
    scrollbar-width: thin;
}

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.7fr);
    }

    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .search-fields-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .compact-search-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .vendor-result-grid {
        grid-template-columns: minmax(0, 1.5fr) auto minmax(260px, 0.8fr);
        align-items: center;
    }

    .vendor-pricing {
        text-align: right;
    }

    .promo-panel {
        grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
        align-items: center;
    }
}

@media (max-width: 768px) {
    .route-tabs-shell {
        width: 100%;
        overflow-x: auto;
    }

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

    .trust-metric-card {
        min-height: 0;
    }

    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1.25rem;
    }

    .footer-top-grid,
    .footer-top-grid-four {
        grid-template-columns: minmax(240px, 1.1fr) repeat(3, minmax(170px, 1fr));
        column-gap: 1.8rem;
    }

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

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 0.72rem 0.9rem 0.72rem 0.76rem;
    }

    .whatsapp-float-label {
        font-size: 0.92rem;
    }

    .support-modal-panel {
        padding: 1.1rem;
        border-radius: 1.1rem;
    }

    .support-chat-composer {
        grid-template-columns: minmax(0, 1fr);
    }

    .support-chat-send,
    .support-chat-skip {
        width: 100%;
    }

    #vendorMap {
        height: 380px;
    }
}

@media (max-width: 900px) {
    .footer-top-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 1.25rem;
    }

    .footer-intro {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer-top-grid-four {
        grid-template-columns: minmax(0, 1fr);
    }
}

.hero-shell {
    background:
        radial-gradient(circle at 82% 18%, rgba(124, 232, 255, 0.18), transparent 18%),
        radial-gradient(circle at 12% 8%, rgba(0, 167, 197, 0.16), transparent 22%),
        linear-gradient(180deg, #08345f 0%, #0a477f 26%, #115c9c 62%, #f5f7fb 62.1%, #f5f7fb 100%);
}

.hero-shell-has-image {
    background:
        linear-gradient(180deg, rgba(5, 32, 60, 0.34) 0%, rgba(5, 32, 60, 0.26) 26%, rgba(5, 32, 60, 0.2) 62%, #f5f7fb 62.1%, #f5f7fb 100%),
        var(--hero-image) center top / cover no-repeat;
}

.hero-title {
    color: #ffffff;
    text-shadow: 0 8px 26px rgba(5, 32, 60, 0.28);
}

.hero-copy {
    color: rgba(255, 255, 255, 0.92);
}

.hero-stat {
    background: linear-gradient(180deg, rgba(7, 42, 77, 0.96), rgba(24, 88, 144, 0.92));
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 16px 28px rgba(4, 21, 40, 0.14);
}

.hero-stat span {
    color: rgba(255, 255, 255, 0.86);
}

.hero-aside-card {
    background: linear-gradient(180deg, rgba(8, 36, 66, 0.92), rgba(16, 74, 126, 0.82));
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 40px rgba(4, 21, 40, 0.2);
}

.hero-image-wrap {
    position: relative;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.hero-image-wrap::before {
    content: "";
    position: absolute;
    inset: auto 14% -6% 14%;
    height: 58%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(124, 232, 255, 0.34), rgba(124, 232, 255, 0));
    filter: blur(28px);
}

.hero-image {
    position: relative;
    z-index: 1;
    width: min(100%, 880px);
    height: auto;
    display: block;
    filter: drop-shadow(0 26px 50px rgba(3, 18, 34, 0.2));
}

.hero-aside-label {
    color: rgba(255, 255, 255, 0.82);
}

.trend-link {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.trend-link strong {
    color: #ffffff;
}

.trend-link span {
    color: rgba(255, 255, 255, 0.9);
}

.trend-link span:last-child {
    color: #d9f6ff;
}

.hero-stat::before,
.hero-aside-card::before,
.trend-link::before {
    content: none;
}

@media (max-width: 768px) {
    .hero-image-wrap {
        margin-top: 1.5rem;
    }
}

:root {
    --brand-navy: #0f2740;
    --brand-blue: #1f5f8b;
    --brand-cyan: #2f7ea1;
    --brand-mint: #b7d9e8;
    --brand-orange: #d9a441;
    --surface: #f4f6f8;
    --surface-soft: #e9eef2;
    --ink: #1e2933;
}

.site-body {
    background:
        radial-gradient(circle at top left, rgba(183, 217, 232, 0.18), transparent 24%),
        radial-gradient(circle at top right, rgba(31, 95, 139, 0.12), transparent 28%),
        linear-gradient(180deg, #edf2f6 0%, #f4f6f8 360px, #f4f6f8 100%);
}

.site-header {
    background:
        radial-gradient(circle at 85% 14%, rgba(183, 217, 232, 0.18), transparent 18%),
        radial-gradient(circle at 10% 10%, rgba(47, 126, 161, 0.16), transparent 24%),
        linear-gradient(135deg, #10263d 0%, #183c5b 44%, #215f8a 100%);
}

.header-utility {
    background: rgba(9, 24, 39, 0.26);
}

.brand-mark {
    background:
        radial-gradient(circle at 32% 32%, #f0f7fb 0, #f0f7fb 22%, transparent 24%),
        linear-gradient(135deg, #3e8aa8 0%, #86b9ce 52%, #d7ebf4 100%);
}

.route-tabs-shell {
    background: rgba(14, 38, 61, 0.72);
    border-color: rgba(255, 255, 255, 0.12);
}

.route-tab.is-active {
    color: #10263d;
    background: #f8fbfd;
}

.hero-shell {
    background:
        radial-gradient(circle at 82% 18%, rgba(183, 217, 232, 0.18), transparent 18%),
        radial-gradient(circle at 12% 8%, rgba(47, 126, 161, 0.14), transparent 22%),
        linear-gradient(180deg, #12304d 0%, #1a476a 28%, #2b688e 62%, #f4f6f8 62.1%, #f4f6f8 100%);
}

.hero-shell-has-image {
    background:
        linear-gradient(180deg, rgba(15, 39, 64, 0.48) 0%, rgba(15, 39, 64, 0.36) 28%, rgba(15, 39, 64, 0.24) 62%, #f4f6f8 62.1%, #f4f6f8 100%),
        var(--hero-image) center top / cover no-repeat;
}

.hero-kicker,
.section-eyebrow {
    color: #7fb4ca;
}

.hero-title {
    text-shadow: 0 10px 30px rgba(7, 20, 33, 0.24);
}

.hero-copy {
    color: rgba(255, 255, 255, 0.88);
}

.hero-stat {
    background: linear-gradient(180deg, rgba(18, 48, 77, 0.96), rgba(31, 95, 139, 0.92));
    box-shadow: 0 18px 30px rgba(8, 21, 34, 0.16);
}

.hero-aside-card {
    background: linear-gradient(180deg, rgba(14, 39, 61, 0.94), rgba(33, 95, 138, 0.84));
}

.trend-link {
    background: rgba(255, 255, 255, 0.07);
}

.trend-link:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero-card,
.search-results-hero,
.search-refine-card,
.search-filter-panel,
.map-card,
.no-results-card,
.vendor-result-card,
.feature-card {
    box-shadow: 0 18px 34px rgba(15, 39, 64, 0.07);
}

.product-pill {
    border-color: #d7e2ea;
    color: #546577;
}

.product-pill.is-active {
    background: var(--brand-navy);
    border-color: var(--brand-navy);
}

.search-field {
    border-color: #d8e2ea;
    background: #fcfdfe;
}

.search-field span,
.filter-label,
.search-meta-note {
    color: #657789;
}

.search-submit-button,
.cta-orange,
.promo-button {
    background: linear-gradient(135deg, #d9a441 0%, #c8891f 100%);
    color: #fffdf7;
    box-shadow: 0 12px 24px rgba(201, 137, 31, 0.24);
}

.search-submit-button:hover,
.cta-orange:hover,
.promo-button:hover {
    box-shadow: 0 16px 28px rgba(201, 137, 31, 0.28);
}

.secondary-action-button {
    border-color: #cfd9e2;
    color: var(--brand-navy);
    background: #ffffff;
}

.route-chip {
    background: #fbfcfd;
    color: #17324a;
    border-color: #d7e2ea;
}

.section-heading {
    color: #11283f;
}

.section-link {
    color: #2b688e;
}

.feature-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.feature-card p:last-child,
.no-results-card,
.metric-pill span,
.footer-links,
.search-results-hero p,
.success-banner + * {
    color: #617180;
}

.result-badge {
    background: #e7f0f5;
    color: #1d5677;
}

.result-badge.muted {
    background: #eef2f5;
    color: #60707e;
}

.temp-pill {
    background: #edf7f8;
    color: #255f69;
    border-color: #cfe5e8;
}

.metric-pill {
    background: #f2f5f7;
}

.site-footer {
    background: #101c29;
}

.footer-heading {
    color: rgba(255, 255, 255, 0.52);
}

/* Skyscanner-aligned palette pass: Dark Sky + Sky Blue */
:root {
    --brand-navy: #05203c;
    --brand-blue: #0062e3;
    --brand-cyan: #00a6d6;
    --brand-mint: #7ce8ff;
    --brand-orange: #ff7b59;
    --surface: #f1f5f9;
    --surface-soft: #e7f3ff;
    --ink: #161f2d;
}

.site-body {
    background:
        radial-gradient(circle at 0% 0%, rgba(124, 232, 255, 0.28), transparent 24%),
        radial-gradient(circle at 100% 0%, rgba(0, 98, 227, 0.2), transparent 30%),
        linear-gradient(180deg, #e7f3ff 0%, #f1f5f9 420px, #f1f5f9 100%);
}

.site-header {
    background:
        radial-gradient(circle at 86% 12%, rgba(124, 232, 255, 0.28), transparent 18%),
        linear-gradient(135deg, #05203c 0%, #073b6f 46%, #0062e3 100%);
}

.header-utility {
    background: rgba(5, 32, 60, 0.34);
}

.brand-mark {
    background:
        radial-gradient(circle at 32% 32%, #7ce8ff 0, #7ce8ff 25%, transparent 27%),
        linear-gradient(135deg, #0062e3 0%, #00a6d6 54%, #7ce8ff 100%);
}

.route-tabs-shell {
    background: rgba(5, 32, 60, 0.68);
    border-color: rgba(255, 255, 255, 0.18);
}

.route-tab {
    color: rgba(255, 255, 255, 0.78);
}

.route-tab.is-active {
    background: #ffffff;
    color: #05203c;
    box-shadow: none;
    transform: translateY(-1px);
}

.hero-shell {
    background:
        radial-gradient(circle at 82% 14%, rgba(124, 232, 255, 0.22), transparent 20%),
        radial-gradient(circle at 12% 10%, rgba(0, 166, 214, 0.16), transparent 24%),
        linear-gradient(180deg, #05203c 0%, #083b75 30%, #0062e3 62%, #f1f5f9 62.1%, #f1f5f9 100%);
}

.hero-shell-has-image {
    background:
        linear-gradient(180deg, rgba(5, 32, 60, 0.5) 0%, rgba(5, 32, 60, 0.36) 30%, rgba(0, 98, 227, 0.28) 62%, #f1f5f9 62.1%, #f1f5f9 100%),
        var(--hero-image) center top / cover no-repeat;
}

.hero-kicker {
    color: #7ce8ff;
}

.section-eyebrow {
    color: #0062e3;
}

.hero-title {
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(5, 32, 60, 0.35);
}

.hero-copy {
    color: rgba(255, 255, 255, 0.9);
}

.hero-stat {
    background: linear-gradient(180deg, rgba(5, 32, 60, 0.92), rgba(7, 59, 111, 0.88));
    border-color: rgba(124, 232, 255, 0.18);
}

.hero-aside-card {
    background: linear-gradient(180deg, rgba(5, 32, 60, 0.94), rgba(7, 59, 111, 0.88));
    border-color: rgba(124, 232, 255, 0.16);
}

.trend-link {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(124, 232, 255, 0.12);
}

.trend-link:hover {
    background: rgba(124, 232, 255, 0.13);
}

.search-submit-button,
.cta-orange,
.promo-button {
    background: #0062e3;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(0, 98, 227, 0.28);
}

.search-submit-button:hover,
.cta-orange:hover,
.promo-button:hover {
    background: #0756c7;
    box-shadow: 0 18px 34px rgba(0, 98, 227, 0.34);
}

.secondary-action-button {
    border-color: #c7d7e8;
    background: #ffffff;
    color: #05203c;
}

.hero-shell .secondary-action-button {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.36);
}

.product-pill.is-active,
.view-toggle-button.is-active {
    background: #05203c;
    border-color: #05203c;
    color: #ffffff;
}

.search-field,
.filter-input {
    border-color: #cfe0f2;
    background: #ffffff;
}

.route-chip {
    background: #ffffff;
    color: #05203c;
    border-color: #cfe0f2;
}

.route-chip:hover {
    background: #e7f3ff;
    border-color: #9ecbff;
}

.section-heading,
.feature-card h3,
.metric-pill strong {
    color: #05203c;
}

.section-link,
.feature-card a {
    color: #0062e3;
}

.feature-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.result-badge {
    background: #e7f3ff;
    color: #0050b8;
}

.temp-pill {
    background: #e8fbff;
    color: #006f88;
    border-color: #bdeef8;
}

.promo-panel {
    background:
        radial-gradient(circle at 100% 0%, rgba(124, 232, 255, 0.24), transparent 24%),
        linear-gradient(135deg, #05203c 0%, #073b6f 48%, #0062e3 100%);
}

.site-footer {
    background: #05203c;
}

.vendor-profile-page {
    color: #161f2d;
}

.vendor-profile-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.35rem;
    border: 1px solid #cfe0f2;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 34px rgba(5, 32, 60, 0.1);
    backdrop-filter: blur(16px);
}

.vendor-profile-header h1 {
    margin: 0;
    color: #05203c;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.05em;
}

.vendor-type-badge,
.verified-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vendor-type-badge {
    background: #e7f3ff;
    color: #0050b8;
}

.verified-badge {
    background: #e9fbf1;
    color: #0b7a3d;
}

.vendor-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.75rem;
    color: #5c6f83;
    font-size: 0.95rem;
}

.vendor-header-meta span {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: #f3f8fd;
}

.vendor-availability-panel {
    display: grid;
    gap: 0.65rem;
    min-width: min(100%, 280px);
    padding: 1rem;
    border-radius: 1.4rem;
    background: #05203c;
    color: #ffffff;
    font-weight: 800;
}

.availability-green,
.availability-red {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
}

.availability-green {
    background: #00a86b;
}

.availability-red {
    background: #d64d4d;
}

.vendor-profile-grid {
    display: grid;
    gap: 1.5rem;
}

.vendor-profile-card,
.vendor-action-card {
    border: 1px solid #cfe0f2;
    border-radius: 2rem;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(5, 32, 60, 0.08);
}

.vendor-profile-card {
    padding: 1.5rem;
}

.vendor-action-card {
    height: fit-content;
    padding: 1.35rem;
}

.vendor-action-card h2 {
    margin-top: 0.7rem;
    color: #05203c;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.vendor-section-heading p {
    margin: 0;
    color: #0062e3;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.vendor-section-heading h2 {
    margin-top: 0.45rem;
    color: #05203c;
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.vendor-spec-grid {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.25rem;
}

.vendor-spec-grid > div {
    padding: 1rem;
    border: 1px solid #d8e8f7;
    border-radius: 1.3rem;
    background: #f8fbff;
}

.vendor-spec-grid span {
    display: block;
    color: #60778e;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vendor-spec-grid strong {
    display: block;
    margin-top: 0.45rem;
    color: #102944;
    font-size: 1rem;
    line-height: 1.45;
}

.temp-graph {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    border-radius: 1.6rem;
    background:
        linear-gradient(rgba(255, 255, 255, 0.64) 1px, transparent 1px) 0 0 / 100% 36px,
        linear-gradient(90deg, rgba(255, 255, 255, 0.64) 1px, transparent 1px) 0 0 / 72px 100%,
        linear-gradient(135deg, #05203c 0%, #073b6f 52%, #0062e3 100%);
}

.temp-graph-line {
    position: absolute;
    inset: 38% 5% auto 5%;
    height: 4px;
    border-radius: 999px;
    background: #7ce8ff;
    box-shadow: 0 0 22px rgba(124, 232, 255, 0.82);
    transform: rotate(-1deg);
}

.temp-graph-dots::before,
.temp-graph-dots::after {
    content: "";
    position: absolute;
    top: 34%;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 0 0 5px rgba(124, 232, 255, 0.22);
}

.temp-graph-dots::before {
    left: 26%;
}

.temp-graph-dots::after {
    right: 24%;
}

.temp-graph span {
    position: absolute;
    left: 1.2rem;
    bottom: 1rem;
    color: #ffffff;
    font-weight: 800;
}

.vendor-shipments-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 720px;
    overflow: hidden;
    border: 1px solid #d8e8f7;
    border-radius: 1.2rem;
}

.vendor-shipments-table th,
.vendor-shipments-table td {
    padding: 0.9rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e7f0fa;
}

.vendor-shipments-table th {
    background: #e7f3ff;
    color: #05203c;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vendor-shipments-table td {
    color: #4b6075;
    font-size: 0.93rem;
}

.vendor-photo-grid {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.25rem;
}

.vendor-photo-placeholder {
    min-height: 150px;
    display: flex;
    align-items: end;
    padding: 1rem;
    border-radius: 1.4rem;
    background:
        radial-gradient(circle at 78% 20%, rgba(124, 232, 255, 0.28), transparent 20%),
        linear-gradient(135deg, #05203c 0%, #073b6f 54%, #0062e3 100%);
    color: #ffffff;
    font-weight: 800;
}

.vendor-whatsapp-button {
    display: flex;
    justify-content: center;
    margin-top: 0.9rem;
    padding: 1rem;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

@media (min-width: 900px) {
    .vendor-profile-grid {
        grid-template-columns: minmax(0, 1fr) 360px;
        align-items: start;
    }

    .vendor-action-card {
        position: static;
    }

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

    .vendor-photo-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.hero-shell-has-image {
    background:
        radial-gradient(circle at 82% 18%, rgba(124, 232, 255, 0.16), transparent 20%),
        linear-gradient(180deg, #05203c 0%, #083b75 30%, #0062e3 62%, #f1f5f9 62.1%, #f1f5f9 100%);
}

.hero-grid-minimal {
    align-items: center;
    gap: 2.5rem;
}

.hero-copy-column {
    max-width: 100%;
}

.hero-title-minimal {
    max-width: 34ch;
    letter-spacing: -0.04em;
    text-wrap: auto;
}

.hero-copy-minimal {
    margin-top: 1.5rem;
    max-width: 56rem;
    font-size: 1.24rem;
    line-height: 1.82;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    align-items: center;
}

.hero-text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 1.25rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 800;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-text-link:hover,
.hero-text-link:focus-visible {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.16);
}

.hero-caption {
    max-width: 54rem;
    font-size: 1rem;
    line-height: 1.82;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.76);
}

@media (min-width: 900px) {
    .hero-grid.hero-grid-minimal {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-copy-column {
        width: 75%;
        max-width: 75%;
    }

    .hero-actions .search-submit-button::first-letter {
        font-size: 1.15em;
    }
}

@media (max-width: 900px) {
    .hero-grid-minimal {
        gap: 1.5rem;
    }

    .hero-copy-minimal {
        font-size: 1.06rem;
        line-height: 1.6;
    }
}

/* Homepage design-system pass */
.home-hero-shell {
    background:
        radial-gradient(circle at 82% 14%, rgba(124, 232, 255, 0.18), transparent 18%),
        radial-gradient(circle at 12% 10%, rgba(0, 166, 214, 0.12), transparent 22%),
        linear-gradient(180deg, #041d37 0%, #083567 32%, #0062e3 64%, #eff5fb 64.1%, #eff5fb 100%);
}

.home-section {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
}

.home-section-tight {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
}

.hero-copy-column {
    max-width: 68rem;
}

.hero-copy-minimal {
    max-width: 50rem;
    font-size: 1.18rem;
    line-height: 1.7;
}

.hero-caption {
    max-width: 54rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.home-search-card {
    position: relative;
    border-radius: 2.15rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 28px 70px rgba(5, 32, 60, 0.2);
}

.search-meta-row {
    padding: 0.2rem 0.35rem 1.15rem;
}

.search-meta-note {
    font-size: 0.95rem;
    line-height: 1.65;
}

.search-fields-grid {
    gap: 0.95rem;
}

.search-field {
    min-height: 94px;
    border-radius: 1.5rem;
    padding: 1.05rem 1.15rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.search-field input,
.search-field select {
    font-size: 0.98rem;
}

.search-submit-wrap {
    display: flex;
    align-items: stretch;
}

.search-submit-button {
    min-width: 220px;
}

.trust-strip {
    padding-top: 1.5rem;
    padding-bottom: 1.35rem;
}

.trust-strip-header {
    margin-bottom: 1.35rem;
}

.trust-strip-title {
    max-width: 34rem;
}

.trust-metric-card {
    border-radius: 1.9rem;
    min-height: 154px;
    padding: 1.65rem 1.7rem;
}

.trust-metric-value {
    font-size: 3rem;
    letter-spacing: -0.05em;
}

.route-chip-row {
    gap: 0.9rem;
}

.route-chip {
    min-height: 52px;
    padding-inline: 1.1rem;
    border-radius: 999px;
    font-weight: 800;
}

.section-heading-row {
    align-items: end;
    gap: 1.2rem;
}

.section-heading {
    max-width: 34rem;
    margin-top: 0.45rem;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.08;
}

.home-grid-3,
.home-grid-2 {
    gap: 1.5rem;
}

.home-card,
.home-panel {
    border-radius: 2rem;
    border: 1px solid rgba(5, 32, 60, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 18px 40px rgba(7, 39, 77, 0.08);
}

.home-card {
    padding: 1.7rem;
}

.feature-card h3 {
    font-size: 1.45rem;
    line-height: 1.14;
}

.feature-card p:last-child {
    font-size: 0.98rem;
}

.home-panel-dark {
    background:
        radial-gradient(circle at 100% 0%, rgba(124, 232, 255, 0.18), transparent 24%),
        linear-gradient(145deg, #05203c 0%, #083b75 58%, #0062e3 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 56px rgba(5, 32, 60, 0.2);
}

.home-outcomes-panel {
    border-radius: 2.2rem;
    padding: 2.35rem;
}

.faq-shell {
    border-radius: 2.1rem;
}

.faq-grid {
    gap: 0.5rem 1.6rem;
}

.faq-question {
    padding: 1.25rem 0;
    font-size: 1.08rem;
}

.faq-answer {
    padding-bottom: 1.25rem;
}

.site-footer {
    margin-top: 4.5rem;
}

@media (min-width: 1024px) {
    .home-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-grid-2 {
        align-items: stretch;
    }

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

@media (max-width: 1023px) {
    .home-section,
    .home-section-tight {
        padding-top: 1.35rem;
        padding-bottom: 1.35rem;
    }

    .home-search-card {
        box-shadow: 0 20px 48px rgba(5, 32, 60, 0.16);
    }

    .search-submit-button {
        min-width: 0;
        width: 100%;
    }
}

/* ==========================================================
   2026 Premium UI Layer (last-wins overrides)
   Goal: modern, spacious, consistent look across ALL pages
   without touching markup (works with Tailwind utility HTML).
   ========================================================== */

:root {
    --ls-navy: #05203c;
    --ls-blue: #003087;
    --ls-teal: #00c4b4;
    --ls-orange: #ff7a1a;
    --ls-bg: #f5f7fb;
    --ls-surface: #ffffff;
    --ls-ink: #0b1220;
    --ls-muted: #52647a;
    --ls-border: #d9e2f2;
    --ls-shadow-1: 0 10px 30px rgba(16, 24, 40, 0.08);
    --ls-shadow-2: 0 18px 55px rgba(16, 24, 40, 0.12);
    --ls-r-lg: 24px;
    --ls-r-md: 16px;
    --ls-r-sm: 12px;
}

html {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    color: var(--ls-ink);
}

.site-body {
    background:
        radial-gradient(circle at 15% 0%, rgba(0, 196, 180, 0.14), transparent 30%),
        radial-gradient(circle at 85% 0%, rgba(0, 48, 135, 0.16), transparent 34%),
        linear-gradient(180deg, #eef5ff 0%, var(--ls-bg) 420px, var(--ls-bg) 100%);
}

/* Accessible, premium focus treatment */
:where(a, button, input, select, textarea, [role="button"]):focus-visible {
    outline: 3px solid rgba(0, 196, 180, 0.32);
    outline-offset: 2px;
}

/* Links */
a {
    color: inherit;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

/* Header polish */
.site-header {
    background:
        radial-gradient(circle at 85% 14%, rgba(0, 196, 180, 0.18), transparent 22%),
        radial-gradient(circle at 10% 10%, rgba(0, 98, 227, 0.16), transparent 26%),
        linear-gradient(135deg, var(--ls-navy) 0%, #073b6f 46%, var(--ls-blue) 100%);
}

.header-nav-link {
    color: rgba(255, 255, 255, 0.86);
}

.header-nav-link:hover {
    color: #ffffff;
}

.header-link-cluster {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(5, 32, 60, 0.16);
}

.header-link-cluster .header-nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
}

.header-account-button {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 800;
    transition: transform 0.12s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.header-account-button:hover,
.header-account-button:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 38px rgba(5, 32, 60, 0.22);
    transform: translateY(-1px);
}

/* Tabs / pills */
.route-tabs-shell {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.route-tab {
    border-radius: 999px;
    padding: 0.78rem 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: background 0.16s ease, color 0.16s ease;
}

.route-tab:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.route-tab.is-active {
    background: rgba(255, 255, 255, 0.18);
    border-bottom-color: transparent;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

/* Cards */
.home-card,
.home-panel,
.vendor-profile-card,
.vendor-action-card,
.vendor-profile-header,
.vendor-result-card {
    border-radius: var(--ls-r-lg);
    border-color: rgba(5, 32, 60, 0.1);
    box-shadow: var(--ls-shadow-1);
}

.home-card,
.home-panel,
.vendor-profile-card,
.vendor-action-card,
.vendor-result-card {
    background: var(--ls-surface);
}

.vendor-card:hover,
.vendor-result-card:hover {
    box-shadow: var(--ls-shadow-2);
}

/* Forms */
input,
select,
textarea {
    border-radius: var(--ls-r-md);
    border-color: var(--ls-border);
}

input::placeholder,
textarea::placeholder {
    color: rgba(82, 100, 122, 0.75);
}

/* Primary CTA buttons (orange) */
.cta-orange,
.search-submit-button,
.support-primary-button {
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: -0.01em;
    box-shadow: 0 16px 34px rgba(255, 122, 26, 0.18);
    transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cta-orange {
    background: var(--ls-orange);
}

.cta-orange:hover,
.search-submit-button:hover,
.support-primary-button:hover {
    transform: translateY(-1px);
}

.cta-orange:hover {
    background: #e86d11;
    box-shadow: 0 20px 42px rgba(255, 122, 26, 0.22);
}

/* Secondary / teal accent */
.temp-pill,
.route-chip {
    border-radius: 999px;
}

.temp-pill {
    background: rgba(0, 196, 180, 0.12);
    border-color: rgba(0, 196, 180, 0.25);
    color: #0a5e58;
}

/* Clean up over-aggressive all-caps feel for headings/labels where possible */
.vendor-spec-grid span,
.vendor-section-heading p,
.support-modal-kicker {
    letter-spacing: 0.14em;
}

/* Chat/support floating button should read as premium, not "automation" */
.whatsapp-float {
    background: linear-gradient(135deg, #0a48a8 0%, #003087 100%);
    box-shadow: 0 18px 40px rgba(3, 24, 58, 0.24);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    background: linear-gradient(135deg, #093f93 0%, #002a77 100%);
}


